diff --git a/src/Classes/CheckBoxControl.lua b/src/Classes/CheckBoxControl.lua index 2ca02e6682..162c32fd5c 100644 --- a/src/Classes/CheckBoxControl.lua +++ b/src/Classes/CheckBoxControl.lua @@ -7,6 +7,7 @@ local CheckBoxClass = newClass("CheckBoxControl", "Control", "TooltipHost", func self.Control(anchor, x, y, size, size) self.TooltipHost(tooltipText) self.label = label + self.labelWidth = DrawStringWidth(size - 4, "VAR", label or "") + 5 self.changeFunc = changeFunc self.state = initialState end) @@ -22,9 +23,8 @@ function CheckBoxClass:IsMouseOver() -- move x left by label width, increase width by label width local label = self:GetProperty("label") if label then - local labelWidth = DrawStringWidth(height - 4, "VAR", label) + 5 - x = x - labelWidth - width = width + labelWidth + x = x - self.labelWidth + width = width + self.labelWidth end return cursorX >= x and cursorY >= y and cursorX < x + width and cursorY < y + height end diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index 084709a0f0..a67fc2d53e 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -658,16 +658,7 @@ function ItemClass:ParseRaw(raw) self.enchantments = data.enchantments[self.base.type] end self.corruptible = self.base.type ~= "Flask" - self.influenceTags = { } - for _, influenceTag in ipairs(influenceInfo) do - self.influenceTags[influenceTag.key] = { } - for tag, _ in pairs(self.base.tags) do - if tag ~= "default" then - t_insert(self.influenceTags[influenceTag.key], tag..'_'..influenceTag.key) - end - end - end - self.canBeInfluenced = self.influenceTags + self.canBeInfluenced = self.base.influenceTags ~= nil self.clusterJewel = data.clusterJewels and data.clusterJewels.jewels[self.baseName] self.requirements.str = self.base.req.str or 0 self.requirements.dex = self.base.req.dex or 0 @@ -885,14 +876,10 @@ function ItemClass:GetModSpawnWeight(mod, includeTags, excludeTags) local weight = 0 if self.base then local function HasInfluenceTag(key) - if self.influenceTags then + if self.base.influenceTags then for _, curInfluenceInfo in ipairs(influenceInfo) do - if self[curInfluenceInfo.key] then - for _, tag in ipairs(self.influenceTags[curInfluenceInfo.key]) do - if tag == key then - return true - end - end + if self[curInfluenceInfo.key] and self.base.influenceTags[curInfluenceInfo.key] == key then + return true end end end diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 3dfebbe3a2..9f9200c314 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -262,6 +262,26 @@ You can click this button to enter your POESESSID. - You can only generate weighted searches for public leagues. (Generated searches can be modified on trade site to work on other leagues and realms)]] +-- Fetches Box + self.maxFetchPerSearchDefault = 2 + self.controls.fetchCountEdit = new("EditControl", {"TOPRIGHT", nil, "TOPRIGHT"}, -12, 19, 154, row_height, "", "Fetch Pages", "%D", 3, function(buf) + self.maxFetchPages = m_min(m_max(tonumber(buf) or self.maxFetchPerSearchDefault, 1), 10) + self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPages + self.controls.fetchCountEdit.focusValue = self.maxFetchPages + end) + self.controls.fetchCountEdit.focusValue = self.maxFetchPerSearchDefault + self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPerSearchDefault + self.controls.fetchCountEdit:SetText(tostring(self.maxFetchPages or self.maxFetchPerSearchDefault)) + function self.controls.fetchCountEdit:OnFocusLost() + self:SetText(tostring(self.focusValue)) + end + self.controls.fetchCountEdit.tooltipFunc = function(tooltip) + tooltip:Clear() + tooltip:AddLine(16, "Specify maximum number of item pages to retrieve per search from PoE Trade.") + tooltip:AddLine(16, "Each page fetches up to 10 items.") + tooltip:AddLine(16, "Acceptable Range is: 1 to 10") + end + -- Stat sort popup button self.statSortSelectionList = { } t_insert(self.statSortSelectionList, { @@ -274,7 +294,7 @@ on trade site to work on other leagues and realms)]] stat = "TotalEHP", weightMult = 0.5, }) - self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", nil, "TOPRIGHT"}, -pane_margins_horizontal, pane_margins_vertical, 150, row_height, "^7Adjust search weights", function() + self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", self.controls.fetchCountEdit, "BOTTOMRIGHT"}, 0, row_vertical_padding, 150, row_height, "^7Adjust search weights", function() self:SetStatWeights() end) self.controls.StatWeightMultipliersButton.tooltipFunc = function(tooltip) @@ -287,24 +307,24 @@ on trade site to work on other leagues and realms)]] end self.sortModes = { StatValue = "(Highest) Stat Value", - StatValuePRICE = "Stat Value / Price", - PRICE = "(Lowest) Price", - WEIGHT = "(Highest) Weighted Sum", + StatValuePrice = "Stat Value / Price", + Price = "(Lowest) Price", + Weight = "(Highest) Weighted Sum", } -- Item sort dropdown self.itemSortSelectionList = { self.sortModes.StatValue, - self.sortModes.StatValuePRICE, - self.sortModes.PRICE, - self.sortModes.WEIGHT, + self.sortModes.StatValuePrice, + self.sortModes.Price, + self.sortModes.Weight, } - self.controls.itemSortSelection = new("DropDownControl", {"TOPRIGHT", self.controls.StatWeightMultipliersButton, "TOPRIGHT"}, 0, row_height + row_vertical_padding, 150, row_height, self.itemSortSelectionList, function(index, value) + self.controls.itemSortSelection = new("DropDownControl", {"TOPRIGHT", self.controls.StatWeightMultipliersButton, "TOPLEFT"}, -8, 0, 170, row_height, self.itemSortSelectionList, function(index, value) self.pbItemSortSelectionIndex = index for row_idx, _ in pairs(self.resultTbl) do self:UpdateControlsWithItems(row_idx) end end) - self.controls.itemSortSelection.tooltipText = + self.controls.itemSortSelection.tooltipText = [[Weighted Sum searches will always sort using descending weighted sum Additional post filtering options can be done these include: Highest Stat Value - Sort from highest to lowest Stat Value change of equipping item @@ -312,26 +332,16 @@ Highest Stat Value / Price - Sorts from highest to lowest Stat Value per currenc Lowest Price - Sorts from lowest to highest price of retrieved items Highest Weight - Displays the order retrieved from trade]] self.controls.itemSortSelection:SetSel(self.pbItemSortSelectionIndex) - self.controls.itemSortSelectionLabel = new("LabelControl", {"RIGHT", self.controls.itemSortSelection, "LEFT"}, -4, 0, 100, 16, "^7Sort Items By:") - - self.maxFetchPerSearchDefault = 2 - self.controls.fetchCountEdit = new("EditControl", {"RIGHT", self.controls.itemSortSelectionLabel, "LEFT"}, -8, 0, 150, row_height, "", "Fetch Pages", "%D", 3, function(buf) - self.maxFetchPages = m_min(m_max(tonumber(buf) or self.maxFetchPerSearchDefault, 1), 10) - self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPages - self.controls.fetchCountEdit.focusValue = self.maxFetchPages + self.controls.itemSortSelectionLabel = new("LabelControl", {"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, -4, 0, 60, 16 , "^7Sort By:") + + -- Use Enchant in DPS sorting + self.controls.enchantInSort = new("CheckBoxControl", {"TOPRIGHT",self.controls.fetchCountEdit,"TOPLEFT"}, -8, 0, row_height, "Include Enchants:", function(state) + self.enchantInSort = state + for index, _ in pairs(self.resultTbl) do + self:UpdateControlsWithItems({name = baseSlots[index]}, index) + end end) - self.controls.fetchCountEdit.focusValue = self.maxFetchPerSearchDefault - self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPerSearchDefault - self.controls.fetchCountEdit:SetText(tostring(self.maxFetchPages or self.maxFetchPerSearchDefault)) - function self.controls.fetchCountEdit:OnFocusLost() - self:SetText(tostring(self.focusValue)) - end - self.controls.fetchCountEdit.tooltipFunc = function(tooltip) - tooltip:Clear() - tooltip:AddLine(16, "Specify maximum number of item pages to retrieve per search from PoE Trade.") - tooltip:AddLine(16, "Each page fetches up to 10 items.") - tooltip:AddLine(16, "Acceptable Range is: 1 to 10") - end + self.controls.enchantInSort.tooltipText = "This includes enchants in sorting that occurs after trade results have been retrieved" -- Realm selection self.controls.realmLabel = new("LabelControl", {"LEFT", self.controls.setSelect, "RIGHT"}, 18, 0, 20, row_height - 4, "^7Realm:") @@ -642,6 +652,10 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, ba table.sort(result.evaluation, function(a, b) return a.weight > b.weight end) else local item = new("Item", result.item_string) + if not self.enchantInSort then -- Calc item DPS without anoint or enchant as these can generally be added after. + item.enchantModLines = { } + item:BuildAndParseRaw() + end local output = self:ReduceOutput(calcFunc({ repSlotName = slotName, repItem = item })) local weight = self.tradeQueryGenerator.WeightedRatioOutputs(baseOutput, output, self.statSortSelectionList) result.evaluation = {{ output = output, weight = weight }} @@ -722,7 +736,7 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) return out end local newTbl = {} - if mode == self.sortModes.WEIGHT then + if mode == self.sortModes.Weight then for index, _ in pairs(self.resultTbl[row_idx]) do t_insert(newTbl, { outputAttr = index, index = index }) end @@ -732,7 +746,7 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) t_insert(newTbl, { outputAttr = getResultWeight(result_index), index = result_index }) end table.sort(newTbl, function(a,b) return a.outputAttr > b.outputAttr end) - elseif mode == self.sortModes.StatValuePRICE then + elseif mode == self.sortModes.StatValuePrice then local priceTable = getPriceTable() if priceTable == nil then return nil, "MissingConversionRates" @@ -741,7 +755,7 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) t_insert(newTbl, { outputAttr = getResultWeight(result_index) / priceTable[result_index], index = result_index }) end table.sort(newTbl, function(a,b) return a.outputAttr > b.outputAttr end) - elseif mode == self.sortModes.PRICE then + elseif mode == self.sortModes.Price then local priceTable = getPriceTable() if priceTable == nil then return nil, "MissingConversionRates" diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 7c0405b6bc..0155466389 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -20,11 +20,54 @@ local itemCategoryTags = { ["Boots"] = { ["boots"] = true, ["str_armour"] = true, ["dex_armour"] = true, ["int_armour"] = true, ["str_int_armour"] = true, ["str_dex_armour"] = true, ["str_dex_int_armour"] = true }, ["Quiver"] = { ["quiver"] = true }, ["Shield"] = { ["shield"] = true, ["focus"] = true, ["energy_shield"] = true, ["dex_shield"] = true, ["str_shield"] = true, ["str_int_shield"] = true, ["dex_int_shield"] = true, ["str_dex_shield"] = true, ["focus_can_roll_minion_modifiers"] = true }, - ["1HWeapon"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["axe"] = true, ["sword"] = true, ["rapier"] = true, ["mace"] = true, ["sceptre"] = true, ["dagger"] = true, ["rune_dagger"] = true, ["wand"] = true, ["claw"] = true, ["weapon_can_roll_minion_modifiers"] = true }, - ["2HWeapon"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["staff"] = true, ["attack_staff"] = true, ["warstaff"] = true, ["bow"] = true, ["axe"] = true, ["sword"] = true, ["mace"] = true, ["2h_sword"] = true, ["2h_axe"] = true, ["2h_mace"] = true }, + ["1HWeapon"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["axe"] = true, ["sword"] = true, ["rapier"] = true, ["mace"] = true, ["sceptre"] = true, ["attack_dagger"] = true, ["dagger"] = true, ["rune_dagger"] = true, ["wand"] = true, ["claw"] = true, ["weapon_can_roll_minion_modifiers"] = true }, + ["2HWeapon"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["staff"] = true, ["attack_staff"] = true, ["warstaff"] = true, ["bow"] = true, ["axe"] = true, ["sword"] = true, ["mace"] = true, ["2h_sword"] = true, ["2h_axe"] = true, ["2h_mace"] = true }, + ["1HAxe"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["axe"] = true}, + ["1HSword"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["sword"] = true, ["rapier"] = true }, + ["1HMace"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["mace"] = true, ["sceptre"] = true }, + ["Dagger"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["attack_dagger"] = true, ["dagger"] = true, ["rune_dagger"] = true }, + ["Wand"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["wand"] = true, ["weapon_can_roll_minion_modifiers"] = true }, + ["Claw"] = { ["weapon"] = true, ["one_hand_weapon"] = true, ["onehand"] = true, ["claw"] = true }, + ["Staff"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["staff"] = true, ["attack_staff"] = true, ["warstaff"] = true }, + ["Bow"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["bow"] = true }, + ["2HAxe"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["axe"] = true, ["2h_axe"] = true }, + ["2HSword"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["sword"] = true, ["2h_sword"] = true }, + ["2HMace"] = { ["weapon"] = true, ["two_hand_weapon"] = true, ["twohand"] = true, ["mace"] = true, ["2h_mace"] = true }, + ["FishingRod"] = { ["fishing_rod"] = true }, ["AbyssJewel"] = { ["default"] = true, ["abyss_jewel"] = true, ["abyss_jewel_melee"] = true, ["abyss_jewel_ranged"] = true, ["abyss_jewel_summoner"] = true, ["abyss_jewel_caster"] = true }, - ["BaseJewel"] = { ["default"] = true, ["not_int"] = true, ["not_str"] = true, ["not_dex"] = true }, - ["AnyJewel"] = { ["default"] = true, ["not_int"] = true, ["not_str"] = true, ["not_dex"] = true, ["abyss_jewel"] = true, ["abyss_jewel_melee"] = true, ["abyss_jewel_ranged"] = true, ["abyss_jewel_summoner"] = true, ["abyss_jewel_caster"] = true } + ["BaseJewel"] = { ["default"] = true, ["jewel"] = true, ["not_int"] = true, ["not_str"] = true, ["not_dex"] = true }, + ["AnyJewel"] = { ["default"] = true, ["jewel"] = true, ["not_int"] = true, ["not_str"] = true, ["not_dex"] = true, ["abyss_jewel"] = true, ["abyss_jewel_melee"] = true, ["abyss_jewel_ranged"] = true, ["abyss_jewel_summoner"] = true, ["abyss_jewel_caster"] = true }, + ["Flask"] = { ["flask"] = true, ["hybrid_flask"] = true, ["utility_flask"] = true, ["mana_flask"] = true, ["life_flask"] = true, ["expedition_flask"] = true, ["critical_utility_flask"] = true } +} + +local craftedCategoryTags = { + ["Ring"] = { "Ring" }, + ["Amulet"] = { "Amulet" }, + ["Belt"] = { "Belt" }, + ["Chest"] = { "Body Armour" }, + ["Helmet"] = { "Helmet" }, + ["Gloves"] = { "Gloves" }, + ["Boots"] = { "Boots" }, + ["Quiver"] = { "Quiver" }, + ["Shield"] = { "Shield" }, + ["1HWeapon"] = { "One Handed Sword", "Thrusting One Handed Sword", "One Handed Axe", "One Handed Mace", "Dagger", "Wand", "Claw", "Sceptre" }, + ["2HWeapon"] = { "Fishing Rod", "Two Handed Sword", "Staff", "Two Handed Mace", "Two Handed Axe" }, + ["1HAxe"] = { "One Handed Axe" }, + ["1HSword"] = { "One Handed Sword", "Thrusting One Handed Sword" }, + ["1HMace"] = { "One Handed Mace", "Sceptre" }, + ["Dagger"] = { "Dagger" }, + ["Wand"] = { "Wand" }, + ["Claw"] = { "Claw" }, + ["Staff"] = { "Staff" }, + ["Bow"] = { "Bow" }, + ["2HAxe"] = { "Two Handed Axe" }, + ["2HSword"] = { "Two Handed Sword" }, + ["2HMace"] = { "Two Handed Mace" }, + ["FishingRod"] = { "Fishing Rod" }, + ["AbyssJewel"] = { "Jewel" }, + ["BaseJewel"] = { "Jewel" }, + ["AnyJewel"] = { "Jewel" }, + ["Flask"] = { "Flask" } } local tradeStatCategoryIndices = { @@ -46,19 +89,6 @@ for i, curInfluenceInfo in ipairs(itemLib.influenceInfo) do hasInfluenceModIds[i] = "pseudo.pseudo_has_" .. string.lower(curInfluenceInfo.display) .. "_influence" end --- This is not a complete list as most mods get caught with the find "Local" check, or don't overlap with non-local mods so we don't care. Some groups --- are also shared between local and non-local mods, so a group only approach is not viable. -local localOnlyModGroups = { - ["BaseLocalDefences"] = true, - ["BaseLocalDefencesAndLife"] = true, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = true, - ["LocalPhysicalDamagePercent"] = true, - ["DefencesPercent"] = true, - ["DefencesPercentAndStunRecovery"] = true, - ["LocalAttributeRequirements"] = true, - ["DefencesPercentSuffix"] = true -} - -- slots that allow eldritch mods (non-unique only) local eldritchModSlots = { ["Body Armour"] = true, @@ -106,7 +136,7 @@ local function stripInfluenceSuffix(key) return key end -local function canModSpawnForItemCategory(mod, tags) +local function canModSpawnForItemCategory(mod, category) -- Synthesis modifiers have an empty weightKey (i.e., = {}). This was stripped from -- client side back in league 3.10. Web-based Synthesis approximate use "stale" info. -- To consider Synthesis mods we have to assume each mod can exist on any item base @@ -114,14 +144,23 @@ local function canModSpawnForItemCategory(mod, tags) --if mod.type == "Synthesis" then -- return true --end - for i, key in ipairs(mod.weightKey) do - local influenceStrippedKey = stripInfluenceSuffix(key) - if key ~= "default" and mod.affix:find("Elevated") ~= nil and tags[influenceStrippedKey] == true then - return true - elseif key ~= "default" and mod.type == "Corrupted" and tags[influenceStrippedKey] == true then - return true - elseif mod.weightVal[i] > 0 and tags[influenceStrippedKey] == true then - return true + if mod.types then -- crafted mods + for _, key in ipairs(craftedCategoryTags[category]) do + if mod.types[key] then + return true + end + end + else + local tags = itemCategoryTags[category] + for i, key in ipairs(mod.weightKey) do + local influenceStrippedKey = stripInfluenceSuffix(key) + if key ~= "default" and mod.affix:find("Elevated") ~= nil and tags[influenceStrippedKey] == true then + return true + elseif key ~= "default" and mod.type == "Corrupted" and tags[influenceStrippedKey] == true then + return true + elseif mod.weightVal[i] > 0 and tags[influenceStrippedKey] == true then + return true + end end end return false @@ -148,47 +187,58 @@ function TradeQueryGeneratorClass.WeightedRatioOutputs(baseOutput, newOutput, st return meanStatDiff end +function TradeQueryGeneratorClass:ProcessMod(modId, mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) + if type(modId) == "string" and modId:find("HellscapeDownside") ~= nil then -- skip scourge downsides, they often don't follow standard parsing rules, and should basically never be beneficial anyways + goto continue + end -function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed) - for modId, mod in pairs(mods) do - if localOnlyModGroups[mod.group] == true or (modId:find("Local") ~= nil and modId:find("Socketed") == nil) then -- skip all local mods other than socket level mods - --logToFile("Skipping local mod: %s", modId) - goto continue - elseif modId:find("HellscapeDownside") ~= nil then -- skip scourge downsides, they often don't follow standard parsing rules, and should basically never be beneficial anyways - goto continue + for index, modLine in ipairs(mod) do + if modLine:find("Grants Level") or modLine:find("inflict Decay") then -- skip mods that grant skills / decay, as they will often be overwhelmingly powerful but don't actually fit into the build + goto nextModLine end - for index, modLine in ipairs(mod) do - if modLine:find("Grants Level") then -- skip mods that grant skills, as they will often be overwhelmingly powerful but don't actually fit into the build - goto nextModLine - end + local statOrder = modLine:find("Nearby Enemies have %-") ~= nil and mod.statOrder[index + 1] or mod.statOrder[index] -- hack to get minus res mods associated with the correct statOrder + local modType = (mod.type == "Prefix" or mod.type == "Suffix") and (type(modId) == "string" and modId:find("AfflictionNotable") and "PassiveNode" or "Explicit") or mod.type + if modType == "ScourgeUpside" then modType = "Scourge" end + + -- Special cases + local specialCaseData = { } + if mod.group and mod.group:find("Shield") and modLine:find("Chance to Block") then + specialCaseData.overrideModLine = "+#% Chance to Block" + modLine = modLine .. " (Shields)" + elseif modLine == "You can apply an additional Curse" then + specialCaseData.overrideModLineSingular = "You can apply an additional Curse" + modLine = "You can apply 1 additional Curses" + elseif modLine == "Bow Attacks fire an additional Arrow" then + specialCaseData.overrideModLineSingular = "Bow Attacks fire an additional Arrow" + modLine = "Bow Attacks fire 1 additional Arrows" + elseif modLine == "Projectiles Pierce an additional Target" then + specialCaseData.overrideModLineSingular = "Projectiles Pierce an additional Target" + modLine = "Projectiles Pierce 1 additional Target" + end - local statOrder = modLine:find("Nearby Enemies have %-") ~= nil and mod.statOrder[index + 1] or mod.statOrder[index] -- hack to get minus res mods associated with the correct statOrder - local modType = (mod.type == "Prefix" or mod.type == "Suffix") and (modId:find("AfflictionNotable") and "PassiveNode" or "Explicit") or mod.type - if modType == "ScourgeUpside" then modType = "Scourge" end - - -- Special cases - local specialCaseData = { } - if mod.group and mod.group:find("Shield") and modLine:find("Chance to Block") then - specialCaseData.overrideModLine = "+#% Chance to Block" - modLine = modLine .. " (Shields)" - elseif modLine == "You can apply an additional Curse" then - specialCaseData.overrideModLineSingular = "You can apply an additional Curse" - modLine = "You can apply 1 additional Curses" - elseif modLine == "Bow Attacks fire an additional Arrow" then - specialCaseData.overrideModLineSingular = "Bow Attacks fire an additional Arrow" - modLine = "Bow Attacks fire 1 additional Arrows" - end + -- If this is the first tier for this mod, find matching trade mod and init the entry + if not self.modData[modType] then + logToFile("Unhandled Mod Type: %s", modType) + goto continue + end - -- If this is the first tier for this mod, find matching trade mod and init the entry - if not self.modData[modType] then - logToFile("Unhandled Mod Type: %s", modType) - goto continue - end + local uniqueIndex = tostring(statOrder).."_"..mod.group + if self.modData[modType][uniqueIndex] == nil then + local tradeMod = nil - local uniqueIndex = tostring(statOrder).."_"..mod.group - if self.modData[modType][uniqueIndex] == nil then - local tradeMod = nil + -- Try to match to a local mod fallback to global if no match + if mod.group:match("Local") then + local matchLocalStr = (modLine .. " (Local)"):gsub("[#()0-9%-%+%.]","") + for _, entry in pairs(tradeQueryStatsParsed.localResults[tradeStatCategoryIndices[modType]].entries) do + if entry.text:gsub("[#()0-9%-%+%.]","") == matchLocalStr then + tradeMod = entry + specialCaseData.overrideModLine = entry.text:sub(1,-9) + break + end + end + end + if tradeMod == nil then local matchStr = modLine:gsub("[#()0-9%-%+%.]","") for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do if entry.text:gsub("[#()0-9%-%+%.]","") == matchStr then @@ -196,66 +246,71 @@ function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed) break end end - - if tradeMod == nil then - logToFile("Unable to match %s mod: %s", modType, modLine) - goto nextModLine - end - - self.modData[modType][uniqueIndex] = { tradeMod = tradeMod, specialCaseData = specialCaseData } + end + if tradeMod == nil then + logToFile("Unable to match %s mod: %s", modType, modLine) + goto nextModLine end - -- tokenize the numerical variables for this mod and store the sign if there is one - local tokens = { } - local poundPos, tokenizeOffset = 0, 0 - while true do - poundPos = self.modData[modType][uniqueIndex].tradeMod.text:find("#", poundPos + 1) - if poundPos == nil then - break - end - startPos, endPos, sign, min, max = modLine:find("([%+%-]?)%(?(%d+%.?%d*)%-?(%d*%.?%d*)%)?", poundPos + tokenizeOffset) - - if endPos == nil then - logToFile("[GMD] Error extracting tokens from '%s' for tradeMod '%s'", modLine, self.modData[modType][uniqueIndex].tradeMod.text) - goto nextModLine - end + self.modData[modType][uniqueIndex] = { tradeMod = tradeMod, specialCaseData = specialCaseData } + end - tokenizeOffset = tokenizeOffset + (endPos - startPos) - table.insert(tokens, min) - table.insert(tokens, #max > 0 and tonumber(max) or tonumber(min)) - if sign ~= nil then - self.modData[modType][uniqueIndex].sign = sign - end + -- tokenize the numerical variables for this mod and store the sign if there is one + local tokens = { } + local poundPos, tokenizeOffset = 0, 0 + while true do + poundPos = self.modData[modType][uniqueIndex].tradeMod.text:find("#", poundPos + 1) + if poundPos == nil then + break end + startPos, endPos, sign, min, max = modLine:find("([%+%-]?)%(?(%d+%.?%d*)%-?(%d*%.?%d*)%)?", poundPos + tokenizeOffset) - if #tokens ~= 0 and #tokens ~= 2 and #tokens ~= 4 then - logToFile("Unexpected # of tokens found for mod: %s", mod[i]) + if endPos == nil then + logToFile("[GMD] Error extracting tokens from '%s' for tradeMod '%s'", modLine, self.modData[modType][uniqueIndex].tradeMod.text) goto nextModLine end - -- Update the min and max values available for each item category - for category, tags in pairs(itemCategoryTags) do - if canModSpawnForItemCategory(mod, tags) then - if self.modData[modType][uniqueIndex][category] == nil then - self.modData[modType][uniqueIndex][category] = { min = 999999, max = -999999 } - end + tokenizeOffset = tokenizeOffset + (endPos - startPos) + table.insert(tokens, min) + table.insert(tokens, #max > 0 and tonumber(max) or tonumber(min)) + if sign ~= nil then + self.modData[modType][uniqueIndex].sign = sign + end + end - local modRange = self.modData[modType][uniqueIndex][category] - if #tokens == 0 then - modRange.min = 1 - modRange.max = 1 - elseif #tokens == 2 then - modRange.min = math.min(modRange.min, tokens[1]) - modRange.max = math.max(modRange.max, tokens[2]) - elseif #tokens == 4 then - modRange.min = math.min(modRange.min, (tokens[1] + tokens[3]) / 2) - modRange.max = math.max(modRange.max, (tokens[2] + tokens[4]) / 2) - end + if #tokens ~= 0 and #tokens ~= 2 and #tokens ~= 4 then + logToFile("Unexpected # of tokens found for mod: %s", mod[i]) + goto nextModLine + end + + -- Update the min and max values available for each item category + for category, _ in pairs(itemCategoriesOverride or itemCategoriesMask or itemCategoryTags) do + if itemCategoriesOverride or canModSpawnForItemCategory(mod, category) then + if self.modData[modType][uniqueIndex][category] == nil then + self.modData[modType][uniqueIndex][category] = { min = 999999, max = -999999 } + end + + local modRange = self.modData[modType][uniqueIndex][category] + if #tokens == 0 then + modRange.min = 1 + modRange.max = 1 + elseif #tokens == 2 then + modRange.min = math.min(modRange.min, tokens[1]) + modRange.max = math.max(modRange.max, tokens[2]) + elseif #tokens == 4 then + modRange.min = math.min(modRange.min, (tokens[1] + tokens[3]) / 2) + modRange.max = math.max(modRange.max, (tokens[2] + tokens[4]) / 2) end end - ::nextModLine:: end - ::continue:: + ::nextModLine:: + end + ::continue:: +end + +function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) + for modId, mod in pairs(mods) do + self:ProcessMod(modId, mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) end end @@ -285,11 +340,49 @@ function TradeQueryGeneratorClass:InitMods() tradeStats:gsub("\n", " ") local tradeQueryStatsParsed = dkjson.decode(tradeStats) + -- Create second table only containing local mods this should speedup generation slightly + tradeQueryStatsParsed.localResults = { } + for modTypeId, modType in ipairs(tradeQueryStatsParsed.result) do + tradeQueryStatsParsed.localResults[modTypeId] = { label = modType.label, entries = { } } + for modId, mod in ipairs(modType.entries) do + if mod.text:match("(Local)") then + tradeQueryStatsParsed.localResults[modTypeId].entries[modId] = mod + end + end + end + -- explicit, corrupted, scourge, and jewel mods - self:GenerateModData(data.itemMods.Item, tradeQueryStatsParsed) - self:GenerateModData(data.veiledMods, tradeQueryStatsParsed) - self:GenerateModData(data.itemMods.Jewel, tradeQueryStatsParsed) - self:GenerateModData(data.itemMods.JewelAbyss, tradeQueryStatsParsed) + local regularItemMask = { } + for category, _ in pairs(itemCategoryTags) do + if category ~= "Flask" and category ~= "AbyssJewel" and category ~= "BaseJewel" and category ~= "AnyJewel" then + regularItemMask[category] = true + end + end + self:GenerateModData(data.itemMods.Item, tradeQueryStatsParsed, regularItemMask) + self:GenerateModData(data.veiledMods, tradeQueryStatsParsed, regularItemMask) + self:GenerateModData(data.itemMods.Jewel, tradeQueryStatsParsed, { ["BaseJewel"] = true, ["AnyJewel"] = true }) + self:GenerateModData(data.itemMods.JewelAbyss, tradeQueryStatsParsed, { ["AbyssJewel"] = true, ["AnyJewel"] = true }) + self:GenerateModData(data.itemMods.Flask, tradeQueryStatsParsed, { ["Flask"] = true }) + + -- Special handling for essences + for _, essenceItem in pairs(data.essences) do + for tag, modId in pairs(essenceItem.mods) do + local itemCategoriesOverride = {} -- build a list of relevant categories. + for category, tags in pairs(craftedCategoryTags) do + for _, matchTag in pairs(tags) do + if tag == matchTag then + itemCategoriesOverride[category] = tags + end + end + end + self:ProcessMod(modId, data.itemMods.Item[modId], tradeQueryStatsParsed, regularItemMask, itemCategoriesOverride) + end + end + + regularItemMask.Flask = true -- Update mask as flasks can have crafted mods. + self:GenerateModData(data.masterMods, tradeQueryStatsParsed, regularItemMask) + + -- megalomaniac local clusterNotableMods = {} for k, v in pairs(data.itemMods.JewelCluster) do if k:find("AfflictionNotable") then @@ -522,11 +615,44 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) itemCategory = "Quiver" elseif existingItem.type == "Bow" then itemCategoryQueryStr = "weapon.bow" - itemCategory = "2HWeapon" - elseif existingItem.type == "Staff" or existingItem.type:find("Two Handed") ~= nil then + itemCategory = "Bow" + elseif existingItem.type == "Staff" then + itemCategoryQueryStr = "weapon.staff" + itemCategory = "Staff" + elseif existingItem.type == "Two Handed Sword" then + itemCategoryQueryStr = "weapon.twosword" + itemCategory = "2HSword" + elseif existingItem.type == "Two Handed Axe" then + itemCategoryQueryStr = "weapon.twoaxe" + itemCategory = "2HAxe" + elseif existingItem.type == "Two Handed Mace" then + itemCategoryQueryStr = "weapon.twomace" + itemCategory = "2HMace" + elseif existingItem.type == "Fishing Rod" then + itemCategoryQueryStr = "weapon.rod" + itemCategory = "FishingRod" + elseif existingItem.type == "One Handed Sword" then + itemCategoryQueryStr = "weapon.onesword" + itemCategory = "1HSword" + elseif existingItem.type == "One Handed Axe" then + itemCategoryQueryStr = "weapon.oneaxe" + itemCategory = "1HAxe" + elseif existingItem.type == "One Handed Mace" or existingItem.type == "Sceptre" then + itemCategoryQueryStr = "weapon.onemace" + itemCategory = "1HMace" + elseif existingItem.type == "Wand" then + itemCategoryQueryStr = "weapon.wand" + itemCategory = "Wand" + elseif existingItem.type == "Dagger" then + itemCategoryQueryStr = "weapon.dagger" + itemCategory = "Dagger" + elseif existingItem.type == "Claw" then + itemCategoryQueryStr = "weapon.claw" + itemCategory = "Claw" + elseif existingItem.type:find("Two Handed") ~= nil then itemCategoryQueryStr = "weapon.twomelee" itemCategory = "2HWeapon" - elseif existingItem.type == "Wand" or existingItem.type == "Dagger" or existingItem.type == "Sceptre" or existingItem.type == "Claw" or existingItem.type:find("One Handed") ~= nil then + elseif existingItem.type:find("One Handed") ~= nil then itemCategoryQueryStr = "weapon.one" itemCategory = "1HWeapon" else @@ -570,6 +696,9 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) elseif itemCategory == "BaseJewel" then itemCategoryQueryStr = "jewel.base" end + elseif slot.slotName:find("Flask") ~= nil then + itemCategoryQueryStr = "flask" + itemCategory = "Flask" else logToFile("'%s' is not supported for weighted trade query generation", existingItem and existingItem.type or "n/a") return @@ -672,7 +801,7 @@ function TradeQueryGeneratorClass:FinishQuery() local megalomaniacSpecialMinWeight = self.calcContext.special.itemName == "Megalomaniac" and self.modWeights[#self.modWeights] * 3 -- This Stat diff value will generally be higher than the weighted sum of the same item, because the stats are all applied at once and can thus multiply off each other. -- So apply a modifier to get a reasonable min and hopefully approximate that the query will start out with small upgrades. - local minWeight = megalomaniacSpecialMinWeight or currentStatDiff * 0.7 + local minWeight = megalomaniacSpecialMinWeight or currentStatDiff * 0.5 -- Generate trade query str and open in browser local filters = 0 diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index 9bb2c12e5e..e1e488a03e 100644 --- a/src/Data/Bases/amulet.lua +++ b/src/Data/Bases/amulet.lua @@ -6,6 +6,7 @@ local itemBases = ... itemBases["Paua Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Mana Regeneration Rate", implicitModTypes = { { "resource", "mana" }, }, req = { }, @@ -13,6 +14,7 @@ itemBases["Paua Amulet"] = { itemBases["Coral Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Regenerate (2-4) Life per second", implicitModTypes = { { "flat_life_regen", "resource", "life" }, }, req = { }, @@ -20,6 +22,7 @@ itemBases["Coral Amulet"] = { itemBases["Amber Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(20-30) to Strength", implicitModTypes = { { "attribute" }, }, req = { level = 5, }, @@ -27,6 +30,7 @@ itemBases["Amber Amulet"] = { itemBases["Jade Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(20-30) to Dexterity", implicitModTypes = { { "attribute" }, }, req = { level = 5, }, @@ -34,6 +38,7 @@ itemBases["Jade Amulet"] = { itemBases["Lapis Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(20-30) to Intelligence", implicitModTypes = { { "attribute" }, }, req = { level = 5, }, @@ -41,6 +46,7 @@ itemBases["Lapis Amulet"] = { itemBases["Gold Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(12-20)% increased Rarity of Items found", implicitModTypes = { { }, }, req = { level = 8, }, @@ -48,6 +54,7 @@ itemBases["Gold Amulet"] = { itemBases["Onyx Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(10-16) to all Attributes", implicitModTypes = { { "attribute" }, }, req = { level = 20, }, @@ -55,6 +62,7 @@ itemBases["Onyx Amulet"] = { itemBases["Turquoise Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(16-24) to Dexterity and Intelligence", implicitModTypes = { { "attribute" }, }, req = { level = 16, }, @@ -62,6 +70,7 @@ itemBases["Turquoise Amulet"] = { itemBases["Agate Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(16-24) to Strength and Intelligence", implicitModTypes = { { "attribute" }, }, req = { level = 16, }, @@ -69,6 +78,7 @@ itemBases["Agate Amulet"] = { itemBases["Citrine Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(16-24) to Strength and Dexterity", implicitModTypes = { { "attribute" }, }, req = { level = 16, }, @@ -76,6 +86,7 @@ itemBases["Citrine Amulet"] = { itemBases["Ruby Amulet"] = { type = "Amulet", tags = { not_for_sale = true, default = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(20-30)% to Fire Resistance", implicitModTypes = { { "elemental", "fire", "resistance" }, }, req = { }, @@ -83,6 +94,7 @@ itemBases["Ruby Amulet"] = { itemBases["Unset Amulet"] = { type = "Amulet", tags = { not_for_sale = true, default = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Has 1 Socket", implicitModTypes = { { }, }, req = { level = 5, }, @@ -90,6 +102,7 @@ itemBases["Unset Amulet"] = { itemBases["Blue Pearl Amulet"] = { type = "Amulet", tags = { amuletatlas1 = true, not_for_sale = true, atlas_base_type = true, amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(48-56)% increased Mana Regeneration Rate", implicitModTypes = { { "resource", "mana" }, }, req = { level = 77, }, @@ -97,6 +110,7 @@ itemBases["Blue Pearl Amulet"] = { itemBases["Marble Amulet"] = { type = "Amulet", tags = { amuletatlas2 = true, not_for_sale = true, atlas_base_type = true, amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Regenerate (1.2-1.6)% of Life per second", implicitModTypes = { { "resource", "life" }, }, req = { level = 74, }, @@ -104,6 +118,7 @@ itemBases["Marble Amulet"] = { itemBases["Seaglass Amulet"] = { type = "Amulet", tags = { not_for_sale = true, atlas_base_type = true, amuletatlas3 = true, amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(10-15)% faster start of Energy Shield Recharge", implicitModTypes = { { "energy_shield", "defences" }, }, req = { level = 74, }, @@ -111,6 +126,7 @@ itemBases["Seaglass Amulet"] = { itemBases["Astrolabe Amulet"] = { type = "Amulet", tags = { not_for_sale = true, experimental_base = true, default = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Implicit Modifiers Cannot Be Changed\nHas Elder, Shaper and all Conqueror Influences", implicitModTypes = { { }, { }, }, req = { level = 69, }, @@ -118,6 +134,7 @@ itemBases["Astrolabe Amulet"] = { itemBases["Simplex Amulet"] = { type = "Amulet", tags = { not_for_sale = true, experimental_base = true, default = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "-1 Prefix Modifier allowed\n-1 Suffix Modifier allowed\nImplicit Modifiers Cannot Be Changed\n25% increased Explicit Modifier magnitudes", implicitModTypes = { { }, { }, { }, { }, }, req = { level = 24, }, @@ -126,6 +143,7 @@ itemBases["Jet Amulet"] = { type = "Amulet", hidden = true, tags = { demigods = true, not_for_sale = true, default = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(8-12)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, req = { level = 12, }, @@ -135,6 +153,7 @@ itemBases["Black Maw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Has 1 Socket", implicitModTypes = { { }, }, req = { }, @@ -143,6 +162,7 @@ itemBases["Bonespire Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased maximum Mana", implicitModTypes = { { "resource", "mana" }, }, req = { }, @@ -151,6 +171,7 @@ itemBases["Ashscale Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Fire Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire" }, }, req = { }, @@ -159,6 +180,7 @@ itemBases["Lone Antler Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Lightning Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "lightning" }, }, req = { }, @@ -167,6 +189,7 @@ itemBases["Deep One Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Cold Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, }, req = { }, @@ -175,6 +198,7 @@ itemBases["Breakrib Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Global Physical Damage", implicitModTypes = { { "physical_damage", "damage", "physical" }, }, req = { }, @@ -183,6 +207,7 @@ itemBases["Deadhand Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(19-31)% increased Chaos Damage", implicitModTypes = { { "chaos_damage", "damage", "chaos" }, }, req = { }, @@ -191,6 +216,7 @@ itemBases["Undying Flesh Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+1 to maximum number of Raised Zombies", implicitModTypes = { { "minion" }, }, req = { }, @@ -199,6 +225,7 @@ itemBases["Rot Head Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(30-40)% increased Fish Bite Sensitivity", implicitModTypes = { { "green_herring" }, }, req = { }, @@ -207,6 +234,7 @@ itemBases["Mandible Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(6-10)% increased Attack and Cast Speed", implicitModTypes = { { "attack", "caster", "speed" }, }, req = { }, @@ -215,6 +243,7 @@ itemBases["Chrysalis Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, req = { }, @@ -223,6 +252,7 @@ itemBases["Writhing Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(20-30)% increased Attack Damage", implicitModTypes = { { "damage", "attack" }, }, req = { }, @@ -231,6 +261,7 @@ itemBases["Hexclaw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(40-50)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, req = { }, @@ -239,6 +270,7 @@ itemBases["Primal Skull Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Regenerate 2% of Life per second", implicitModTypes = { { "resource", "life" }, }, req = { }, @@ -247,6 +279,7 @@ itemBases["Wereclaw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(24-36)% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, req = { }, @@ -255,6 +288,7 @@ itemBases["Splitnewt Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(4-6)% chance to Freeze, Shock and Ignite", implicitModTypes = { { "elemental", "fire", "cold", "lightning", "ailment" }, }, req = { }, @@ -263,6 +297,7 @@ itemBases["Clutching Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(15-25)% increased Global Defences", implicitModTypes = { { "defences" }, }, req = { }, @@ -271,6 +306,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Fire Damage from Hits taken as Cold Damage", implicitModTypes = { { "elemental", "fire", "cold" }, }, req = { }, @@ -279,6 +315,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Fire Damage from Hits taken as Lightning Damage", implicitModTypes = { { "elemental", "fire", "lightning" }, }, req = { }, @@ -287,6 +324,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Cold Damage from Hits taken as Fire Damage", implicitModTypes = { { "elemental", "fire", "cold" }, }, req = { }, @@ -295,6 +333,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Cold Damage from Hits taken as Lightning Damage", implicitModTypes = { { "elemental", "cold", "lightning" }, }, req = { }, @@ -303,6 +342,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Lightning Damage from Hits taken as Cold Damage", implicitModTypes = { { "elemental", "cold", "lightning" }, }, req = { }, @@ -311,6 +351,7 @@ itemBases["Avian Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Lightning Damage from Hits taken as Fire Damage", implicitModTypes = { { "elemental", "fire", "lightning" }, }, req = { }, @@ -319,6 +360,7 @@ itemBases["Fangjaw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(8-12)% increased maximum Life", implicitModTypes = { { "resource", "life" }, }, req = { }, @@ -327,6 +369,7 @@ itemBases["Horned Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Projectiles Pierce 2 additional Targets", implicitModTypes = { { }, }, req = { }, @@ -335,6 +378,7 @@ itemBases["Spinefuse Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(6-10)% increased Quantity of Items found", implicitModTypes = { { }, }, req = { }, @@ -343,6 +387,7 @@ itemBases["Three Rat Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(12-16)% increased Attributes", implicitModTypes = { { "attribute" }, }, req = { }, @@ -351,6 +396,7 @@ itemBases["Monkey Twins Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(5-8)% increased Area of Effect", implicitModTypes = { { }, }, req = { }, @@ -359,6 +405,7 @@ itemBases["Longtooth Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(4-6)% additional Physical Damage Reduction", implicitModTypes = { { "physical" }, }, req = { }, @@ -367,6 +414,7 @@ itemBases["Rotfeather Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "(25-35)% increased Damage", implicitModTypes = { { "damage" }, }, req = { }, @@ -375,6 +423,7 @@ itemBases["Monkey Paw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "10% chance to gain a Power Charge on Kill", implicitModTypes = { { "power_charge" }, }, req = { }, @@ -383,6 +432,7 @@ itemBases["Monkey Paw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "10% chance to gain a Frenzy Charge on Kill", implicitModTypes = { { "frenzy_charge" }, }, req = { }, @@ -391,6 +441,7 @@ itemBases["Monkey Paw Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "10% chance to gain an Endurance Charge on Kill", implicitModTypes = { { "endurance_charge" }, }, req = { }, @@ -399,6 +450,7 @@ itemBases["Three Hands Talisman"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", implicitModTypes = { { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, req = { }, @@ -407,6 +459,7 @@ itemBases["Greatwolf Talisman"] = { type = "Amulet", subType = "Talisman", tags = { amulet = true, default = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, req = { }, } @@ -414,6 +467,7 @@ itemBases["Avian Twins Talisman (Fire-To-Cold)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Fire Damage from Hits taken as Cold Damage", implicitModTypes = { { "elemental", "fire", "cold" }, }, req = { }, @@ -422,6 +476,7 @@ itemBases["Avian Twins Talisman (Fire-To-Lightning)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Fire Damage from Hits taken as Lightning Damage", implicitModTypes = { { "elemental", "fire", "lightning" }, }, req = { }, @@ -430,6 +485,7 @@ itemBases["Avian Twins Talisman (Cold-To-Lightning)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Cold Damage from Hits taken as Fire Damage", implicitModTypes = { { "elemental", "fire", "cold" }, }, req = { }, @@ -438,6 +494,7 @@ itemBases["Avian Twins Talisman (Cold-To-Fire)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Cold Damage from Hits taken as Lightning Damage", implicitModTypes = { { "elemental", "cold", "lightning" }, }, req = { }, @@ -446,6 +503,7 @@ itemBases["Avian Twins Talisman (Lightning-To-Cold)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "50% of Lightning Damage from Hits taken as Cold Damage", implicitModTypes = { { "elemental", "cold", "lightning" }, }, req = { }, @@ -454,6 +512,7 @@ itemBases["Monkey Paw Talisman (Power)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "10% chance to gain a Power Charge on Kill", implicitModTypes = { { "power_charge" }, }, req = { }, @@ -462,6 +521,7 @@ itemBases["Monkey Paw Talisman (Frenzy)"] = { type = "Amulet", subType = "Talisman", tags = { default = true, talisman = true, amulet = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "10% chance to gain a Frenzy Charge on Kill", implicitModTypes = { { "frenzy_charge" }, }, req = { }, diff --git a/src/Data/Bases/axe.lua b/src/Data/Bases/axe.lua index 908c43aa0e..477fc34060 100644 --- a/src/Data/Bases/axe.lua +++ b/src/Data/Bases/axe.lua @@ -6,6 +6,7 @@ itemBases["Rusted Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 6, PhysicalMax = 11, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, req = { str = 12, dex = 6, }, @@ -14,6 +15,7 @@ itemBases["Jade Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 10, PhysicalMax = 15, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, req = { level = 6, str = 21, dex = 10, }, @@ -22,6 +24,7 @@ itemBases["Boarding Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 11, PhysicalMax = 21, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, req = { level = 11, str = 28, dex = 19, }, @@ -30,6 +33,7 @@ itemBases["Cleaver"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 12, PhysicalMax = 35, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 16, str = 48, dex = 14, }, @@ -38,6 +42,7 @@ itemBases["Broad Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 19, PhysicalMax = 34, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, req = { level = 21, str = 54, dex = 25, }, @@ -46,6 +51,7 @@ itemBases["Arming Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 14, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, req = { level = 25, str = 58, dex = 33, }, @@ -54,6 +60,7 @@ itemBases["Decorative Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, req = { level = 29, str = 80, dex = 23, }, @@ -62,6 +69,7 @@ itemBases["Spectral Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 29, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 33, str = 85, dex = 37, }, @@ -70,6 +78,7 @@ itemBases["Etched Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, maraketh = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "8% increased Global Physical Damage", implicitModTypes = { { "physical_damage", "damage", "physical" }, }, weapon = { PhysicalMin = 26, PhysicalMax = 46, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -79,6 +88,7 @@ itemBases["Jasper Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 32, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 36, str = 86, dex = 40, }, @@ -87,6 +97,7 @@ itemBases["Tomahawk"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 25, PhysicalMax = 46, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, req = { level = 39, str = 81, dex = 56, }, @@ -95,6 +106,7 @@ itemBases["Wrist Chopper"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 26, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, req = { level = 42, str = 112, dex = 32, }, @@ -103,6 +115,7 @@ itemBases["War Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 35, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 45, str = 106, dex = 49, }, @@ -111,6 +124,7 @@ itemBases["Chest Splitter"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 24, PhysicalMax = 71, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, req = { level = 48, str = 105, dex = 60, }, @@ -119,6 +133,7 @@ itemBases["Ceremonial Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 45, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, req = { level = 51, str = 134, dex = 39, }, @@ -127,6 +142,7 @@ itemBases["Wraith Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 45, PhysicalMax = 75, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 54, str = 134, dex = 59, }, @@ -135,6 +151,7 @@ itemBases["Engraved Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, maraketh = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "8% increased Global Physical Damage", implicitModTypes = { { "physical_damage", "damage", "physical" }, }, weapon = { PhysicalMin = 40, PhysicalMax = 71, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -144,6 +161,7 @@ itemBases["Karui Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 49, PhysicalMax = 77, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 57, str = 132, dex = 62, }, @@ -152,6 +170,7 @@ itemBases["Siege Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 38, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, req = { level = 59, str = 119, dex = 82, }, @@ -160,6 +179,7 @@ itemBases["Reaver Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 38, PhysicalMax = 114, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, req = { level = 61, str = 167, dex = 57, }, @@ -168,6 +188,7 @@ itemBases["Butcher Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, top_tier_base_item_type = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 47, PhysicalMax = 87, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 63, str = 149, dex = 76, }, @@ -176,6 +197,7 @@ itemBases["Vaal Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, top_tier_base_item_type = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 30, PhysicalMax = 90, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, req = { level = 65, str = 140, dex = 86, }, @@ -184,6 +206,7 @@ itemBases["Royal Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, top_tier_base_item_type = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 54, PhysicalMax = 100, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, req = { level = 67, str = 167, dex = 57, }, @@ -192,6 +215,7 @@ itemBases["Infernal Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, top_tier_base_item_type = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 51, PhysicalMax = 85, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, req = { level = 69, str = 158, dex = 76, }, @@ -200,6 +224,7 @@ itemBases["Runic Hatchet"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, maraketh = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "12% increased Global Physical Damage", implicitModTypes = { { "physical_damage", "damage", "physical" }, }, weapon = { PhysicalMin = 44, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -209,6 +234,7 @@ itemBases["Maltreatment Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "+10 to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 21, PhysicalMax = 44, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -218,6 +244,7 @@ itemBases["Disapprobation Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "+10 to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 32, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -227,6 +254,7 @@ itemBases["Psychotic Axe"] = { type = "One Handed Axe", socketLimit = 3, tags = { axe = true, onehand = true, not_for_sale = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "axe_shaper", elder = "axe_elder", adjudicator = "axe_adjudicator", basilisk = "axe_basilisk", crusader = "axe_crusader", eyrie = "axe_eyrie", cleansing = "axe_cleansing", tangle = "axe_tangle" }, implicit = "+10 to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 38, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -237,6 +265,7 @@ itemBases["Stone Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 12, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { str = 17, dex = 8, }, @@ -245,6 +274,7 @@ itemBases["Jade Chopper"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 19, PhysicalMax = 30, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, req = { level = 9, str = 31, dex = 9, }, @@ -253,6 +283,7 @@ itemBases["Woodsplitter"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 19, PhysicalMax = 39, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { level = 13, str = 36, dex = 17, }, @@ -261,6 +292,7 @@ itemBases["Poleaxe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 29, PhysicalMax = 43, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { level = 18, str = 44, dex = 25, }, @@ -269,6 +301,7 @@ itemBases["Double Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, req = { level = 23, str = 62, dex = 27, }, @@ -277,6 +310,7 @@ itemBases["Gilded Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 43, PhysicalMax = 58, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { level = 28, str = 64, dex = 37, }, @@ -285,6 +319,7 @@ itemBases["Shadow Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 49, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, req = { level = 33, str = 80, dex = 37, }, @@ -293,6 +328,7 @@ itemBases["Dagger Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, maraketh = true, not_for_sale = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "50% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 53, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -302,6 +338,7 @@ itemBases["Jasper Chopper"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 58, PhysicalMax = 91, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, req = { level = 37, str = 100, dex = 29, }, @@ -310,6 +347,7 @@ itemBases["Timber Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 48, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, req = { level = 41, str = 97, dex = 45, }, @@ -318,6 +356,7 @@ itemBases["Headsman Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 61, PhysicalMax = 92, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { level = 45, str = 99, dex = 57, }, @@ -326,6 +365,7 @@ itemBases["Labrys"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 74, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, req = { level = 49, str = 122, dex = 53, }, @@ -334,6 +374,7 @@ itemBases["Noble Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 76, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, req = { level = 52, str = 113, dex = 65, }, @@ -342,6 +383,7 @@ itemBases["Abyssal Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 81, PhysicalMax = 121, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, req = { level = 55, str = 128, dex = 60, }, @@ -350,6 +392,7 @@ itemBases["Talon Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, maraketh = true, not_for_sale = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "50% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 88, PhysicalMax = 138, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -359,6 +402,7 @@ itemBases["Karui Chopper"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 121, PhysicalMax = 189, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, req = { level = 58, str = 151, dex = 43, }, @@ -367,6 +411,7 @@ itemBases["Sundering Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "+20% to Damage over Time Multiplier for Bleeding", implicitModTypes = { { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 74, PhysicalMax = 155, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -376,6 +421,7 @@ itemBases["Ezomyte Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, top_tier_base_item_type = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 87, PhysicalMax = 131, CritChanceBase = 5.7, AttackRateBase = 1.35, Range = 13, }, req = { level = 62, str = 140, dex = 86, }, @@ -384,6 +430,7 @@ itemBases["Vaal Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, top_tier_base_item_type = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "25% chance to Maim on Hit", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 104, PhysicalMax = 174, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, @@ -393,6 +440,7 @@ itemBases["Despot Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, top_tier_base_item_type = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 90, PhysicalMax = 122, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 66, str = 140, dex = 86, }, @@ -401,6 +449,7 @@ itemBases["Void Axe"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, top_tier_base_item_type = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 96, PhysicalMax = 144, CritChanceBase = 6, AttackRateBase = 1.25, Range = 13, }, req = { level = 68, str = 149, dex = 76, }, @@ -409,6 +458,7 @@ itemBases["Fleshripper"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, maraketh = true, not_for_sale = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "50% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 97, PhysicalMax = 152, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -418,6 +468,7 @@ itemBases["Prime Cleaver"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, weapon = true, not_for_sale = true, two_hand_weapon = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "+20% to Maximum Quality", implicitModTypes = { { }, }, weapon = { PhysicalMin = 36, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -427,6 +478,7 @@ itemBases["Honed Cleaver"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, weapon = true, not_for_sale = true, two_hand_weapon = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "+20% to Maximum Quality", implicitModTypes = { { }, }, weapon = { PhysicalMin = 55, PhysicalMax = 86, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -436,6 +488,7 @@ itemBases["Apex Cleaver"] = { type = "Two Handed Axe", socketLimit = 6, tags = { axe = true, weapon = true, not_for_sale = true, two_hand_weapon = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_axe_shaper", elder = "2h_axe_elder", adjudicator = "2h_axe_adjudicator", basilisk = "2h_axe_basilisk", crusader = "2h_axe_crusader", eyrie = "2h_axe_eyrie", cleansing = "2h_axe_cleansing", tangle = "2h_axe_tangle" }, implicit = "+20% to Maximum Quality", implicitModTypes = { { }, }, weapon = { PhysicalMin = 65, PhysicalMax = 101, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, diff --git a/src/Data/Bases/belt.lua b/src/Data/Bases/belt.lua index 4f51d06555..d59894922a 100644 --- a/src/Data/Bases/belt.lua +++ b/src/Data/Bases/belt.lua @@ -5,6 +5,7 @@ local itemBases = ... itemBases["Rustic Sash"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "(12-24)% increased Global Physical Damage", implicitModTypes = { { "physical_damage", "damage", "physical" }, }, req = { }, @@ -12,6 +13,7 @@ itemBases["Rustic Sash"] = { itemBases["Chain Belt"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "+(9-20) to maximum Energy Shield", implicitModTypes = { { "energy_shield", "defences" }, }, req = { }, @@ -19,6 +21,7 @@ itemBases["Chain Belt"] = { itemBases["Leather Belt"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "+(25-40) to maximum Life", implicitModTypes = { { "resource", "life" }, }, req = { level = 8, }, @@ -26,6 +29,7 @@ itemBases["Leather Belt"] = { itemBases["Heavy Belt"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "+(25-35) to Strength", implicitModTypes = { { "attribute" }, }, req = { level = 8, }, @@ -33,6 +37,7 @@ itemBases["Heavy Belt"] = { itemBases["Cloth Belt"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "(15-25)% increased Stun and Block Recovery", implicitModTypes = { { }, }, req = { level = 16, }, @@ -40,6 +45,7 @@ itemBases["Cloth Belt"] = { itemBases["Studded Belt"] = { type = "Belt", tags = { belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "(20-30)% increased Stun Duration on Enemies", implicitModTypes = { { }, }, req = { level = 16, }, @@ -47,6 +53,7 @@ itemBases["Studded Belt"] = { itemBases["Micro-Distillery Belt"] = { type = "Belt", tags = { experimental_base = true, default = true, belt = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "Flasks applied to you have 20% increased Effect\nCan't use Flask in Fifth Slot", implicitModTypes = { { }, { }, }, req = { level = 24, }, @@ -54,6 +61,7 @@ itemBases["Micro-Distillery Belt"] = { itemBases["Mechalarm Belt"] = { type = "Belt", tags = { experimental_base = true, default = true, belt = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "Trigger Level 20 Summon Taunting Contraption when you use a Flask", implicitModTypes = { { }, }, req = { level = 56, }, @@ -61,6 +69,7 @@ itemBases["Mechalarm Belt"] = { itemBases["Vanguard Belt"] = { type = "Belt", tags = { not_for_sale = true, atlas_base_type = true, beltatlas1 = true, belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "+(260-320) to Armour and Evasion Rating", implicitModTypes = { { "armour", "evasion", "defences" }, }, req = { level = 78, }, @@ -68,6 +77,7 @@ itemBases["Vanguard Belt"] = { itemBases["Crystal Belt"] = { type = "Belt", tags = { beltatlas2 = true, not_for_sale = true, atlas_base_type = true, belt = true, default = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "+(60-80) to maximum Energy Shield", implicitModTypes = { { "energy_shield", "defences" }, }, req = { level = 79, }, @@ -75,6 +85,7 @@ itemBases["Crystal Belt"] = { itemBases["Stygian Vise"] = { type = "Belt", tags = { not_for_sale = true, default = true, belt = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "Has 1 Abyssal Socket", implicitModTypes = { { }, }, req = { }, @@ -83,6 +94,7 @@ itemBases["Stygian Vise"] = { itemBases["Golden Obi"] = { type = "Belt", tags = { demigods = true, not_for_sale = true, default = true, belt = true, }, + influenceTags = { shaper = "belt_shaper", elder = "belt_elder", adjudicator = "belt_adjudicator", basilisk = "belt_basilisk", crusader = "belt_crusader", eyrie = "belt_eyrie", cleansing = "belt_cleansing", tangle = "belt_tangle" }, implicit = "(20-30)% increased Rarity of Items found", implicitModTypes = { { }, }, req = { }, diff --git a/src/Data/Bases/body.lua b/src/Data/Bases/body.lua index ff4fa870bb..40b4e5f320 100644 --- a/src/Data/Bases/body.lua +++ b/src/Data/Bases/body.lua @@ -8,6 +8,7 @@ itemBases["Plate Vest"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 19, ArmourBaseMax = 27, MovementPenalty = 3, }, req = { str = 12, }, @@ -17,6 +18,7 @@ itemBases["Chestplate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 68, ArmourBaseMax = 89, MovementPenalty = 5, }, req = { level = 6, str = 25, }, @@ -26,6 +28,7 @@ itemBases["Copper Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 176, ArmourBaseMax = 221, MovementPenalty = 5, }, req = { level = 17, str = 53, }, @@ -35,6 +38,7 @@ itemBases["War Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 216, ArmourBaseMax = 248, MovementPenalty = 5, }, req = { level = 21, str = 63, }, @@ -44,6 +48,7 @@ itemBases["Full Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 284, ArmourBaseMax = 319, MovementPenalty = 5, }, req = { level = 28, str = 81, }, @@ -53,6 +58,7 @@ itemBases["Arena Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 324, ArmourBaseMax = 389, MovementPenalty = 5, }, req = { level = 32, str = 91, }, @@ -62,6 +68,7 @@ itemBases["Lordly Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 353, ArmourBaseMax = 417, MovementPenalty = 5, }, req = { level = 35, str = 99, }, @@ -71,6 +78,7 @@ itemBases["Bronze Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 373, ArmourBaseMax = 429, MovementPenalty = 5, }, req = { level = 37, str = 104, }, @@ -80,6 +88,7 @@ itemBases["Battle Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 412, ArmourBaseMax = 474, MovementPenalty = 5, }, req = { level = 41, str = 114, }, @@ -89,6 +98,7 @@ itemBases["Sun Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 451, ArmourBaseMax = 506, MovementPenalty = 5, }, req = { level = 45, str = 124, }, @@ -98,6 +108,7 @@ itemBases["Colosseum Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 491, ArmourBaseMax = 589, MovementPenalty = 5, }, req = { level = 49, str = 134, }, @@ -107,6 +118,7 @@ itemBases["Majestic Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 530, ArmourBaseMax = 625, MovementPenalty = 5, }, req = { level = 53, str = 145, }, @@ -116,6 +128,7 @@ itemBases["Golden Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 559, ArmourBaseMax = 643, MovementPenalty = 5, }, req = { level = 56, str = 152, }, @@ -125,6 +138,7 @@ itemBases["Crusader Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 601, ArmourBaseMax = 691, MovementPenalty = 5, }, req = { level = 59, str = 160, }, @@ -134,6 +148,7 @@ itemBases["Astral Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "+(8-12)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { ArmourBaseMin = 711, ArmourBaseMax = 782, MovementPenalty = 5, }, @@ -144,6 +159,7 @@ itemBases["Gladiator Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 738, ArmourBaseMax = 848, MovementPenalty = 5, }, req = { level = 65, str = 177, }, @@ -153,6 +169,7 @@ itemBases["Glorious Plate"] = { subType = "Armour", socketLimit = 6, tags = { body_armour = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 776, ArmourBaseMax = 892, }, req = { level = 68, str = 191, }, @@ -163,6 +180,7 @@ itemBases["Shabby Jerkin"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 29, EvasionBaseMax = 41, MovementPenalty = 3, }, req = { dex = 14, }, @@ -172,6 +190,7 @@ itemBases["Strapped Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 98, EvasionBaseMax = 127, MovementPenalty = 3, }, req = { level = 9, dex = 32, }, @@ -181,6 +200,7 @@ itemBases["Buckskin Tunic"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 176, EvasionBaseMax = 221, MovementPenalty = 3, }, req = { level = 17, dex = 53, }, @@ -190,6 +210,7 @@ itemBases["Wild Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 255, EvasionBaseMax = 306, MovementPenalty = 3, }, req = { level = 25, dex = 73, }, @@ -199,6 +220,7 @@ itemBases["Full Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 284, EvasionBaseMax = 327, MovementPenalty = 3, }, req = { level = 28, dex = 81, }, @@ -208,6 +230,7 @@ itemBases["Sun Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 324, EvasionBaseMax = 382, MovementPenalty = 3, }, req = { level = 32, dex = 91, }, @@ -217,6 +240,7 @@ itemBases["Thief's Garb"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 353, EvasionBaseMax = 396, MovementPenalty = 3, }, req = { level = 35, dex = 99, }, @@ -226,6 +250,7 @@ itemBases["Eelskin Tunic"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 373, EvasionBaseMax = 429, MovementPenalty = 3, }, req = { level = 37, dex = 104, }, @@ -235,6 +260,7 @@ itemBases["Frontier Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 412, EvasionBaseMax = 495, MovementPenalty = 3, }, req = { level = 41, dex = 114, }, @@ -244,6 +270,7 @@ itemBases["Glorious Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 451, EvasionBaseMax = 519, MovementPenalty = 3, }, req = { level = 45, dex = 124, }, @@ -253,6 +280,7 @@ itemBases["Coronal Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 491, EvasionBaseMax = 579, MovementPenalty = 3, }, req = { level = 49, dex = 134, }, @@ -262,6 +290,7 @@ itemBases["Cutthroat's Garb"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 530, EvasionBaseMax = 594, MovementPenalty = 3, }, req = { level = 53, dex = 145, }, @@ -271,6 +300,7 @@ itemBases["Sharkskin Tunic"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 559, EvasionBaseMax = 643, MovementPenalty = 3, }, req = { level = 56, dex = 152, }, @@ -280,6 +310,7 @@ itemBases["Destiny Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 601, EvasionBaseMax = 721, MovementPenalty = 3, }, req = { level = 59, dex = 160, }, @@ -289,6 +320,7 @@ itemBases["Exquisite Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 704, EvasionBaseMax = 810, MovementPenalty = 3, }, req = { level = 62, dex = 170, }, @@ -298,6 +330,7 @@ itemBases["Zodiac Leather"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 854, EvasionBaseMax = 982, MovementPenalty = 3, }, req = { level = 65, dex = 197, }, @@ -307,6 +340,7 @@ itemBases["Assassin's Garb"] = { subType = "Evasion", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { EvasionBaseMin = 737, EvasionBaseMax = 811, }, @@ -318,6 +352,7 @@ itemBases["Simple Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 20, MovementPenalty = 3, }, req = { int = 17, }, @@ -327,6 +362,7 @@ itemBases["Silken Vest"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 30, EnergyShieldBaseMax = 38, MovementPenalty = 3, }, req = { level = 11, int = 37, }, @@ -336,6 +372,7 @@ itemBases["Scholar's Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 43, EnergyShieldBaseMax = 53, MovementPenalty = 3, }, req = { level = 18, int = 55, }, @@ -345,6 +382,7 @@ itemBases["Silken Garb"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 56, EnergyShieldBaseMax = 64, MovementPenalty = 3, }, req = { level = 25, int = 73, }, @@ -354,6 +392,7 @@ itemBases["Mage's Vestment"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 62, EnergyShieldBaseMax = 69, MovementPenalty = 3, }, req = { level = 28, int = 81, }, @@ -363,6 +402,7 @@ itemBases["Silk Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 69, EnergyShieldBaseMax = 80, MovementPenalty = 3, }, req = { level = 32, int = 91, }, @@ -372,6 +412,7 @@ itemBases["Cabalist Regalia"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 75, EnergyShieldBaseMax = 88, MovementPenalty = 3, }, req = { level = 35, int = 99, }, @@ -381,6 +422,7 @@ itemBases["Sage's Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 79, EnergyShieldBaseMax = 90, MovementPenalty = 3, }, req = { level = 37, int = 104, }, @@ -390,6 +432,7 @@ itemBases["Silken Wrap"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 86, EnergyShieldBaseMax = 104, MovementPenalty = 3, }, req = { level = 41, int = 114, }, @@ -399,6 +442,7 @@ itemBases["Conjurer's Vestment"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 94, EnergyShieldBaseMax = 105, MovementPenalty = 3, }, req = { level = 45, int = 124, }, @@ -408,6 +452,7 @@ itemBases["Spidersilk Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 101, EnergyShieldBaseMax = 117, MovementPenalty = 3, }, req = { level = 49, int = 134, }, @@ -417,6 +462,7 @@ itemBases["Destroyer Regalia"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 109, EnergyShieldBaseMax = 129, MovementPenalty = 3, }, req = { level = 53, int = 145, }, @@ -426,6 +472,7 @@ itemBases["Savant's Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 115, EnergyShieldBaseMax = 132, MovementPenalty = 3, }, req = { level = 56, int = 152, }, @@ -435,6 +482,7 @@ itemBases["Necromancer Silks"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 123, EnergyShieldBaseMax = 147, MovementPenalty = 3, }, req = { level = 59, int = 160, }, @@ -444,6 +492,7 @@ itemBases["Occultist's Vestment"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "(3-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { EnergyShieldBaseMin = 137, EnergyShieldBaseMax = 151, MovementPenalty = 3, }, @@ -454,6 +503,7 @@ itemBases["Widowsilk Robe"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 157, EnergyShieldBaseMax = 181, MovementPenalty = 3, }, req = { level = 65, int = 187, }, @@ -463,6 +513,7 @@ itemBases["Vaal Regalia"] = { subType = "Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 171, EnergyShieldBaseMax = 197, MovementPenalty = 3, }, req = { level = 68, int = 194, }, @@ -473,6 +524,7 @@ itemBases["Scale Vest"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 27, ArmourBaseMax = 38, EvasionBaseMin = 27, EvasionBaseMax = 38, MovementPenalty = 3, }, req = { str = 10, dex = 10, }, @@ -482,6 +534,7 @@ itemBases["Light Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 48, ArmourBaseMax = 63, EvasionBaseMin = 48, EvasionBaseMax = 63, MovementPenalty = 3, }, req = { level = 8, str = 16, dex = 16, }, @@ -491,6 +544,7 @@ itemBases["Scale Doublet"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 97, ArmourBaseMax = 121, EvasionBaseMin = 97, EvasionBaseMax = 121, MovementPenalty = 3, }, req = { level = 17, str = 28, dex = 28, }, @@ -500,6 +554,7 @@ itemBases["Infantry Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 119, ArmourBaseMax = 142, EvasionBaseMin = 119, EvasionBaseMax = 142, MovementPenalty = 3, }, req = { level = 21, str = 34, dex = 34, }, @@ -509,6 +564,7 @@ itemBases["Full Scale Armour"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 156, ArmourBaseMax = 180, EvasionBaseMin = 156, EvasionBaseMax = 180, MovementPenalty = 3, }, req = { level = 28, str = 43, dex = 43, }, @@ -518,6 +574,7 @@ itemBases["Soldier's Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 178, ArmourBaseMax = 210, EvasionBaseMin = 178, EvasionBaseMax = 210, MovementPenalty = 3, }, req = { level = 32, str = 48, dex = 48, }, @@ -527,6 +584,7 @@ itemBases["Field Lamellar"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 194, ArmourBaseMax = 223, EvasionBaseMin = 194, EvasionBaseMax = 223, MovementPenalty = 3, }, req = { level = 35, str = 53, dex = 53, }, @@ -536,6 +594,7 @@ itemBases["Wyrmscale Doublet"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 210, ArmourBaseMax = 236, EvasionBaseMin = 210, EvasionBaseMax = 236, MovementPenalty = 3, }, req = { level = 38, str = 57, dex = 57, }, @@ -545,6 +604,7 @@ itemBases["Hussar Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 232, ArmourBaseMax = 278, EvasionBaseMin = 232, EvasionBaseMax = 278, MovementPenalty = 3, }, req = { level = 42, str = 62, dex = 62, }, @@ -554,6 +614,7 @@ itemBases["Full Wyrmscale"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 254, ArmourBaseMax = 292, EvasionBaseMin = 254, EvasionBaseMax = 292, MovementPenalty = 3, }, req = { level = 46, str = 68, dex = 68, }, @@ -563,6 +624,7 @@ itemBases["Commander's Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 275, ArmourBaseMax = 325, EvasionBaseMin = 275, EvasionBaseMax = 325, MovementPenalty = 3, }, req = { level = 50, str = 73, dex = 73, }, @@ -572,6 +634,7 @@ itemBases["Battle Lamellar"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 297, ArmourBaseMax = 341, EvasionBaseMin = 297, EvasionBaseMax = 341, MovementPenalty = 3, }, req = { level = 54, str = 79, dex = 79, }, @@ -581,6 +644,7 @@ itemBases["Dragonscale Doublet"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 313, ArmourBaseMax = 351, EvasionBaseMin = 313, EvasionBaseMax = 351, MovementPenalty = 3, }, req = { level = 57, str = 83, dex = 83, }, @@ -590,6 +654,7 @@ itemBases["Desert Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 376, ArmourBaseMax = 451, EvasionBaseMin = 376, EvasionBaseMax = 451, MovementPenalty = 3, }, req = { level = 60, str = 96, dex = 96, }, @@ -599,6 +664,7 @@ itemBases["Full Dragonscale"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, str_dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 470, ArmourBaseMax = 541, EvasionBaseMin = 373, EvasionBaseMax = 429, MovementPenalty = 3, }, req = { level = 63, str = 115, dex = 94, }, @@ -608,6 +674,7 @@ itemBases["General's Brigandine"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, str_dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 415, ArmourBaseMax = 465, EvasionBaseMin = 415, EvasionBaseMax = 465, MovementPenalty = 3, }, req = { level = 66, str = 103, dex = 103, }, @@ -617,6 +684,7 @@ itemBases["Triumphant Lamellar"] = { subType = "Armour/Evasion", socketLimit = 6, tags = { body_armour = true, str_dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 380, ArmourBaseMax = 437, EvasionBaseMin = 477, EvasionBaseMax = 549, MovementPenalty = 3, }, req = { level = 69, str = 95, dex = 116, }, @@ -627,6 +695,7 @@ itemBases["Chainmail Vest"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 27, ArmourBaseMax = 38, EnergyShieldBaseMin = 9, EnergyShieldBaseMax = 13, MovementPenalty = 5, }, req = { str = 10, int = 10, }, @@ -636,6 +705,7 @@ itemBases["Chainmail Tunic"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 48, ArmourBaseMax = 63, EnergyShieldBaseMin = 13, EnergyShieldBaseMax = 17, MovementPenalty = 5, }, req = { level = 8, str = 16, int = 16, }, @@ -645,6 +715,7 @@ itemBases["Ringmail Coat"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 97, ArmourBaseMax = 121, EnergyShieldBaseMin = 22, EnergyShieldBaseMax = 28, MovementPenalty = 5, }, req = { level = 17, str = 28, int = 28, }, @@ -654,6 +725,7 @@ itemBases["Chainmail Doublet"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 119, ArmourBaseMax = 140, EnergyShieldBaseMin = 27, EnergyShieldBaseMax = 31, MovementPenalty = 5, }, req = { level = 21, str = 34, int = 34, }, @@ -663,6 +735,7 @@ itemBases["Full Ringmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 156, ArmourBaseMax = 180, EnergyShieldBaseMin = 34, EnergyShieldBaseMax = 39, MovementPenalty = 5, }, req = { level = 28, str = 43, int = 43, }, @@ -672,6 +745,7 @@ itemBases["Full Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 178, ArmourBaseMax = 199, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 43, MovementPenalty = 5, }, req = { level = 32, str = 48, int = 48, }, @@ -681,6 +755,7 @@ itemBases["Holy Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 194, ArmourBaseMax = 233, EnergyShieldBaseMin = 41, EnergyShieldBaseMax = 49, MovementPenalty = 5, }, req = { level = 35, str = 53, int = 53, }, @@ -690,6 +765,7 @@ itemBases["Latticed Ringmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 216, ArmourBaseMax = 248, EnergyShieldBaseMin = 45, EnergyShieldBaseMax = 52, MovementPenalty = 5, }, req = { level = 39, str = 59, int = 59, }, @@ -699,6 +775,7 @@ itemBases["Crusader Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 237, ArmourBaseMax = 266, EnergyShieldBaseMin = 50, EnergyShieldBaseMax = 55, MovementPenalty = 5, }, req = { level = 43, str = 64, int = 64, }, @@ -708,6 +785,7 @@ itemBases["Ornate Ringmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 259, ArmourBaseMax = 298, EnergyShieldBaseMin = 54, EnergyShieldBaseMax = 62, MovementPenalty = 5, }, req = { level = 47, str = 69, int = 69, }, @@ -717,6 +795,7 @@ itemBases["Chain Hauberk"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 281, ArmourBaseMax = 314, EnergyShieldBaseMin = 58, EnergyShieldBaseMax = 65, MovementPenalty = 5, }, req = { level = 51, str = 75, int = 75, }, @@ -726,6 +805,7 @@ itemBases["Devout Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 302, ArmourBaseMax = 363, EnergyShieldBaseMin = 62, EnergyShieldBaseMax = 74, MovementPenalty = 5, }, req = { level = 55, str = 80, int = 80, }, @@ -735,6 +815,7 @@ itemBases["Loricated Ringmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 325, ArmourBaseMax = 374, EnergyShieldBaseMin = 66, EnergyShieldBaseMax = 76, MovementPenalty = 5, }, req = { level = 58, str = 84, int = 84, }, @@ -744,6 +825,7 @@ itemBases["Conquest Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 387, ArmourBaseMax = 445, EnergyShieldBaseMin = 79, EnergyShieldBaseMax = 91, MovementPenalty = 5, }, req = { level = 61, str = 96, int = 96, }, @@ -753,6 +835,7 @@ itemBases["Elegant Ringmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, str_int_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 377, ArmourBaseMax = 433, EnergyShieldBaseMin = 92, EnergyShieldBaseMax = 105, MovementPenalty = 5, }, req = { level = 64, str = 90, int = 105, }, @@ -762,6 +845,7 @@ itemBases["Saint's Hauberk"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, str_int_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 443, ArmourBaseMax = 496, EnergyShieldBaseMin = 76, EnergyShieldBaseMax = 85, MovementPenalty = 5, }, req = { level = 67, str = 109, int = 94, }, @@ -771,6 +855,7 @@ itemBases["Saintly Chainmail"] = { subType = "Armour/Energy Shield", socketLimit = 6, tags = { body_armour = true, str_int_armour = true, top_tier_base_item_type = true, armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 401, ArmourBaseMax = 461, EnergyShieldBaseMin = 96, EnergyShieldBaseMax = 110, MovementPenalty = 5, }, req = { level = 70, str = 99, int = 115, }, @@ -781,6 +866,7 @@ itemBases["Padded Vest"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 27, EvasionBaseMax = 38, EnergyShieldBaseMin = 9, EnergyShieldBaseMax = 13, MovementPenalty = 3, }, req = { dex = 10, int = 10, }, @@ -790,6 +876,7 @@ itemBases["Oiled Vest"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 54, EvasionBaseMax = 70, EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 18, MovementPenalty = 3, }, req = { level = 9, dex = 17, int = 17, }, @@ -799,6 +886,7 @@ itemBases["Padded Jacket"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 102, EvasionBaseMax = 128, EnergyShieldBaseMin = 24, EnergyShieldBaseMax = 29, MovementPenalty = 3, }, req = { level = 18, dex = 30, int = 30, }, @@ -808,6 +896,7 @@ itemBases["Oiled Coat"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 124, EvasionBaseMax = 146, EnergyShieldBaseMin = 28, EnergyShieldBaseMax = 33, MovementPenalty = 3, }, req = { level = 22, dex = 35, int = 35, }, @@ -817,6 +906,7 @@ itemBases["Scarlet Raiment"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 156, EvasionBaseMax = 180, EnergyShieldBaseMin = 34, EnergyShieldBaseMax = 39, MovementPenalty = 3, }, req = { level = 28, dex = 43, int = 43, }, @@ -826,6 +916,7 @@ itemBases["Waxed Garb"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 178, EvasionBaseMax = 205, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 44, MovementPenalty = 3, }, req = { level = 32, dex = 48, int = 48, }, @@ -835,6 +926,7 @@ itemBases["Bone Armour"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 194, EvasionBaseMax = 233, EnergyShieldBaseMin = 41, EnergyShieldBaseMax = 49, MovementPenalty = 3, }, req = { level = 35, dex = 53, int = 53, }, @@ -844,6 +936,7 @@ itemBases["Quilted Jacket"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 221, EvasionBaseMax = 248, EnergyShieldBaseMin = 46, EnergyShieldBaseMax = 52, MovementPenalty = 3, }, req = { level = 40, dex = 60, int = 60, }, @@ -853,6 +946,7 @@ itemBases["Sleek Coat"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 243, EvasionBaseMax = 287, EnergyShieldBaseMin = 51, EnergyShieldBaseMax = 60, MovementPenalty = 3, }, req = { level = 44, dex = 65, int = 65, }, @@ -862,6 +956,7 @@ itemBases["Crimson Raiment"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 264, EvasionBaseMax = 304, EnergyShieldBaseMin = 55, EnergyShieldBaseMax = 63, MovementPenalty = 3, }, req = { level = 48, dex = 71, int = 71, }, @@ -871,6 +966,7 @@ itemBases["Lacquered Garb"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 286, EvasionBaseMax = 329, EnergyShieldBaseMin = 59, EnergyShieldBaseMax = 68, MovementPenalty = 3, }, req = { level = 52, dex = 76, int = 76, }, @@ -880,6 +976,7 @@ itemBases["Crypt Armour"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 308, EvasionBaseMax = 369, EnergyShieldBaseMin = 63, EnergyShieldBaseMax = 76, MovementPenalty = 3, }, req = { level = 56, dex = 82, int = 82, }, @@ -889,6 +986,7 @@ itemBases["Sentinel Jacket"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 330, EvasionBaseMax = 370, EnergyShieldBaseMin = 67, EnergyShieldBaseMax = 76, MovementPenalty = 3, }, req = { level = 59, dex = 86, int = 86, }, @@ -898,6 +996,7 @@ itemBases["Varnished Coat"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 387, EvasionBaseMax = 434, EnergyShieldBaseMin = 79, EnergyShieldBaseMax = 89, MovementPenalty = 3, }, req = { level = 62, dex = 96, int = 96, }, @@ -907,6 +1006,7 @@ itemBases["Blood Raiment"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 436, EvasionBaseMax = 501, EnergyShieldBaseMin = 73, EnergyShieldBaseMax = 84, MovementPenalty = 3, }, req = { level = 65, dex = 107, int = 90, }, @@ -916,6 +1016,7 @@ itemBases["Sadist Garb"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 427, EvasionBaseMax = 491, EnergyShieldBaseMin = 93, EnergyShieldBaseMax = 107, MovementPenalty = 3, }, req = { level = 68, dex = 103, int = 109, }, @@ -925,6 +1026,7 @@ itemBases["Carnal Armour"] = { subType = "Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "+(20-25) to maximum Mana", implicitModTypes = { { "resource", "mana" }, }, armour = { EvasionBaseMin = 353, EvasionBaseMax = 388, EnergyShieldBaseMin = 103, EnergyShieldBaseMax = 113, MovementPenalty = 3, }, @@ -936,6 +1038,7 @@ itemBases["Sacrificial Garb"] = { subType = "Armour/Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, str_dex_int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "+1 to Level of all Vaal Skill Gems", implicitModTypes = { { "gem" }, }, armour = { ArmourBaseMin = 329, ArmourBaseMax = 378, EvasionBaseMin = 329, EvasionBaseMax = 378, EnergyShieldBaseMin = 67, EnergyShieldBaseMax = 77, MovementPenalty = 3, }, @@ -946,6 +1049,7 @@ itemBases["Grasping Mail"] = { subType = "Armour/Evasion/Energy Shield", socketLimit = 6, tags = { body_armour = true, str_dex_int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 217, ArmourBaseMax = 250, EvasionBaseMin = 217, EvasionBaseMax = 250, EnergyShieldBaseMin = 44, EnergyShieldBaseMax = 51, MovementPenalty = 3, }, req = { level = 70, str = 60, dex = 60, int = 60, }, @@ -956,6 +1060,7 @@ itemBases["Golden Mantle"] = { hidden = true, socketLimit = 6, tags = { body_armour = true, str_dex_int_armour = true, demigods = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "body_armour_shaper", elder = "body_armour_elder", adjudicator = "body_armour_adjudicator", basilisk = "body_armour_basilisk", crusader = "body_armour_crusader", eyrie = "body_armour_eyrie", cleansing = "body_armour_cleansing", tangle = "body_armour_tangle" }, implicit = "+(15-25)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { ArmourBaseMin = 75, ArmourBaseMax = 86, EvasionBaseMin = 75, EvasionBaseMax = 86, EnergyShieldBaseMin = 17, EnergyShieldBaseMax = 19, }, diff --git a/src/Data/Bases/boots.lua b/src/Data/Bases/boots.lua index 4e9f791b15..eba1c68dc3 100644 --- a/src/Data/Bases/boots.lua +++ b/src/Data/Bases/boots.lua @@ -8,6 +8,7 @@ itemBases["Iron Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 6, ArmourBaseMax = 9, }, req = { str = 8, }, @@ -17,6 +18,7 @@ itemBases["Steel Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 32, ArmourBaseMax = 42, }, req = { level = 9, str = 21, }, @@ -26,6 +28,7 @@ itemBases["Plated Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 77, ArmourBaseMax = 96, }, req = { level = 23, str = 44, }, @@ -35,6 +38,7 @@ itemBases["Reinforced Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 109, ArmourBaseMax = 120, }, req = { level = 33, str = 61, }, @@ -44,6 +48,7 @@ itemBases["Antique Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 122, ArmourBaseMax = 144, }, req = { level = 37, str = 67, }, @@ -53,6 +58,7 @@ itemBases["Ancient Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 151, ArmourBaseMax = 174, }, req = { level = 46, str = 82, }, @@ -62,6 +68,7 @@ itemBases["Goliath Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 177, ArmourBaseMax = 209, }, req = { level = 54, str = 95, }, @@ -71,6 +78,7 @@ itemBases["Vaal Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 220, ArmourBaseMax = 253, }, req = { level = 62, str = 117, }, @@ -80,6 +88,7 @@ itemBases["Titan Greaves"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 241, ArmourBaseMax = 278, }, req = { level = 68, str = 120, }, @@ -89,6 +98,7 @@ itemBases["Basemetal Treads"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(4-5)% Chance to Block Attack Damage\nYou take 20% of Damage from Blocked Hits", implicitModTypes = { { "block" }, { "block" }, }, armour = { ArmourBaseMin = 68, ArmourBaseMax = 78, }, @@ -99,6 +109,7 @@ itemBases["Darksteel Treads"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(4-5)% Chance to Block Attack Damage\nYou take 20% of Damage from Blocked Hits", implicitModTypes = { { "block" }, { "block" }, }, armour = { ArmourBaseMin = 164, ArmourBaseMax = 189, }, @@ -109,6 +120,7 @@ itemBases["Brimstone Treads"] = { subType = "Armour", socketLimit = 4, tags = { boots = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(4-5)% Chance to Block Attack Damage\nYou take 20% of Damage from Blocked Hits", implicitModTypes = { { "block" }, { "block" }, }, armour = { ArmourBaseMin = 236, ArmourBaseMax = 271, }, @@ -120,6 +132,7 @@ itemBases["Rawhide Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 13, EvasionBaseMax = 18, }, req = { dex = 11, }, @@ -129,6 +142,7 @@ itemBases["Goathide Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 42, EvasionBaseMax = 54, }, req = { level = 12, dex = 26, }, @@ -138,6 +152,7 @@ itemBases["Deerskin Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 74, EvasionBaseMax = 92, }, req = { level = 22, dex = 42, }, @@ -147,6 +162,7 @@ itemBases["Nubuck Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 113, EvasionBaseMax = 126, }, req = { level = 34, dex = 62, }, @@ -156,6 +172,7 @@ itemBases["Eelskin Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 129, EvasionBaseMax = 148, }, req = { level = 39, dex = 70, }, @@ -165,6 +182,7 @@ itemBases["Sharkskin Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 145, EvasionBaseMax = 171, }, req = { level = 44, dex = 79, }, @@ -174,6 +192,7 @@ itemBases["Shagreen Boots"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 180, EvasionBaseMax = 216, }, req = { level = 55, dex = 97, }, @@ -183,6 +202,7 @@ itemBases["Stealth Boots"] = { subType = "Evasion", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 220, EvasionBaseMax = 253, }, req = { level = 62, dex = 117, }, @@ -192,6 +212,7 @@ itemBases["Slink Boots"] = { subType = "Evasion", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 246, EvasionBaseMax = 283, }, req = { level = 69, dex = 120, }, @@ -201,6 +222,7 @@ itemBases["Cloudwhisper Boots"] = { subType = "Evasion", socketLimit = 4, tags = { boots = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating\n25% less Accuracy Rating", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 68, EvasionBaseMax = 78, }, @@ -211,6 +233,7 @@ itemBases["Windbreak Boots"] = { subType = "Evasion", socketLimit = 4, tags = { boots = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating\n25% less Accuracy Rating", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 164, EvasionBaseMax = 189, }, @@ -221,6 +244,7 @@ itemBases["Stormrider Boots"] = { subType = "Evasion", socketLimit = 4, tags = { boots = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating\n25% less Accuracy Rating", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 236, EvasionBaseMax = 271, }, @@ -232,6 +256,7 @@ itemBases["Wool Shoes"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 5, EnergyShieldBaseMax = 7, }, req = { int = 11, }, @@ -241,6 +266,7 @@ itemBases["Velvet Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 8, EnergyShieldBaseMax = 11, }, req = { level = 9, int = 21, }, @@ -250,6 +276,7 @@ itemBases["Silk Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 17, EnergyShieldBaseMax = 21, }, req = { level = 22, int = 42, }, @@ -259,6 +286,7 @@ itemBases["Scholar Boots"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 23, EnergyShieldBaseMax = 25, }, req = { level = 32, int = 59, }, @@ -268,6 +296,7 @@ itemBases["Satin Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 26, EnergyShieldBaseMax = 30, }, req = { level = 38, int = 69, }, @@ -277,6 +306,7 @@ itemBases["Samite Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 30, EnergyShieldBaseMax = 35, }, req = { level = 44, int = 79, }, @@ -286,6 +316,7 @@ itemBases["Conjurer Boots"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 36, EnergyShieldBaseMax = 42, }, req = { level = 53, int = 94, }, @@ -295,6 +326,7 @@ itemBases["Arcanist Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 47, EnergyShieldBaseMax = 55, }, req = { level = 61, int = 119, }, @@ -304,6 +336,7 @@ itemBases["Sorcerer Boots"] = { subType = "Energy Shield", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 51, EnergyShieldBaseMax = 59, }, req = { level = 67, int = 123, }, @@ -313,6 +346,7 @@ itemBases["Duskwalk Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { boots = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "10% reduced Movement Speed\n(30-40)% increased Cooldown Recovery Rate of Movement Skills", implicitModTypes = { { "speed" }, { "speed" }, }, armour = { EnergyShieldBaseMin = 15, EnergyShieldBaseMax = 18, }, @@ -323,6 +357,7 @@ itemBases["Nightwind Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { boots = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "10% reduced Movement Speed\n(30-40)% increased Cooldown Recovery Rate of Movement Skills", implicitModTypes = { { "speed" }, { "speed" }, }, armour = { EnergyShieldBaseMin = 34, EnergyShieldBaseMax = 39, }, @@ -333,6 +368,7 @@ itemBases["Dreamquest Slippers"] = { subType = "Energy Shield", socketLimit = 4, tags = { boots = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "10% reduced Movement Speed\n(30-40)% increased Cooldown Recovery Rate of Movement Skills", implicitModTypes = { { "speed" }, { "speed" }, }, armour = { EnergyShieldBaseMin = 50, EnergyShieldBaseMax = 57, }, @@ -344,6 +380,7 @@ itemBases["Leatherscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 12, ArmourBaseMax = 17, EvasionBaseMin = 12, EvasionBaseMax = 17, }, req = { level = 6, str = 9, dex = 9, }, @@ -353,6 +390,7 @@ itemBases["Ironscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 34, ArmourBaseMax = 44, EvasionBaseMin = 34, EvasionBaseMax = 44, }, req = { level = 18, str = 19, dex = 19, }, @@ -362,6 +400,7 @@ itemBases["Bronzescale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 55, ArmourBaseMax = 63, EvasionBaseMin = 55, EvasionBaseMax = 63, }, req = { level = 30, str = 30, dex = 30, }, @@ -371,6 +410,7 @@ itemBases["Steelscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 65, ArmourBaseMax = 75, EvasionBaseMin = 65, EvasionBaseMax = 75, }, req = { level = 36, str = 35, dex = 35, }, @@ -380,6 +420,7 @@ itemBases["Serpentscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 76, ArmourBaseMax = 90, EvasionBaseMin = 76, EvasionBaseMax = 90, }, req = { level = 42, str = 40, dex = 40, }, @@ -389,6 +430,7 @@ itemBases["Wyrmscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 92, ArmourBaseMax = 103, EvasionBaseMin = 92, EvasionBaseMax = 103, }, req = { level = 51, str = 48, dex = 48, }, @@ -398,6 +440,7 @@ itemBases["Hydrascale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 106, ArmourBaseMax = 122, EvasionBaseMin = 106, EvasionBaseMax = 122, }, req = { level = 59, str = 56, dex = 56, }, @@ -407,6 +450,7 @@ itemBases["Dragonscale Boots"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 121, ArmourBaseMax = 139, EvasionBaseMin = 121, EvasionBaseMax = 139, }, req = { level = 65, str = 62, dex = 62, }, @@ -416,6 +460,7 @@ itemBases["Two-Toned Boots (Armour/Evasion)"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { boots = true, str_dex_armour = true, not_for_sale = true, atlas_base_type = true, armour = true, bootsatlas2 = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(8-12)% to Fire and Cold Resistances", implicitModTypes = { { "elemental", "fire", "cold", "resistance" }, }, armour = { ArmourBaseMin = 126, ArmourBaseMax = 145, EvasionBaseMin = 126, EvasionBaseMax = 145, }, @@ -427,6 +472,7 @@ itemBases["Chain Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 11, ArmourBaseMax = 15, EnergyShieldBaseMin = 3, EnergyShieldBaseMax = 5, }, req = { level = 5, str = 8, int = 8, }, @@ -436,6 +482,7 @@ itemBases["Ringmail Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 25, ArmourBaseMax = 32, EnergyShieldBaseMin = 6, EnergyShieldBaseMax = 8, }, req = { level = 13, str = 15, int = 15, }, @@ -445,6 +492,7 @@ itemBases["Mesh Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 51, ArmourBaseMax = 64, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 14, }, req = { level = 28, str = 28, int = 28, }, @@ -454,6 +502,7 @@ itemBases["Riveted Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 65, ArmourBaseMax = 71, EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 15, }, req = { level = 36, str = 35, int = 35, }, @@ -463,6 +512,7 @@ itemBases["Zealot Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 73, ArmourBaseMax = 87, EnergyShieldBaseMin = 15, EnergyShieldBaseMax = 18, }, req = { level = 40, str = 39, int = 39, }, @@ -472,6 +522,7 @@ itemBases["Soldier Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 88, ArmourBaseMax = 99, EnergyShieldBaseMin = 18, EnergyShieldBaseMax = 20, }, req = { level = 49, str = 47, int = 47, }, @@ -481,6 +532,7 @@ itemBases["Legion Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 104, ArmourBaseMax = 120, EnergyShieldBaseMin = 21, EnergyShieldBaseMax = 25, }, req = { level = 58, str = 54, int = 54, }, @@ -490,6 +542,7 @@ itemBases["Crusader Boots"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 121, ArmourBaseMax = 139, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 64, str = 62, int = 62, }, @@ -499,6 +552,7 @@ itemBases["Two-Toned Boots (Armour/Energy Shield)"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { bootsatlas3 = true, boots = true, not_for_sale = true, atlas_base_type = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(8-12)% to Fire and Lightning Resistances", implicitModTypes = { { "elemental", "fire", "lightning", "resistance" }, }, armour = { ArmourBaseMin = 126, ArmourBaseMax = 145, EnergyShieldBaseMin = 26, EnergyShieldBaseMax = 30, }, @@ -510,6 +564,7 @@ itemBases["Wrapped Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 12, EvasionBaseMax = 17, EnergyShieldBaseMin = 4, EnergyShieldBaseMax = 5, }, req = { level = 6, dex = 9, int = 9, }, @@ -519,6 +574,7 @@ itemBases["Strapped Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 30, EvasionBaseMax = 39, EnergyShieldBaseMin = 7, EnergyShieldBaseMax = 9, }, req = { level = 16, dex = 18, int = 18, }, @@ -528,6 +584,7 @@ itemBases["Clasped Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 50, EvasionBaseMax = 57, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 12, }, req = { level = 27, dex = 27, int = 27, }, @@ -537,6 +594,7 @@ itemBases["Shackled Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 62, EvasionBaseMax = 71, EnergyShieldBaseMin = 13, EnergyShieldBaseMax = 15, }, req = { level = 34, dex = 34, int = 34, }, @@ -546,6 +604,7 @@ itemBases["Trapper Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 74, EvasionBaseMax = 85, EnergyShieldBaseMin = 16, EnergyShieldBaseMax = 18, }, req = { level = 41, dex = 40, int = 40, }, @@ -555,6 +614,7 @@ itemBases["Ambush Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 85, EvasionBaseMax = 95, EnergyShieldBaseMin = 18, EnergyShieldBaseMax = 20, }, req = { level = 47, dex = 45, int = 45, }, @@ -564,6 +624,7 @@ itemBases["Carnal Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, boots = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 99, EvasionBaseMax = 117, EnergyShieldBaseMin = 20, EnergyShieldBaseMax = 24, }, req = { level = 55, dex = 52, int = 52, }, @@ -573,6 +634,7 @@ itemBases["Assassin's Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 121, EvasionBaseMax = 139, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 63, dex = 62, int = 62, }, @@ -582,6 +644,7 @@ itemBases["Murder Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { boots = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 185, EvasionBaseMax = 213, EnergyShieldBaseMin = 18, EnergyShieldBaseMax = 21, }, req = { level = 69, dex = 82, int = 42, }, @@ -591,6 +654,7 @@ itemBases["Fugitive Boots"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { boots = true, bootsatlasdexint = true, not_for_sale = true, atlas_base_type = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(13-17)% to Chaos Resistance", implicitModTypes = { { "chaos", "resistance" }, }, armour = { EvasionBaseMin = 112, EvasionBaseMax = 129, EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 37, }, @@ -601,6 +665,7 @@ itemBases["Two-Toned Boots (Evasion/Energy Shield)"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { boots = true, dex_int_armour = true, not_for_sale = true, atlas_base_type = true, armour = true, bootsatlas1 = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(8-12)% to Cold and Lightning Resistances", implicitModTypes = { { "elemental", "cold", "lightning", "resistance" }, }, armour = { EvasionBaseMin = 126, EvasionBaseMax = 145, EnergyShieldBaseMin = 26, EnergyShieldBaseMax = 30, }, @@ -612,6 +677,7 @@ itemBases["Runic Greaves"] = { subType = "Ward", socketLimit = 4, tags = { boots = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 24, WardBaseMax = 28, }, req = { level = 24, str = 20, dex = 20, int = 20, }, @@ -621,6 +687,7 @@ itemBases["Runic Sollerets"] = { subType = "Ward", socketLimit = 4, tags = { boots = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 62, WardBaseMax = 71, }, req = { level = 48, str = 37, dex = 37, int = 37, }, @@ -630,6 +697,7 @@ itemBases["Runic Sabatons"] = { subType = "Ward", socketLimit = 4, tags = { boots = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 102, WardBaseMax = 117, }, req = { level = 69, str = 46, dex = 46, int = 46, }, @@ -639,6 +707,7 @@ itemBases["Golden Caligae"] = { type = "Boots", socketLimit = 4, tags = { boots = true, not_for_sale = true, armour = true, demigods = true, default = true, }, + influenceTags = { shaper = "boots_shaper", elder = "boots_elder", adjudicator = "boots_adjudicator", basilisk = "boots_basilisk", crusader = "boots_crusader", eyrie = "boots_eyrie", cleansing = "boots_cleansing", tangle = "boots_tangle" }, implicit = "+(8-16)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { }, diff --git a/src/Data/Bases/bow.lua b/src/Data/Bases/bow.lua index 3d9d2dd27a..7b943212a9 100644 --- a/src/Data/Bases/bow.lua +++ b/src/Data/Bases/bow.lua @@ -6,6 +6,7 @@ itemBases["Crude Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 5, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.4, Range = 120, }, req = { dex = 14, }, @@ -14,6 +15,7 @@ itemBases["Short Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 6, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.5, Range = 120, }, req = { level = 5, dex = 26, }, @@ -22,6 +24,7 @@ itemBases["Long Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 8, PhysicalMax = 33, CritChanceBase = 6, AttackRateBase = 1.3, Range = 120, }, req = { level = 9, dex = 38, }, @@ -30,6 +33,7 @@ itemBases["Composite Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 16, PhysicalMax = 34, CritChanceBase = 6, AttackRateBase = 1.3, Range = 120, }, req = { level = 14, dex = 53, }, @@ -38,6 +42,7 @@ itemBases["Recurve Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "+(15-25)% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 45, CritChanceBase = 6.7, AttackRateBase = 1.25, Range = 120, }, @@ -47,6 +52,7 @@ itemBases["Bone Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 15, PhysicalMax = 45, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 120, }, req = { level = 23, dex = 80, }, @@ -55,6 +61,7 @@ itemBases["Royal Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(20-24)% increased Elemental Damage with Attack Skills", implicitModTypes = { { "elemental_damage", "damage", "elemental", "attack" }, }, weapon = { PhysicalMin = 14, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.45, Range = 120, }, @@ -64,6 +71,7 @@ itemBases["Death Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(30-50)% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, @@ -73,6 +81,7 @@ itemBases["Reflex Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, weapon = { PhysicalMin = 37, PhysicalMax = 56, CritChanceBase = 5.5, AttackRateBase = 1.4, Range = 120, }, @@ -82,6 +91,7 @@ itemBases["Grove Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 20, PhysicalMax = 61, CritChanceBase = 5, AttackRateBase = 1.5, Range = 120, }, req = { level = 35, dex = 116, }, @@ -90,6 +100,7 @@ itemBases["Decurve Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 24, PhysicalMax = 96, CritChanceBase = 6, AttackRateBase = 1.25, Range = 120, }, req = { level = 38, dex = 125, }, @@ -98,6 +109,7 @@ itemBases["Compound Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 37, PhysicalMax = 76, CritChanceBase = 6, AttackRateBase = 1.3, Range = 120, }, req = { level = 41, dex = 134, }, @@ -106,6 +118,7 @@ itemBases["Sniper Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "+(15-25)% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 32, PhysicalMax = 96, CritChanceBase = 6.7, AttackRateBase = 1.25, Range = 120, }, @@ -115,6 +128,7 @@ itemBases["Ivory Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 29, PhysicalMax = 86, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 120, }, req = { level = 47, dex = 152, }, @@ -123,6 +137,7 @@ itemBases["Highborn Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(20-24)% increased Elemental Damage with Attack Skills", implicitModTypes = { { "elemental_damage", "damage", "elemental", "attack" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 94, CritChanceBase = 5, AttackRateBase = 1.45, Range = 120, }, @@ -132,6 +147,7 @@ itemBases["Decimation Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(30-50)% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 44, PhysicalMax = 116, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, @@ -141,6 +157,7 @@ itemBases["Steelwood Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, weapon = { PhysicalMin = 58, PhysicalMax = 86, CritChanceBase = 5.5, AttackRateBase = 1.4, Range = 120, }, @@ -150,6 +167,7 @@ itemBases["Thicket Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 32, PhysicalMax = 96, CritChanceBase = 5, AttackRateBase = 1.5, Range = 120, }, req = { level = 56, dex = 179, }, @@ -158,6 +176,7 @@ itemBases["Citadel Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 36, PhysicalMax = 144, CritChanceBase = 6, AttackRateBase = 1.25, Range = 120, }, req = { level = 58, dex = 185, }, @@ -166,6 +185,7 @@ itemBases["Ranger Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 56, PhysicalMax = 117, CritChanceBase = 6, AttackRateBase = 1.3, Range = 120, }, req = { level = 60, dex = 212, }, @@ -174,6 +194,7 @@ itemBases["Assassin Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "+(15-25)% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 43, PhysicalMax = 130, CritChanceBase = 6.7, AttackRateBase = 1.25, Range = 120, }, @@ -183,6 +204,7 @@ itemBases["Spine Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 38, PhysicalMax = 115, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 120, }, req = { level = 64, dex = 212, }, @@ -191,6 +213,7 @@ itemBases["Imperial Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(20-24)% increased Elemental Damage with Attack Skills", implicitModTypes = { { "elemental_damage", "damage", "elemental", "attack" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 117, CritChanceBase = 5, AttackRateBase = 1.45, Range = 120, }, @@ -200,6 +223,7 @@ itemBases["Harbinger Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "(30-50)% increased Critical Strike Chance", implicitModTypes = { { "attack", "critical" }, }, weapon = { PhysicalMin = 50, PhysicalMax = 133, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, @@ -209,6 +233,7 @@ itemBases["Maraketh Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "10% increased Movement Speed", implicitModTypes = { { "speed" }, }, weapon = { PhysicalMin = 61, PhysicalMax = 92, CritChanceBase = 5.5, AttackRateBase = 1.4, Range = 120, }, @@ -218,6 +243,7 @@ itemBases["Hedron Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, default = true, not_for_sale = true, ranged = true, weapon = true, experimental_base = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "Adds (40-48) to (60-72) Fire Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, weapon = { PhysicalMin = 9, PhysicalMax = 13, CritChanceBase = 5.5, AttackRateBase = 1.3, Range = 120, }, @@ -227,6 +253,7 @@ itemBases["Foundry Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, default = true, not_for_sale = true, ranged = true, weapon = true, experimental_base = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "Adds (70-84) to (110-124) Fire Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 20, CritChanceBase = 5.5, AttackRateBase = 1.3, Range = 120, }, @@ -236,6 +263,7 @@ itemBases["Solarine Bow"] = { type = "Bow", socketLimit = 6, tags = { two_hand_weapon = true, default = true, not_for_sale = true, ranged = true, weapon = true, experimental_base = true, twohand = true, bow = true, }, + influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, implicit = "Adds (105-116) to (160-172) Fire Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, weapon = { PhysicalMin = 16, PhysicalMax = 24, CritChanceBase = 5.5, AttackRateBase = 1.3, Range = 120, }, diff --git a/src/Data/Bases/claw.lua b/src/Data/Bases/claw.lua index 4c90def88d..b8b5d0b898 100644 --- a/src/Data/Bases/claw.lua +++ b/src/Data/Bases/claw.lua @@ -6,6 +6,7 @@ itemBases["Nailed Fist"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 3 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 4, PhysicalMax = 11, CritChanceBase = 6.2, AttackRateBase = 1.6, Range = 11, }, @@ -15,6 +16,7 @@ itemBases["Sharktooth Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 6 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 6, PhysicalMax = 17, CritChanceBase = 6.5, AttackRateBase = 1.5, Range = 11, }, @@ -24,6 +26,7 @@ itemBases["Awl"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 7 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 7, PhysicalMax = 23, CritChanceBase = 6.3, AttackRateBase = 1.55, Range = 11, }, @@ -33,6 +36,7 @@ itemBases["Cat's Paw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 8 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 22, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -42,6 +46,7 @@ itemBases["Blinder"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 12 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 31, CritChanceBase = 6.3, AttackRateBase = 1.55, Range = 11, }, @@ -51,6 +56,7 @@ itemBases["Timeworn Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 19 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 16, PhysicalMax = 43, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 11, }, @@ -60,6 +66,7 @@ itemBases["Sparkling Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 15 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 14, PhysicalMax = 38, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -69,6 +76,7 @@ itemBases["Fright Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 20 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -78,6 +86,7 @@ itemBases["Double Claw"] = { type = "Claw", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 15 Life per Enemy Hit\nGrants 6 Mana per Enemy Hit", implicitModTypes = { { "resource", "life", "mana", "attack" }, { "resource", "life", "mana", "attack" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 44, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -87,6 +96,7 @@ itemBases["Thresher Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 25 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 53, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 11, }, @@ -96,6 +106,7 @@ itemBases["Gouger"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 24 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 51, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -105,6 +116,7 @@ itemBases["Tiger's Paw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "1.6% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 43, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -114,6 +126,7 @@ itemBases["Gut Ripper"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 44 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 53, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -123,6 +136,7 @@ itemBases["Prehistoric Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "2% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 26, PhysicalMax = 68, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 11, }, @@ -132,6 +146,7 @@ itemBases["Noble Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 40 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 56, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -141,6 +156,7 @@ itemBases["Eagle Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "2% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 17, PhysicalMax = 69, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -150,6 +166,7 @@ itemBases["Twin Claw"] = { type = "Claw", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 28 Life per Enemy Hit\nGrants 10 Mana per Enemy Hit", implicitModTypes = { { "resource", "life", "mana", "attack" }, { "resource", "life", "mana", "attack" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 64, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -159,6 +176,7 @@ itemBases["Great White Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 46 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 78, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 11, }, @@ -168,6 +186,7 @@ itemBases["Throat Stabber"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 40 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 73, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -177,6 +196,7 @@ itemBases["Hellion's Paw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "1.6% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 55, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -186,6 +206,7 @@ itemBases["Eye Gouger"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 50 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 26, PhysicalMax = 68, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -195,6 +216,7 @@ itemBases["Vaal Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "2% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 76, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 11, }, @@ -204,6 +226,7 @@ itemBases["Imperial Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 46 Life per Enemy Hit", implicitModTypes = { { "resource", "life", "attack" }, }, weapon = { PhysicalMin = 25, PhysicalMax = 65, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -213,6 +236,7 @@ itemBases["Terror Claw"] = { type = "Claw", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "2% of Physical Attack Damage Leeched as Life", implicitModTypes = { { "resource", "life", "physical", "attack" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 71, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -222,6 +246,7 @@ itemBases["Gemini Claw"] = { type = "Claw", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, default = true, weapon = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Grants 38 Life per Enemy Hit\nGrants 14 Mana per Enemy Hit", implicitModTypes = { { "resource", "life", "mana", "attack" }, { "resource", "life", "mana", "attack" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 68, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 11, }, @@ -231,6 +256,7 @@ itemBases["Shadow Fangs"] = { type = "Claw", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, default = true, experimental_base = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Adds (23-33) to (45-60) Chaos Damage", implicitModTypes = { { "chaos_damage", "damage", "chaos", "attack" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 24, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -240,6 +266,7 @@ itemBases["Malign Fangs"] = { type = "Claw", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, default = true, experimental_base = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Adds (38-48) to (70-90) Chaos Damage", implicitModTypes = { { "chaos_damage", "damage", "chaos", "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 37, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -249,6 +276,7 @@ itemBases["Void Fangs"] = { type = "Claw", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, default = true, experimental_base = true, one_hand_weapon = true, claw = true, }, + influenceTags = { shaper = "claw_shaper", elder = "claw_elder", adjudicator = "claw_adjudicator", basilisk = "claw_basilisk", crusader = "claw_crusader", eyrie = "claw_eyrie", cleansing = "claw_cleansing", tangle = "claw_tangle" }, implicit = "Adds (40-55) to (80-98) Chaos Damage", implicitModTypes = { { "chaos_damage", "damage", "chaos", "attack" }, }, weapon = { PhysicalMin = 22, PhysicalMax = 41, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, diff --git a/src/Data/Bases/dagger.lua b/src/Data/Bases/dagger.lua index bf42dd9e85..ce1e804d64 100644 --- a/src/Data/Bases/dagger.lua +++ b/src/Data/Bases/dagger.lua @@ -6,6 +6,7 @@ itemBases["Glass Shank"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 6, AttackRateBase = 1.5, Range = 10, }, @@ -15,6 +16,7 @@ itemBases["Skinning Knife"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 4, PhysicalMax = 17, CritChanceBase = 6, AttackRateBase = 1.45, Range = 10, }, @@ -24,6 +26,7 @@ itemBases["Stiletto"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 7, PhysicalMax = 27, CritChanceBase = 6.1, AttackRateBase = 1.5, Range = 10, }, @@ -33,6 +36,7 @@ itemBases["Prong Dagger"] = { type = "Dagger", socketLimit = 3, tags = { maraketh = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "4% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 14, PhysicalMax = 54, CritChanceBase = 6.2, AttackRateBase = 1.35, Range = 10, }, @@ -42,6 +46,7 @@ itemBases["Flaying Knife"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 45, CritChanceBase = 6, AttackRateBase = 1.4, Range = 10, }, @@ -51,6 +56,7 @@ itemBases["Poignard"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 52, CritChanceBase = 6.1, AttackRateBase = 1.5, Range = 10, }, @@ -60,6 +66,7 @@ itemBases["Trisula"] = { type = "Dagger", socketLimit = 3, tags = { maraketh = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "4% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 6.5, AttackRateBase = 1.35, Range = 10, }, @@ -69,6 +76,7 @@ itemBases["Gutting Knife"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 76, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 10, }, @@ -78,6 +86,7 @@ itemBases["Ambusher"] = { type = "Dagger", socketLimit = 3, tags = { onehand = true, one_hand_weapon = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 6.1, AttackRateBase = 1.5, Range = 10, }, @@ -87,6 +96,7 @@ itemBases["Sai"] = { type = "Dagger", socketLimit = 3, tags = { maraketh = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "6% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 22, PhysicalMax = 88, CritChanceBase = 6.2, AttackRateBase = 1.35, Range = 10, }, @@ -96,6 +106,7 @@ itemBases["Hollowpoint Dagger"] = { type = "Dagger", socketLimit = 3, tags = { weapon = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, experimental_base = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -105,6 +116,7 @@ itemBases["Pressurised Dagger"] = { type = "Dagger", socketLimit = 3, tags = { weapon = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, experimental_base = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, weapon = { PhysicalMin = 18, PhysicalMax = 71, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -114,6 +126,7 @@ itemBases["Pneumatic Dagger"] = { type = "Dagger", socketLimit = 3, tags = { weapon = true, one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, experimental_base = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -124,6 +137,7 @@ itemBases["Ethereal Blade"] = { hidden = true, socketLimit = 3, tags = { one_hand_weapon = true, onehand = true, not_for_sale = true, dagger = true, weapon = true, attack_dagger = true, default = true, }, + influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 4, PhysicalMax = 8, CritChanceBase = 6, AttackRateBase = 1.5, Range = 10, }, req = { dex = 9, int = 6, }, @@ -133,7 +147,8 @@ itemBases["Carving Knife"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 3, PhysicalMax = 26, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -143,7 +158,8 @@ itemBases["Boot Knife"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 8, PhysicalMax = 34, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -153,7 +169,8 @@ itemBases["Copper Kris"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 10, }, @@ -163,7 +180,8 @@ itemBases["Skean"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 43, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -173,7 +191,8 @@ itemBases["Imp Dagger"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 10, }, @@ -183,7 +202,8 @@ itemBases["Butcher Knife"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 7, PhysicalMax = 62, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -193,7 +213,8 @@ itemBases["Boot Blade"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -203,7 +224,8 @@ itemBases["Golden Kris"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 75, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 10, }, @@ -213,7 +235,8 @@ itemBases["Royal Skean"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 16, PhysicalMax = 64, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -223,7 +246,8 @@ itemBases["Fiend Dagger"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 22, PhysicalMax = 87, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 10, }, @@ -233,7 +257,8 @@ itemBases["Slaughter Knife"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 10, PhysicalMax = 86, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -243,7 +268,8 @@ itemBases["Ezomyte Dagger"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { top_tier_base_item_type = true, onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, top_tier_base_item_type = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 6.3, AttackRateBase = 1.4, Range = 10, }, @@ -253,7 +279,8 @@ itemBases["Platinum Kris"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { top_tier_base_item_type = true, onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, top_tier_base_item_type = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 95, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 10, }, @@ -263,7 +290,8 @@ itemBases["Imperial Skean"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { top_tier_base_item_type = true, onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, top_tier_base_item_type = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 6.3, AttackRateBase = 1.5, Range = 10, }, @@ -273,7 +301,8 @@ itemBases["Demon Dagger"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { top_tier_base_item_type = true, onehand = true, rune_dagger = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, top_tier_base_item_type = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 10, }, @@ -283,7 +312,8 @@ itemBases["Flickerflame Blade"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { weapon = true, rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + tags = { weapon = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 10 Flame Dash when you use a Socketed Skill", implicitModTypes = { { }, }, weapon = { PhysicalMin = 12, PhysicalMax = 47, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -293,7 +323,8 @@ itemBases["Flashfire Blade"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { weapon = true, rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + tags = { weapon = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 20 Flame Dash when you use a Socketed Skill", implicitModTypes = { { }, }, weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, @@ -303,7 +334,8 @@ itemBases["Infernal Blade"] = { type = "Dagger", subType = "Rune", socketLimit = 3, - tags = { weapon = true, rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + tags = { weapon = true, onehand = true, not_for_sale = true, one_hand_weapon = true, experimental_base = true, dagger = true, default = true, }, + influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 30 Flame Dash when you use a Socketed Skill", implicitModTypes = { { }, }, weapon = { PhysicalMin = 21, PhysicalMax = 85, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 10, }, diff --git a/src/Data/Bases/gloves.lua b/src/Data/Bases/gloves.lua index 28bb91dedd..12cbd38a4a 100644 --- a/src/Data/Bases/gloves.lua +++ b/src/Data/Bases/gloves.lua @@ -8,6 +8,7 @@ itemBases["Iron Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 6, ArmourBaseMax = 9, }, req = { str = 6, }, @@ -17,6 +18,7 @@ itemBases["Plated Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 39, ArmourBaseMax = 50, }, req = { level = 11, str = 20, }, @@ -26,6 +28,7 @@ itemBases["Bronze Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 77, ArmourBaseMax = 96, }, req = { level = 23, str = 36, }, @@ -35,6 +38,7 @@ itemBases["Steel Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 116, ArmourBaseMax = 127, }, req = { level = 35, str = 52, }, @@ -44,6 +48,7 @@ itemBases["Antique Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 129, ArmourBaseMax = 154, }, req = { level = 39, str = 58, }, @@ -53,6 +58,7 @@ itemBases["Ancient Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 154, ArmourBaseMax = 173, }, req = { level = 47, str = 68, }, @@ -62,6 +68,7 @@ itemBases["Goliath Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 174, ArmourBaseMax = 200, }, req = { level = 53, str = 77, }, @@ -71,6 +78,7 @@ itemBases["Vaal Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 232, ArmourBaseMax = 266, }, req = { level = 63, str = 100, }, @@ -80,6 +88,7 @@ itemBases["Titan Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 242, ArmourBaseMax = 278, }, req = { level = 69, str = 98, }, @@ -89,6 +98,7 @@ itemBases["Taxing Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "Exerted Attacks deal (25-30)% increased Damage\nWarcry Skills have +2 seconds to Cooldown", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { ArmourBaseMin = 35, ArmourBaseMax = 41, }, @@ -99,6 +109,7 @@ itemBases["Gruelling Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "Exerted Attacks deal (30-40)% increased Damage\nWarcry Skills have +2 seconds to Cooldown", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { ArmourBaseMin = 132, ArmourBaseMax = 152, }, @@ -109,6 +120,7 @@ itemBases["Debilitation Gauntlets"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, not_for_sale = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "Exerted Attacks deal (40-50)% increased Damage\nWarcry Skills have +2 seconds to Cooldown", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { ArmourBaseMin = 236, ArmourBaseMax = 271, }, @@ -119,6 +131,7 @@ itemBases["Spiked Gloves"] = { subType = "Armour", socketLimit = 4, tags = { gloves = true, str_armour = true, not_for_sale = true, atlas_base_type = true, armour = true, glovesatlasstr = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "(16-20)% increased Melee Damage", implicitModTypes = { { "damage", "attack" }, }, armour = { ArmourBaseMin = 220, ArmourBaseMax = 253, }, @@ -130,6 +143,7 @@ itemBases["Rawhide Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 13, EvasionBaseMax = 18, }, req = { dex = 9, }, @@ -139,6 +153,7 @@ itemBases["Goathide Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 32, EvasionBaseMax = 42, }, req = { level = 9, dex = 17, }, @@ -148,6 +163,7 @@ itemBases["Deerskin Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 71, EvasionBaseMax = 88, }, req = { level = 21, dex = 33, }, @@ -157,6 +173,7 @@ itemBases["Nubuck Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 109, EvasionBaseMax = 122, }, req = { level = 33, dex = 50, }, @@ -166,6 +183,7 @@ itemBases["Eelskin Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 125, EvasionBaseMax = 148, }, req = { level = 38, dex = 56, }, @@ -175,6 +193,7 @@ itemBases["Sharkskin Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 148, EvasionBaseMax = 163, }, req = { level = 45, dex = 66, }, @@ -184,6 +203,7 @@ itemBases["Shagreen Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 177, EvasionBaseMax = 212, }, req = { level = 54, dex = 78, }, @@ -193,6 +213,7 @@ itemBases["Stealth Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 231, EvasionBaseMax = 265, }, req = { level = 62, dex = 97, }, @@ -202,6 +223,7 @@ itemBases["Slink Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, dex_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 242, EvasionBaseMax = 278, }, req = { level = 70, dex = 95, }, @@ -211,6 +233,7 @@ itemBases["Gauche Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { gloves = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "25% reduced Attack Damage with Main Hand\n(40-50)% increased Attack Damage with Off Hand", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 35, EvasionBaseMax = 41, }, @@ -221,6 +244,7 @@ itemBases["Southswing Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { gloves = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "25% reduced Attack Damage with Main Hand\n(40-50)% increased Attack Damage with Off Hand", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 132, EvasionBaseMax = 152, }, @@ -231,6 +255,7 @@ itemBases["Sinistral Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { gloves = true, dex_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "25% reduced Attack Damage with Main Hand\n(40-50)% increased Attack Damage with Off Hand", implicitModTypes = { { "attack" }, { "attack" }, }, armour = { EvasionBaseMin = 236, EvasionBaseMax = 271, }, @@ -241,6 +266,7 @@ itemBases["Gripped Gloves"] = { subType = "Evasion", socketLimit = 4, tags = { glovesatlasdex = true, gloves = true, not_for_sale = true, atlas_base_type = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "(14-18)% increased Projectile Attack Damage", implicitModTypes = { { "damage", "attack" }, }, armour = { EvasionBaseMin = 220, EvasionBaseMax = 253, }, @@ -252,6 +278,7 @@ itemBases["Wool Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 5, EnergyShieldBaseMax = 7, }, req = { int = 9, }, @@ -261,6 +288,7 @@ itemBases["Velvet Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 10, EnergyShieldBaseMax = 13, }, req = { level = 12, int = 21, }, @@ -270,6 +298,7 @@ itemBases["Silk Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 18, EnergyShieldBaseMax = 23, }, req = { level = 25, int = 39, }, @@ -279,6 +308,7 @@ itemBases["Embroidered Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 36, int = 54, }, @@ -288,6 +318,7 @@ itemBases["Satin Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 28, EnergyShieldBaseMax = 33, }, req = { level = 41, int = 60, }, @@ -297,6 +328,7 @@ itemBases["Samite Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 37, }, req = { level = 47, int = 68, }, @@ -306,6 +338,7 @@ itemBases["Conjurer Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 37, EnergyShieldBaseMax = 44, }, req = { level = 55, int = 79, }, @@ -315,6 +348,7 @@ itemBases["Arcanist Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 45, EnergyShieldBaseMax = 52, }, req = { level = 60, int = 95, }, @@ -324,6 +358,7 @@ itemBases["Sorcerer Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 49, EnergyShieldBaseMax = 57, }, req = { level = 69, int = 97, }, @@ -333,6 +368,7 @@ itemBases["Leyline Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "30% reduced maximum Mana\n(25-30)% chance when you pay a Skill's Cost to gain that much Mana", implicitModTypes = { { "resource", "mana" }, { "resource", "mana" }, }, armour = { EnergyShieldBaseMin = 9, EnergyShieldBaseMax = 10, }, @@ -343,6 +379,7 @@ itemBases["Aetherwind Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "30% reduced maximum Mana\n(25-30)% chance when you pay a Skill's Cost to gain that much Mana", implicitModTypes = { { "resource", "mana" }, { "resource", "mana" }, }, armour = { EnergyShieldBaseMin = 28, EnergyShieldBaseMax = 32, }, @@ -353,6 +390,7 @@ itemBases["Nexus Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, int_armour = true, armour = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "30% reduced maximum Mana\n(25-30)% chance when you pay a Skill's Cost to gain that much Mana", implicitModTypes = { { "resource", "mana" }, { "resource", "mana" }, }, armour = { EnergyShieldBaseMin = 47, EnergyShieldBaseMax = 54, }, @@ -363,6 +401,7 @@ itemBases["Fingerless Silk Gloves"] = { subType = "Energy Shield", socketLimit = 4, tags = { gloves = true, int_armour = true, not_for_sale = true, atlas_base_type = true, armour = true, glovesatlasint = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "(12-16)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { EnergyShieldBaseMin = 45, EnergyShieldBaseMax = 52, }, @@ -374,6 +413,7 @@ itemBases["Fishscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 9, ArmourBaseMax = 12, EvasionBaseMin = 9, EvasionBaseMax = 12, }, req = { str = 5, dex = 5, }, @@ -383,6 +423,7 @@ itemBases["Ironscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 28, ArmourBaseMax = 37, EvasionBaseMin = 28, EvasionBaseMax = 37, }, req = { level = 15, str = 14, dex = 14, }, @@ -392,6 +433,7 @@ itemBases["Bronzescale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 50, ArmourBaseMax = 62, EvasionBaseMin = 50, EvasionBaseMax = 62, }, req = { level = 27, str = 22, dex = 22, }, @@ -401,6 +443,7 @@ itemBases["Steelscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 65, ArmourBaseMax = 75, EvasionBaseMin = 65, EvasionBaseMax = 75, }, req = { level = 36, str = 29, dex = 29, }, @@ -410,6 +453,7 @@ itemBases["Serpentscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 78, ArmourBaseMax = 87, EvasionBaseMin = 78, EvasionBaseMax = 87, }, req = { level = 43, str = 34, dex = 34, }, @@ -419,6 +463,7 @@ itemBases["Wyrmscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 88, ArmourBaseMax = 104, EvasionBaseMin = 88, EvasionBaseMax = 104, }, req = { level = 49, str = 38, dex = 38, }, @@ -428,6 +473,7 @@ itemBases["Hydrascale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 106, ArmourBaseMax = 122, EvasionBaseMin = 106, EvasionBaseMax = 122, }, req = { level = 59, str = 45, dex = 45, }, @@ -437,6 +483,7 @@ itemBases["Dragonscale Gauntlets"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 121, ArmourBaseMax = 139, EvasionBaseMin = 121, EvasionBaseMax = 139, }, req = { level = 67, str = 51, dex = 51, }, @@ -447,6 +494,7 @@ itemBases["Chain Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 14, ArmourBaseMax = 20, EnergyShieldBaseMin = 4, EnergyShieldBaseMax = 6, }, req = { level = 7, str = 8, int = 8, }, @@ -456,6 +504,7 @@ itemBases["Ringmail Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 35, ArmourBaseMax = 46, EnergyShieldBaseMin = 8, EnergyShieldBaseMax = 10, }, req = { level = 19, str = 16, int = 16, }, @@ -465,6 +514,7 @@ itemBases["Mesh Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 58, ArmourBaseMax = 67, EnergyShieldBaseMin = 12, EnergyShieldBaseMax = 14, }, req = { level = 32, str = 26, int = 26, }, @@ -474,6 +524,7 @@ itemBases["Riveted Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 67, ArmourBaseMax = 77, EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 16, }, req = { level = 37, str = 29, int = 29, }, @@ -483,6 +534,7 @@ itemBases["Zealot Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 78, ArmourBaseMax = 92, EnergyShieldBaseMin = 16, EnergyShieldBaseMax = 19, }, req = { level = 43, str = 34, int = 34, }, @@ -492,6 +544,7 @@ itemBases["Soldier Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 92, ArmourBaseMax = 103, EnergyShieldBaseMin = 19, EnergyShieldBaseMax = 21, }, req = { level = 51, str = 40, int = 40, }, @@ -501,6 +554,7 @@ itemBases["Legion Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 103, ArmourBaseMax = 121, EnergyShieldBaseMin = 21, EnergyShieldBaseMax = 25, }, req = { level = 57, str = 44, int = 44, }, @@ -510,6 +564,7 @@ itemBases["Crusader Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 121, ArmourBaseMax = 139, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 66, str = 51, int = 51, }, @@ -519,6 +574,7 @@ itemBases["Apothecary's Gloves"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { gloves = true, str_int_armour = true, not_for_sale = true, atlas_base_type = true, armour = true, glovesatlasstrint = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "(14-18)% increased Damage over Time", implicitModTypes = { { "damage" }, }, armour = { ArmourBaseMin = 108, ArmourBaseMax = 124, EnergyShieldBaseMin = 29, EnergyShieldBaseMax = 33, }, @@ -530,6 +586,7 @@ itemBases["Wrapped Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 11, EvasionBaseMax = 15, EnergyShieldBaseMin = 3, EnergyShieldBaseMax = 5, }, req = { level = 5, dex = 6, int = 6, }, @@ -539,6 +596,7 @@ itemBases["Strapped Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 30, EvasionBaseMax = 39, EnergyShieldBaseMin = 7, EnergyShieldBaseMax = 9, }, req = { level = 16, dex = 14, int = 14, }, @@ -548,6 +606,7 @@ itemBases["Clasped Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 57, EvasionBaseMax = 65, EnergyShieldBaseMin = 12, EnergyShieldBaseMax = 14, }, req = { level = 31, dex = 25, int = 25, }, @@ -557,6 +616,7 @@ itemBases["Trapper Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 65, EvasionBaseMax = 77, EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 16, }, req = { level = 36, dex = 29, int = 29, }, @@ -566,6 +626,7 @@ itemBases["Ambush Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 81, EvasionBaseMax = 91, EnergyShieldBaseMin = 17, EnergyShieldBaseMax = 19, }, req = { level = 45, dex = 35, int = 35, }, @@ -575,6 +636,7 @@ itemBases["Carnal Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { dex_int_armour = true, armour = true, gloves = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 90, EvasionBaseMax = 101, EnergyShieldBaseMin = 19, EnergyShieldBaseMax = 21, }, req = { level = 50, dex = 39, int = 39, }, @@ -584,6 +646,7 @@ itemBases["Assassin's Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 104, EvasionBaseMax = 123, EnergyShieldBaseMin = 21, EnergyShieldBaseMax = 25, }, req = { level = 58, dex = 45, int = 45, }, @@ -593,6 +656,7 @@ itemBases["Murder Mitts"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { gloves = true, top_tier_base_item_type = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 121, EvasionBaseMax = 139, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 67, dex = 51, int = 51, }, @@ -603,6 +667,7 @@ itemBases["Runic Gloves"] = { subType = "Ward", socketLimit = 4, tags = { gloves = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 24, WardBaseMax = 28, }, req = { level = 24, str = 16, dex = 16, int = 16, }, @@ -612,6 +677,7 @@ itemBases["Runic Gages"] = { subType = "Ward", socketLimit = 4, tags = { gloves = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 62, WardBaseMax = 71, }, req = { level = 48, str = 31, dex = 31, int = 31, }, @@ -621,6 +687,7 @@ itemBases["Runic Gauntlets"] = { subType = "Ward", socketLimit = 4, tags = { gloves = true, not_for_sale = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 102, WardBaseMax = 117, }, req = { level = 69, str = 38, dex = 38, int = 38, }, @@ -630,6 +697,7 @@ itemBases["Golden Bracers"] = { type = "Gloves", socketLimit = 4, tags = { gloves = true, not_for_sale = true, armour = true, demigods = true, default = true, }, + influenceTags = { shaper = "gloves_shaper", elder = "gloves_elder", adjudicator = "gloves_adjudicator", basilisk = "gloves_basilisk", crusader = "gloves_crusader", eyrie = "gloves_eyrie", cleansing = "gloves_cleansing", tangle = "gloves_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { }, diff --git a/src/Data/Bases/helmet.lua b/src/Data/Bases/helmet.lua index 35ffe1f721..894e9f37d0 100644 --- a/src/Data/Bases/helmet.lua +++ b/src/Data/Bases/helmet.lua @@ -8,6 +8,7 @@ itemBases["Iron Hat"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 9, ArmourBaseMax = 13, }, req = { str = 9, }, @@ -17,6 +18,7 @@ itemBases["Cone Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 38, ArmourBaseMax = 50, }, req = { level = 7, str = 21, }, @@ -26,6 +28,7 @@ itemBases["Barbute Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 92, ArmourBaseMax = 115, }, req = { level = 18, str = 42, }, @@ -35,6 +38,7 @@ itemBases["Close Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 130, ArmourBaseMax = 150, }, req = { level = 26, str = 58, }, @@ -44,6 +48,7 @@ itemBases["Gladiator Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 174, ArmourBaseMax = 195, }, req = { level = 35, str = 75, }, @@ -53,6 +58,7 @@ itemBases["Reaver Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 198, ArmourBaseMax = 233, }, req = { level = 40, str = 85, }, @@ -62,6 +68,7 @@ itemBases["Siege Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 237, ArmourBaseMax = 272, }, req = { level = 48, str = 101, }, @@ -71,6 +78,7 @@ itemBases["Samnite Helmet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 276, ArmourBaseMax = 325, }, req = { level = 55, str = 114, }, @@ -80,6 +88,7 @@ itemBases["Ezomyte Burgonet"] = { subType = "Armour", socketLimit = 4, tags = { helmet = true, armour = true, str_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 346, ArmourBaseMax = 381, }, req = { level = 60, str = 138, }, @@ -89,6 +98,7 @@ itemBases["Royal Burgonet"] = { subType = "Armour", socketLimit = 4, tags = { str_armour = true, helmet = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 377, ArmourBaseMax = 434, }, req = { level = 65, str = 148, }, @@ -98,6 +108,7 @@ itemBases["Eternal Burgonet"] = { subType = "Armour", socketLimit = 4, tags = { str_armour = true, helmet = true, armour = true, top_tier_base_item_type = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 373, ArmourBaseMax = 429, }, req = { level = 69, str = 138, }, @@ -108,6 +119,7 @@ itemBases["Leather Cap"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 19, EvasionBaseMax = 27, }, req = { dex = 13, }, @@ -117,6 +129,7 @@ itemBases["Tricorne"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 53, EvasionBaseMax = 69, }, req = { level = 10, dex = 27, }, @@ -126,6 +139,7 @@ itemBases["Leather Hood"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 101, EvasionBaseMax = 127, }, req = { level = 20, dex = 46, }, @@ -135,6 +149,7 @@ itemBases["Wolf Pelt"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 150, EvasionBaseMax = 172, }, req = { level = 30, dex = 66, }, @@ -144,6 +159,7 @@ itemBases["Hunter Hood"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 203, EvasionBaseMax = 227, }, req = { level = 41, dex = 87, }, @@ -153,6 +169,7 @@ itemBases["Noble Tricorne"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 232, EvasionBaseMax = 266, }, req = { level = 47, dex = 99, }, @@ -162,6 +179,7 @@ itemBases["Ursine Pelt"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 276, EvasionBaseMax = 325, }, req = { level = 55, dex = 114, }, @@ -171,6 +189,7 @@ itemBases["Silken Hood"] = { subType = "Evasion", socketLimit = 4, tags = { helmet = true, armour = true, dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 346, EvasionBaseMax = 381, }, req = { level = 60, dex = 138, }, @@ -180,6 +199,7 @@ itemBases["Sinner Tricorne"] = { subType = "Evasion", socketLimit = 4, tags = { top_tier_base_item_type = true, dex_armour = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 369, EvasionBaseMax = 425, }, req = { level = 64, dex = 138, }, @@ -189,6 +209,7 @@ itemBases["Lion Pelt"] = { subType = "Evasion", socketLimit = 4, tags = { top_tier_base_item_type = true, dex_armour = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 380, EvasionBaseMax = 437, }, req = { level = 70, dex = 150, }, @@ -199,6 +220,7 @@ itemBases["Vine Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 7, EnergyShieldBaseMax = 10, }, req = { int = 13, }, @@ -208,6 +230,7 @@ itemBases["Iron Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 12, EnergyShieldBaseMax = 15, }, req = { level = 8, int = 23, }, @@ -217,6 +240,7 @@ itemBases["Torture Cage"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 20, EnergyShieldBaseMax = 25, }, req = { level = 17, int = 40, }, @@ -226,6 +250,7 @@ itemBases["Tribal Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 28, EnergyShieldBaseMax = 33, }, req = { level = 26, int = 58, }, @@ -235,6 +260,7 @@ itemBases["Bone Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 36, EnergyShieldBaseMax = 40, }, req = { level = 34, int = 73, }, @@ -244,6 +270,7 @@ itemBases["Lunaris Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 41, EnergyShieldBaseMax = 48, }, req = { level = 39, int = 83, }, @@ -253,6 +280,7 @@ itemBases["Steel Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 49, EnergyShieldBaseMax = 55, }, req = { level = 48, int = 101, }, @@ -262,6 +290,7 @@ itemBases["Necromancer Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 55, EnergyShieldBaseMax = 64, }, req = { level = 54, int = 112, }, @@ -271,6 +300,7 @@ itemBases["Solaris Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 60, EnergyShieldBaseMax = 68, }, req = { level = 59, int = 122, }, @@ -280,6 +310,7 @@ itemBases["Mind Cage"] = { subType = "Energy Shield", socketLimit = 4, tags = { top_tier_base_item_type = true, int_armour = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 73, EnergyShieldBaseMax = 84, }, req = { level = 65, int = 138, }, @@ -289,6 +320,7 @@ itemBases["Hubris Circlet"] = { subType = "Energy Shield", socketLimit = 4, tags = { top_tier_base_item_type = true, int_armour = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EnergyShieldBaseMin = 80, EnergyShieldBaseMax = 92, }, req = { level = 69, int = 154, }, @@ -299,6 +331,7 @@ itemBases["Battered Helm"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 13, ArmourBaseMax = 18, EvasionBaseMin = 13, EvasionBaseMax = 18, }, req = { str = 8, dex = 8, }, @@ -308,6 +341,7 @@ itemBases["Sallet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 37, ArmourBaseMax = 48, EvasionBaseMin = 37, EvasionBaseMax = 48, }, req = { level = 13, str = 18, dex = 18, }, @@ -317,6 +351,7 @@ itemBases["Visored Sallet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 64, ArmourBaseMax = 80, EvasionBaseMin = 64, EvasionBaseMax = 80, }, req = { level = 23, str = 28, dex = 28, }, @@ -326,6 +361,7 @@ itemBases["Gilded Sallet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 90, ArmourBaseMax = 97, EvasionBaseMin = 90, EvasionBaseMax = 97, }, req = { level = 33, str = 38, dex = 38, }, @@ -335,6 +371,7 @@ itemBases["Secutor Helm"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 98, ArmourBaseMax = 116, EvasionBaseMin = 98, EvasionBaseMax = 116, }, req = { level = 36, str = 42, dex = 42, }, @@ -344,6 +381,7 @@ itemBases["Fencer Helm"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 117, ArmourBaseMax = 134, EvasionBaseMin = 117, EvasionBaseMax = 134, }, req = { level = 43, str = 49, dex = 49, }, @@ -353,6 +391,7 @@ itemBases["Lacquered Helmet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 138, ArmourBaseMax = 155, EvasionBaseMin = 138, EvasionBaseMax = 155, }, req = { level = 51, str = 57, dex = 57, }, @@ -362,6 +401,7 @@ itemBases["Fluted Bascinet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { helmet = true, armour = true, str_dex_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 160, ArmourBaseMax = 189, EvasionBaseMin = 160, EvasionBaseMax = 189, }, req = { level = 58, str = 64, dex = 64, }, @@ -371,6 +411,7 @@ itemBases["Pig-Faced Bascinet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 229, ArmourBaseMax = 263, EvasionBaseMin = 159, EvasionBaseMax = 183, }, req = { level = 63, str = 85, dex = 62, }, @@ -380,6 +421,7 @@ itemBases["Nightmare Bascinet"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, top_tier_base_item_type = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 162, ArmourBaseMax = 187, EvasionBaseMin = 233, EvasionBaseMax = 268, }, req = { level = 67, str = 62, dex = 85, }, @@ -389,6 +431,7 @@ itemBases["Sorrow Mask"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "-15% additional Physical Damage Reduction\nYou are Crushed\n+(2-3) to maximum Fortification", implicitModTypes = { { }, { }, { }, }, armour = { ArmourBaseMin = 42, ArmourBaseMax = 49, EvasionBaseMin = 42, EvasionBaseMax = 49, }, @@ -399,6 +442,7 @@ itemBases["Atonement Mask"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "-15% additional Physical Damage Reduction\nYou are Crushed\n+(2-3) to maximum Fortification", implicitModTypes = { { }, { }, { }, }, armour = { ArmourBaseMin = 122, ArmourBaseMax = 140, EvasionBaseMin = 122, EvasionBaseMax = 140, }, @@ -409,6 +453,7 @@ itemBases["Penitent Mask"] = { subType = "Armour/Evasion", socketLimit = 4, tags = { str_dex_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "-15% additional Physical Damage Reduction\nYou are Crushed\n+(2-3) to maximum Fortification", implicitModTypes = { { }, { }, { }, }, armour = { ArmourBaseMin = 185, ArmourBaseMax = 212, EvasionBaseMin = 185, EvasionBaseMax = 212, }, @@ -420,6 +465,7 @@ itemBases["Rusted Coif"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 16, ArmourBaseMax = 22, EnergyShieldBaseMin = 5, EnergyShieldBaseMax = 7, }, req = { level = 5, str = 9, int = 9, }, @@ -429,6 +475,7 @@ itemBases["Soldier Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 34, ArmourBaseMax = 45, EnergyShieldBaseMin = 8, EnergyShieldBaseMax = 11, }, req = { level = 12, str = 16, int = 16, }, @@ -438,6 +485,7 @@ itemBases["Great Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 61, ArmourBaseMax = 76, EnergyShieldBaseMin = 14, EnergyShieldBaseMax = 17, }, req = { level = 22, str = 27, int = 27, }, @@ -447,6 +495,7 @@ itemBases["Crusader Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 85, ArmourBaseMax = 95, EnergyShieldBaseMin = 18, EnergyShieldBaseMax = 20, }, req = { level = 31, str = 36, int = 36, }, @@ -456,6 +505,7 @@ itemBases["Aventail Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 101, ArmourBaseMax = 119, EnergyShieldBaseMin = 21, EnergyShieldBaseMax = 25, }, req = { level = 37, str = 42, int = 42, }, @@ -465,6 +515,7 @@ itemBases["Zealot Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 119, ArmourBaseMax = 137, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 29, }, req = { level = 44, str = 50, int = 50, }, @@ -474,6 +525,7 @@ itemBases["Great Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 143, ArmourBaseMax = 161, EnergyShieldBaseMin = 29, EnergyShieldBaseMax = 33, }, req = { level = 53, str = 59, int = 59, }, @@ -483,6 +535,7 @@ itemBases["Magistrate Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, str_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 160, ArmourBaseMax = 189, EnergyShieldBaseMin = 33, EnergyShieldBaseMax = 39, }, req = { level = 58, str = 64, int = 64, }, @@ -492,6 +545,7 @@ itemBases["Prophet Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 224, ArmourBaseMax = 258, EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 37, }, req = { level = 63, str = 85, int = 62, }, @@ -501,6 +555,7 @@ itemBases["Praetor Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, top_tier_base_item_type = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { ArmourBaseMin = 161, ArmourBaseMax = 185, EnergyShieldBaseMin = 51, EnergyShieldBaseMax = 58, }, req = { level = 68, str = 62, int = 91, }, @@ -510,6 +565,7 @@ itemBases["Imp Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit\n-10% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, { "elemental", "resistance" }, }, armour = { ArmourBaseMin = 42, ArmourBaseMax = 49, EnergyShieldBaseMin = 10, EnergyShieldBaseMax = 12, }, @@ -520,6 +576,7 @@ itemBases["Demon Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit\n-10% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, { "elemental", "resistance" }, }, armour = { ArmourBaseMin = 122, ArmourBaseMax = 140, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 29, }, @@ -530,6 +587,7 @@ itemBases["Archdemon Crown"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, not_for_sale = true, helmet = true, armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit\n-10% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, { "elemental", "resistance" }, }, armour = { ArmourBaseMin = 185, ArmourBaseMax = 212, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 43, }, @@ -540,6 +598,7 @@ itemBases["Bone Helmet"] = { subType = "Armour/Energy Shield", socketLimit = 4, tags = { str_int_armour = true, helmetatlas1 = true, not_for_sale = true, helmet = true, armour = true, atlas_base_type = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Minions deal (15-20)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, armour = { ArmourBaseMin = 197, ArmourBaseMax = 227, EnergyShieldBaseMin = 40, EnergyShieldBaseMax = 46, }, @@ -551,6 +610,7 @@ itemBases["Scare Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 13, EvasionBaseMax = 18, EnergyShieldBaseMin = 4, EnergyShieldBaseMax = 6, }, req = { dex = 8, int = 8, }, @@ -560,6 +620,7 @@ itemBases["Plague Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 29, EvasionBaseMax = 38, EnergyShieldBaseMin = 7, EnergyShieldBaseMax = 10, }, req = { level = 10, dex = 14, int = 14, }, @@ -569,6 +630,7 @@ itemBases["Iron Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 48, EvasionBaseMax = 60, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 14, }, req = { level = 17, dex = 21, int = 21, }, @@ -578,6 +640,7 @@ itemBases["Festival Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 77, EvasionBaseMax = 88, EnergyShieldBaseMin = 17, EnergyShieldBaseMax = 19, }, req = { level = 28, dex = 33, int = 33, }, @@ -587,6 +650,7 @@ itemBases["Golden Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 96, EvasionBaseMax = 103, EnergyShieldBaseMin = 20, EnergyShieldBaseMax = 22, }, req = { level = 35, dex = 40, int = 40, }, @@ -596,6 +660,7 @@ itemBases["Raven Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 104, EvasionBaseMax = 119, EnergyShieldBaseMin = 22, EnergyShieldBaseMax = 25, }, req = { level = 38, dex = 44, int = 44, }, @@ -605,6 +670,7 @@ itemBases["Callous Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 122, EvasionBaseMax = 137, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 28, }, req = { level = 45, dex = 51, int = 51, }, @@ -614,6 +680,7 @@ itemBases["Regicide Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 141, EvasionBaseMax = 158, EnergyShieldBaseMin = 29, EnergyShieldBaseMax = 32, }, req = { level = 52, dex = 58, int = 58, }, @@ -623,6 +690,7 @@ itemBases["Harlequin Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { helmet = true, armour = true, dex_int_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 157, EvasionBaseMax = 185, EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 38, }, req = { level = 57, dex = 64, int = 64, }, @@ -632,6 +700,7 @@ itemBases["Vaal Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { top_tier_base_item_type = true, helmet = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 207, EvasionBaseMax = 239, EnergyShieldBaseMin = 37, EnergyShieldBaseMax = 43, }, req = { level = 62, dex = 79, int = 72, }, @@ -641,6 +710,7 @@ itemBases["Deicide Mask"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { top_tier_base_item_type = true, helmet = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { EvasionBaseMin = 190, EvasionBaseMax = 219, EnergyShieldBaseMin = 47, EnergyShieldBaseMax = 54, }, req = { level = 67, dex = 73, int = 88, }, @@ -650,6 +720,7 @@ itemBases["Gale Crown"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Adds (3-4) to (5-6) Cold Damage\nYour Hits treat Cold Resistance as 10% higher than actual value", implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, { "elemental_damage", "damage", "elemental", "cold" }, }, armour = { EvasionBaseMin = 42, EvasionBaseMax = 49, EnergyShieldBaseMin = 10, EnergyShieldBaseMax = 12, }, @@ -660,6 +731,7 @@ itemBases["Winter Crown"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Adds (15-20) to (28-35) Cold Damage\nYour Hits treat Cold Resistance as 10% higher than actual value", implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, { "elemental_damage", "damage", "elemental", "cold" }, }, armour = { EvasionBaseMin = 122, EvasionBaseMax = 140, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 29, }, @@ -670,6 +742,7 @@ itemBases["Blizzard Crown"] = { subType = "Evasion/Energy Shield", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, default = true, dex_int_armour = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "Adds (75-85) to (115-128) Cold Damage\nYour Hits treat Cold Resistance as 10% higher than actual value", implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, { "elemental_damage", "damage", "elemental", "cold" }, }, armour = { EvasionBaseMin = 185, EvasionBaseMax = 212, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 43, }, @@ -681,6 +754,7 @@ itemBases["Runic Helm"] = { subType = "Ward", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 41, WardBaseMax = 47, }, req = { level = 25, str = 30, dex = 30, int = 30, }, @@ -690,6 +764,7 @@ itemBases["Runic Crest"] = { subType = "Ward", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 97, WardBaseMax = 112, }, req = { level = 49, str = 55, dex = 55, int = 55, }, @@ -699,6 +774,7 @@ itemBases["Runic Crown"] = { subType = "Ward", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, ward_armour = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicitModTypes = { }, armour = { WardBaseMin = 164, WardBaseMax = 189, }, req = { level = 68, str = 66, dex = 66, int = 66, }, @@ -708,6 +784,7 @@ itemBases["Golden Wreath"] = { type = "Helmet", socketLimit = 4, tags = { not_for_sale = true, helmet = true, armour = true, demigods = true, default = true, }, + influenceTags = { shaper = "helmet_shaper", elder = "helmet_elder", adjudicator = "helmet_adjudicator", basilisk = "helmet_basilisk", crusader = "helmet_crusader", eyrie = "helmet_eyrie", cleansing = "helmet_cleansing", tangle = "helmet_tangle" }, implicit = "+(16-24) to all Attributes", implicitModTypes = { { "attribute" }, }, armour = { }, diff --git a/src/Data/Bases/mace.lua b/src/Data/Bases/mace.lua index d1bcadb2a9..f1aa1f55a3 100644 --- a/src/Data/Bases/mace.lua +++ b/src/Data/Bases/mace.lua @@ -6,6 +6,7 @@ itemBases["Driftwood Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 6, PhysicalMax = 8, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -15,6 +16,7 @@ itemBases["Tribal Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 8, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -24,6 +26,7 @@ itemBases["Spiked Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 13, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -33,6 +36,7 @@ itemBases["Stone Hammer"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 15, PhysicalMax = 27, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -42,6 +46,7 @@ itemBases["War Hammer"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 13, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -51,6 +56,7 @@ itemBases["Bladed Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -60,6 +66,7 @@ itemBases["Ceremonial Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 32, PhysicalMax = 40, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, @@ -69,6 +76,7 @@ itemBases["Dream Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 21, PhysicalMax = 43, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -78,6 +86,7 @@ itemBases["Wyrm Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "4% increased Attack Speed", implicitModTypes = { { "attack", "speed" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -87,6 +96,7 @@ itemBases["Petrified Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 31, PhysicalMax = 51, CritChanceBase = 5, AttackRateBase = 1.25, Range = 11, }, @@ -96,6 +106,7 @@ itemBases["Barbed Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 33, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -105,6 +116,7 @@ itemBases["Rock Breaker"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 37, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.15, Range = 11, }, @@ -114,6 +126,7 @@ itemBases["Battle Hammer"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 25, PhysicalMax = 59, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -123,6 +136,7 @@ itemBases["Flanged Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 38, PhysicalMax = 63, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -132,6 +146,7 @@ itemBases["Ornate Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 53, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, @@ -141,6 +156,7 @@ itemBases["Phantom Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 33, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -150,6 +166,7 @@ itemBases["Dragon Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "4% increased Attack Speed", implicitModTypes = { { "attack", "speed" }, }, weapon = { PhysicalMin = 44, PhysicalMax = 66, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -159,6 +176,7 @@ itemBases["Ancestral Club"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 48, PhysicalMax = 80, CritChanceBase = 5, AttackRateBase = 1.25, Range = 11, }, @@ -168,6 +186,7 @@ itemBases["Tenderizer"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 49, PhysicalMax = 62, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -177,6 +196,7 @@ itemBases["Gavel"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 54, PhysicalMax = 101, CritChanceBase = 5, AttackRateBase = 1.15, Range = 11, }, @@ -186,6 +206,7 @@ itemBases["Legion Hammer"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 35, PhysicalMax = 81, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -195,6 +216,7 @@ itemBases["Pernach"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 49, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -204,6 +226,7 @@ itemBases["Auric Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "15% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 65, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, @@ -213,6 +236,7 @@ itemBases["Nightmare Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "10% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 38, PhysicalMax = 80, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -222,6 +246,7 @@ itemBases["Behemoth Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "6% increased Attack Speed", implicitModTypes = { { "attack", "speed" }, }, weapon = { PhysicalMin = 49, PhysicalMax = 74, CritChanceBase = 5, AttackRateBase = 1.35, Range = 11, }, @@ -231,6 +256,7 @@ itemBases["Flare Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon", implicitModTypes = { { }, }, weapon = { PhysicalMin = 20, PhysicalMax = 41, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -240,6 +266,7 @@ itemBases["Crack Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon", implicitModTypes = { { }, }, weapon = { PhysicalMin = 31, PhysicalMax = 64, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -249,6 +276,7 @@ itemBases["Boom Mace"] = { type = "One Handed Mace", socketLimit = 3, tags = { weapon = true, onehand = true, not_for_sale = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "mace_shaper", elder = "mace_elder", adjudicator = "mace_adjudicator", basilisk = "mace_basilisk", crusader = "mace_crusader", eyrie = "mace_eyrie", cleansing = "mace_cleansing", tangle = "mace_tangle" }, implicit = "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon", implicitModTypes = { { }, }, weapon = { PhysicalMin = 39, PhysicalMax = 81, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -259,6 +287,7 @@ itemBases["Driftwood Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "10% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 8, PhysicalMax = 11, CritChanceBase = 6, AttackRateBase = 1.2, Range = 11, }, @@ -268,6 +297,7 @@ itemBases["Darkwood Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "12% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 17, CritChanceBase = 6, AttackRateBase = 1.2, Range = 11, }, @@ -277,6 +307,7 @@ itemBases["Bronze Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "12% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 29, CritChanceBase = 6, AttackRateBase = 1.1, Range = 11, }, @@ -286,6 +317,7 @@ itemBases["Quartz Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "20% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 32, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 11, }, @@ -295,6 +327,7 @@ itemBases["Iron Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "14% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 40, CritChanceBase = 6, AttackRateBase = 1.1, Range = 11, }, @@ -304,6 +337,7 @@ itemBases["Ochre Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "16% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 45, CritChanceBase = 6, AttackRateBase = 1.15, Range = 11, }, @@ -313,6 +347,7 @@ itemBases["Ritual Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "16% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 50, CritChanceBase = 6, AttackRateBase = 1.2, Range = 11, }, @@ -322,6 +357,7 @@ itemBases["Shadow Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "22% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 44, CritChanceBase = 6.2, AttackRateBase = 1.25, Range = 11, }, @@ -331,6 +367,7 @@ itemBases["Horned Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Damage Penetrates 4% Elemental Resistances", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 6, AttackRateBase = 1.3, Range = 11, }, @@ -340,6 +377,7 @@ itemBases["Grinning Fetish"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "18% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 36, CritChanceBase = 6, AttackRateBase = 1.5, Range = 11, }, @@ -349,6 +387,7 @@ itemBases["Sekhem"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "18% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 55, CritChanceBase = 6, AttackRateBase = 1.25, Range = 11, }, @@ -358,6 +397,7 @@ itemBases["Crystal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "30% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 52, CritChanceBase = 6.5, AttackRateBase = 1.25, Range = 11, }, @@ -367,6 +407,7 @@ itemBases["Lead Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "22% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 38, PhysicalMax = 57, CritChanceBase = 6, AttackRateBase = 1.25, Range = 11, }, @@ -376,6 +417,7 @@ itemBases["Blood Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "24% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 55, CritChanceBase = 6, AttackRateBase = 1.4, Range = 11, }, @@ -385,6 +427,7 @@ itemBases["Royal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "24% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 34, PhysicalMax = 80, CritChanceBase = 6, AttackRateBase = 1.2, Range = 11, }, @@ -394,6 +437,7 @@ itemBases["Abyssal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "30% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 45, PhysicalMax = 67, CritChanceBase = 6.2, AttackRateBase = 1.25, Range = 11, }, @@ -403,6 +447,7 @@ itemBases["Stag Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Damage Penetrates 4% Elemental Resistances", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 39, PhysicalMax = 72, CritChanceBase = 6, AttackRateBase = 1.3, Range = 11, }, @@ -412,6 +457,7 @@ itemBases["Karui Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "26% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 37, PhysicalMax = 55, CritChanceBase = 6, AttackRateBase = 1.5, Range = 11, }, @@ -421,6 +467,7 @@ itemBases["Tyrant's Sekhem"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "26% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 43, PhysicalMax = 80, CritChanceBase = 6, AttackRateBase = 1.25, Range = 11, }, @@ -430,6 +477,7 @@ itemBases["Opal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "40% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 49, PhysicalMax = 73, CritChanceBase = 6.5, AttackRateBase = 1.25, Range = 11, }, @@ -439,6 +487,7 @@ itemBases["Platinum Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "30% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 51, PhysicalMax = 76, CritChanceBase = 6, AttackRateBase = 1.25, Range = 11, }, @@ -448,6 +497,7 @@ itemBases["Vaal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "32% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 37, PhysicalMax = 70, CritChanceBase = 6, AttackRateBase = 1.4, Range = 11, }, @@ -457,6 +507,7 @@ itemBases["Carnal Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "32% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 95, CritChanceBase = 6, AttackRateBase = 1.2, Range = 11, }, @@ -466,6 +517,7 @@ itemBases["Void Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "40% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 50, PhysicalMax = 76, CritChanceBase = 6.2, AttackRateBase = 1.25, Range = 11, }, @@ -475,6 +527,7 @@ itemBases["Sambar Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, weapon = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Damage Penetrates 6% Elemental Resistances", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 42, PhysicalMax = 78, CritChanceBase = 6, AttackRateBase = 1.3, Range = 11, }, @@ -484,6 +537,7 @@ itemBases["Oscillating Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { weapon = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Elemental Overload", implicitModTypes = { { "elemental_damage", "damage", "elemental", "critical" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 34, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 11, }, @@ -493,6 +547,7 @@ itemBases["Stabilising Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { weapon = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Elemental Equilibrium", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 52, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 11, }, @@ -502,6 +557,7 @@ itemBases["Alternating Sceptre"] = { type = "Sceptre", socketLimit = 3, tags = { weapon = true, not_for_sale = true, onehand = true, sceptre = true, mace = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sceptre_shaper", elder = "sceptre_elder", adjudicator = "sceptre_adjudicator", basilisk = "sceptre_basilisk", crusader = "sceptre_crusader", eyrie = "sceptre_eyrie", cleansing = "sceptre_cleansing", tangle = "sceptre_tangle" }, implicit = "Secrets of Suffering", implicitModTypes = { { }, }, weapon = { PhysicalMin = 41, PhysicalMax = 61, CritChanceBase = 6.3, AttackRateBase = 1.45, Range = 11, }, @@ -512,6 +568,7 @@ itemBases["Driftwood Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 10, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -521,6 +578,7 @@ itemBases["Tribal Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 17, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -530,6 +588,7 @@ itemBases["Mallet"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 16, PhysicalMax = 33, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -539,6 +598,7 @@ itemBases["Sledgehammer"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "45% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 25, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -548,6 +608,7 @@ itemBases["Jagged Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 27, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -557,6 +618,7 @@ itemBases["Brass Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 40, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -566,6 +628,7 @@ itemBases["Fright Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 46, PhysicalMax = 62, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -575,6 +638,7 @@ itemBases["Morning Star"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "15% increased Area of Effect", implicitModTypes = { { }, }, weapon = { PhysicalMin = 45, PhysicalMax = 68, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -584,6 +648,7 @@ itemBases["Totemic Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 57, PhysicalMax = 85, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, @@ -593,6 +658,7 @@ itemBases["Great Mallet"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 43, PhysicalMax = 88, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -602,6 +668,7 @@ itemBases["Steelhead"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "45% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 54, PhysicalMax = 81, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -611,6 +678,7 @@ itemBases["Spiny Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 55, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -620,6 +688,7 @@ itemBases["Plated Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 72, PhysicalMax = 108, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -629,6 +698,7 @@ itemBases["Dread Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 77, PhysicalMax = 104, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -638,6 +708,7 @@ itemBases["Solar Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "15% increased Area of Effect", implicitModTypes = { { }, }, weapon = { PhysicalMin = 75, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -647,6 +718,7 @@ itemBases["Karui Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "45% increased Stun Duration on Enemies", implicitModTypes = { { }, }, weapon = { PhysicalMin = 112, PhysicalMax = 168, CritChanceBase = 5, AttackRateBase = 1, Range = 13, }, @@ -656,6 +728,7 @@ itemBases["Colossus Mallet"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "30% increased Area Damage", implicitModTypes = { { "damage" }, }, weapon = { PhysicalMin = 65, PhysicalMax = 135, CritChanceBase = 5.5, AttackRateBase = 1.3, Range = 13, }, @@ -665,6 +738,7 @@ itemBases["Piledriver"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "20% reduced Enemy Stun Threshold", implicitModTypes = { { }, }, weapon = { PhysicalMin = 77, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -674,6 +748,7 @@ itemBases["Meatgrinder"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "5% chance to deal Double Damage", implicitModTypes = { { "damage" }, }, weapon = { PhysicalMin = 74, PhysicalMax = 138, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, @@ -683,6 +758,7 @@ itemBases["Imperial Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "10% increased Strength", implicitModTypes = { { "attribute" }, }, weapon = { PhysicalMin = 102, PhysicalMax = 153, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, @@ -692,6 +768,7 @@ itemBases["Terror Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "25% chance to double Stun Duration", implicitModTypes = { { }, }, weapon = { PhysicalMin = 101, PhysicalMax = 137, CritChanceBase = 6, AttackRateBase = 1.15, Range = 13, }, @@ -701,6 +778,7 @@ itemBases["Coronal Maul"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, mace = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "20% increased Area of Effect", implicitModTypes = { { }, }, weapon = { PhysicalMin = 91, PhysicalMax = 136, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, @@ -710,6 +788,7 @@ itemBases["Blunt Force Condenser"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, mace = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "Warcries Exert 1 additional Attack", implicitModTypes = { { }, }, weapon = { PhysicalMin = 39, PhysicalMax = 64, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, @@ -719,6 +798,7 @@ itemBases["Crushing Force Magnifier"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, mace = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "Warcries Exert 1 additional Attack", implicitModTypes = { { }, }, weapon = { PhysicalMin = 62, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, @@ -728,6 +808,7 @@ itemBases["Impact Force Propagator"] = { type = "Two Handed Mace", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, mace = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_mace_shaper", elder = "2h_mace_elder", adjudicator = "2h_mace_adjudicator", basilisk = "2h_mace_basilisk", crusader = "2h_mace_crusader", eyrie = "2h_mace_eyrie", cleansing = "2h_mace_cleansing", tangle = "2h_mace_tangle" }, implicit = "Warcries Exert 1 additional Attack", implicitModTypes = { { }, }, weapon = { PhysicalMin = 81, PhysicalMax = 135, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, diff --git a/src/Data/Bases/quiver.lua b/src/Data/Bases/quiver.lua index 56740a60ac..156ad6bdfc 100644 --- a/src/Data/Bases/quiver.lua +++ b/src/Data/Bases/quiver.lua @@ -6,6 +6,7 @@ itemBases["Cured Quiver"] = { type = "Quiver", hidden = true, tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 2 to 4 Fire Damage to Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, req = { }, @@ -14,6 +15,7 @@ itemBases["Rugged Quiver"] = { type = "Quiver", hidden = true, tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 2 to 3 Cold Damage to Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, req = { }, @@ -22,6 +24,7 @@ itemBases["Conductive Quiver"] = { type = "Quiver", hidden = true, tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 1 to 5 Lightning Damage to Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, req = { }, @@ -30,6 +33,7 @@ itemBases["Heavy Quiver"] = { type = "Quiver", hidden = true, tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 1 to 4 Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 5, }, @@ -38,6 +42,7 @@ itemBases["Light Quiver"] = { type = "Quiver", hidden = true, tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "+(30-40) to Dexterity", implicitModTypes = { { "attribute" }, }, req = { level = 12, }, @@ -46,6 +51,7 @@ itemBases["Serrated Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "1 to 4 Added Physical Damage with Bow Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 5, }, @@ -54,6 +60,7 @@ itemBases["Two-Point Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, req = { level = 4, }, @@ -62,6 +69,7 @@ itemBases["Sharktooth Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Gain (3-4) Life per Enemy Hit with Attacks", implicitModTypes = { { "resource", "life", "attack" }, }, req = { level = 10, }, @@ -70,6 +78,7 @@ itemBases["Blunt Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(25-35)% increased Stun Duration on Enemies", implicitModTypes = { { }, }, req = { level = 16, }, @@ -78,6 +87,7 @@ itemBases["Fire Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "4 to 8 Added Fire Damage with Bow Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, req = { level = 22, }, @@ -86,6 +96,7 @@ itemBases["Broadhead Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "6 to 12 Added Physical Damage with Bow Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 28, }, @@ -94,6 +105,7 @@ itemBases["Penetrating Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Arrows Pierce an additional Target", implicitModTypes = { { "attack" }, }, req = { level = 36, }, @@ -102,6 +114,7 @@ itemBases["Spike-Point Arrow Quiver"] = { type = "Quiver", hidden = true, tags = { trade_market_legacy_item = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, req = { level = 45, }, @@ -109,6 +122,7 @@ itemBases["Spike-Point Arrow Quiver"] = { itemBases["Ornate Quiver"] = { type = "Quiver", tags = { not_for_sale = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Has 1 Socket", implicitModTypes = { { }, }, req = { level = 45, }, @@ -116,6 +130,7 @@ itemBases["Ornate Quiver"] = { itemBases["Serrated Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 1 to 4 Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 4, }, @@ -123,6 +138,7 @@ itemBases["Serrated Arrow Quiver"] = { itemBases["Fire Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds 3 to 5 Fire Damage to Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, req = { level = 9, }, @@ -130,6 +146,7 @@ itemBases["Fire Arrow Quiver"] = { itemBases["Sharktooth Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Gain (6-8) Life per Enemy Hit with Attacks", implicitModTypes = { { "resource", "life", "attack" }, }, req = { level = 14, }, @@ -137,6 +154,7 @@ itemBases["Sharktooth Arrow Quiver"] = { itemBases["Feathered Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Projectile Speed", implicitModTypes = { { "speed" }, }, req = { level = 20, }, @@ -144,6 +162,7 @@ itemBases["Feathered Arrow Quiver"] = { itemBases["Penetrating Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Arrows Pierce an additional Target", implicitModTypes = { { "attack" }, }, req = { level = 25, }, @@ -151,6 +170,7 @@ itemBases["Penetrating Arrow Quiver"] = { itemBases["Blunt Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds (7-9) to (13-16) Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 31, }, @@ -158,6 +178,7 @@ itemBases["Blunt Arrow Quiver"] = { itemBases["Two-Point Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, req = { level = 36, }, @@ -165,6 +186,7 @@ itemBases["Two-Point Arrow Quiver"] = { itemBases["Spike-Point Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Critical Strike Chance with Bows", implicitModTypes = { { "attack", "critical" }, }, req = { level = 40, }, @@ -172,6 +194,7 @@ itemBases["Spike-Point Arrow Quiver"] = { itemBases["Blazing Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds (12-15) to (24-27) Fire Damage to Attacks", implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, req = { level = 45, }, @@ -179,6 +202,7 @@ itemBases["Blazing Arrow Quiver"] = { itemBases["Broadhead Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(8-10)% increased Attack Speed", implicitModTypes = { { "attack", "speed" }, }, req = { level = 49, }, @@ -186,6 +210,7 @@ itemBases["Broadhead Arrow Quiver"] = { itemBases["Vile Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Gain (10-15)% of Physical Damage as Extra Chaos Damage", implicitModTypes = { { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, req = { level = 55, }, @@ -193,6 +218,7 @@ itemBases["Vile Arrow Quiver"] = { itemBases["Heavy Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "Adds (12-15) to (24-27) Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 61, }, @@ -200,6 +226,7 @@ itemBases["Heavy Arrow Quiver"] = { itemBases["Primal Arrow Quiver"] = { type = "Quiver", tags = { quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Elemental Damage with Attack Skills", implicitModTypes = { { "elemental_damage", "damage", "elemental", "attack" }, }, req = { level = 66, }, @@ -207,6 +234,7 @@ itemBases["Primal Arrow Quiver"] = { itemBases["Artillery Quiver"] = { type = "Quiver", tags = { not_for_sale = true, atlas_base_type = true, quiveratlas1 = true, quiver = true, default = true, }, + influenceTags = { shaper = "quiver_shaper", elder = "quiver_elder", adjudicator = "quiver_adjudicator", basilisk = "quiver_basilisk", crusader = "quiver_crusader", eyrie = "quiver_eyrie", cleansing = "quiver_cleansing", tangle = "quiver_tangle" }, implicit = "(20-30)% increased Totem Placement speed", implicitModTypes = { { "speed" }, }, req = { level = 74, }, diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua index 39a2ec79fc..938a2fcbab 100644 --- a/src/Data/Bases/ring.lua +++ b/src/Data/Bases/ring.lua @@ -6,6 +6,7 @@ local itemBases = ... itemBases["Iron Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Adds 1 to 4 Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { }, @@ -13,6 +14,7 @@ itemBases["Iron Ring"] = { itemBases["Coral Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, req = { }, @@ -20,6 +22,7 @@ itemBases["Coral Ring"] = { itemBases["Paua Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(20-30) to maximum Mana", implicitModTypes = { { "resource", "mana" }, }, req = { }, @@ -27,6 +30,7 @@ itemBases["Paua Ring"] = { itemBases["Gold Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(6-15)% increased Rarity of Items found", implicitModTypes = { { }, }, req = { level = 20, }, @@ -34,6 +38,7 @@ itemBases["Gold Ring"] = { itemBases["Topaz Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(20-30)% to Lightning Resistance", implicitModTypes = { { "elemental", "lightning", "resistance" }, }, req = { level = 12, }, @@ -41,6 +46,7 @@ itemBases["Topaz Ring"] = { itemBases["Sapphire Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(20-30)% to Cold Resistance", implicitModTypes = { { "elemental", "cold", "resistance" }, }, req = { level = 8, }, @@ -48,6 +54,7 @@ itemBases["Sapphire Ring"] = { itemBases["Ruby Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(20-30)% to Fire Resistance", implicitModTypes = { { "elemental", "fire", "resistance" }, }, req = { level = 16, }, @@ -55,6 +62,7 @@ itemBases["Ruby Ring"] = { itemBases["Prismatic Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(8-10)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, req = { level = 30, }, @@ -62,6 +70,7 @@ itemBases["Prismatic Ring"] = { itemBases["Moonstone Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(15-25) to maximum Energy Shield", implicitModTypes = { { "energy_shield", "defences" }, }, req = { level = 20, }, @@ -69,6 +78,7 @@ itemBases["Moonstone Ring"] = { itemBases["Amethyst Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(17-23)% to Chaos Resistance", implicitModTypes = { { "chaos", "resistance" }, }, req = { level = 30, }, @@ -76,6 +86,7 @@ itemBases["Amethyst Ring"] = { itemBases["Diamond Ring"] = { type = "Ring", tags = { ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(20-30)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, req = { level = 20, }, @@ -83,6 +94,7 @@ itemBases["Diamond Ring"] = { itemBases["Two-Stone Ring"] = { type = "Ring", tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Fire and Lightning Resistances", implicitModTypes = { { "elemental", "fire", "lightning", "resistance" }, }, req = { level = 20, }, @@ -91,6 +103,7 @@ itemBases["Two-Stone Ring"] = { type = "Ring", hidden = true, tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Cold and Lightning Resistances", implicitModTypes = { { "elemental", "cold", "lightning", "resistance" }, }, req = { level = 20, }, @@ -99,6 +112,7 @@ itemBases["Two-Stone Ring"] = { type = "Ring", hidden = true, tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Fire and Cold Resistances", implicitModTypes = { { "elemental", "fire", "cold", "resistance" }, }, req = { level = 20, }, @@ -106,6 +120,7 @@ itemBases["Two-Stone Ring"] = { itemBases["Unset Ring"] = { type = "Ring", tags = { ring = true, unset_ring = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Has 1 Socket", implicitModTypes = { { }, }, req = { level = 5, }, @@ -113,6 +128,7 @@ itemBases["Unset Ring"] = { itemBases["Bone Ring"] = { type = "Ring", tags = { ring = true, ring_can_roll_minion_modifiers = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Minions have +(10-15)% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance", "minion" }, }, req = { level = 25, }, @@ -120,6 +136,7 @@ itemBases["Bone Ring"] = { itemBases["Steel Ring"] = { type = "Ring", tags = { not_for_sale = true, ring = true, ringatlas1 = true, atlas_base_type = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Adds (3-4) to (10-14) Physical Damage to Attacks", implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, req = { level = 80, }, @@ -127,6 +144,7 @@ itemBases["Steel Ring"] = { itemBases["Opal Ring"] = { type = "Ring", tags = { not_for_sale = true, ring = true, ringatlas2 = true, atlas_base_type = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(15-25)% increased Elemental Damage", implicitModTypes = { { "elemental_damage", "damage", "elemental" }, }, req = { level = 80, }, @@ -134,6 +152,7 @@ itemBases["Opal Ring"] = { itemBases["Vermillion Ring"] = { type = "Ring", tags = { ringatlas3 = true, not_for_sale = true, ring = true, atlas_base_type = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(5-7)% increased maximum Life", implicitModTypes = { { "resource", "life" }, }, req = { level = 80, }, @@ -141,6 +160,7 @@ itemBases["Vermillion Ring"] = { itemBases["Cerulean Ring"] = { type = "Ring", tags = { not_for_sale = true, ring = true, atlas_base_type = true, ringatlas4 = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(8-10)% increased maximum Mana", implicitModTypes = { { "resource", "mana" }, }, req = { level = 80, }, @@ -148,6 +168,7 @@ itemBases["Cerulean Ring"] = { itemBases["Iolite Ring"] = { type = "Ring", tags = { not_for_sale = true, ring = true, ringatlas5 = true, atlas_base_type = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(17-23)% increased Chaos Damage", implicitModTypes = { { "chaos_damage", "damage", "chaos" }, }, req = { level = 80, }, @@ -155,6 +176,7 @@ itemBases["Iolite Ring"] = { itemBases["Two-Stone Ring (Fire/Lightning)"] = { type = "Ring", tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Fire and Lightning Resistances", implicitModTypes = { { "elemental", "fire", "lightning", "resistance" }, }, req = { level = 20, }, @@ -162,6 +184,7 @@ itemBases["Two-Stone Ring (Fire/Lightning)"] = { itemBases["Two-Stone Ring (Cold/Lightning)"] = { type = "Ring", tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Cold and Lightning Resistances", implicitModTypes = { { "elemental", "cold", "lightning", "resistance" }, }, req = { level = 20, }, @@ -169,6 +192,7 @@ itemBases["Two-Stone Ring (Cold/Lightning)"] = { itemBases["Two-Stone Ring (Fire/Cold)"] = { type = "Ring", tags = { ring = true, twostonering = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Fire and Cold Resistances", implicitModTypes = { { "elemental", "fire", "cold", "resistance" }, }, req = { level = 20, }, @@ -176,6 +200,7 @@ itemBases["Two-Stone Ring (Fire/Cold)"] = { itemBases["Cogwork Ring"] = { type = "Ring", tags = { ring = true, experimental_base = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "-1 Prefix Modifier allowed\n+1 Suffix Modifier allowed\nImplicit Modifiers Cannot Be Changed", implicitModTypes = { { }, { }, { }, }, req = { level = 24, }, @@ -183,6 +208,7 @@ itemBases["Cogwork Ring"] = { itemBases["Geodesic Ring"] = { type = "Ring", tags = { ring = true, experimental_base = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+1 Prefix Modifier allowed\n-1 Suffix Modifier allowed\nImplicit Modifiers Cannot Be Changed", implicitModTypes = { { }, { }, { }, }, req = { level = 24, }, @@ -190,6 +216,7 @@ itemBases["Geodesic Ring"] = { itemBases["Dusk Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 15% reduced Skill Effect Duration\nRight ring slot: 15% increased Skill Effect Duration", implicitModTypes = { { }, { }, }, req = { level = 24, }, @@ -197,6 +224,7 @@ itemBases["Dusk Ring"] = { itemBases["Penumbra Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 30% reduced Effect of Curses on you\nRight ring slot: 30% increased Effect of Curses on you", implicitModTypes = { { "curse" }, { "curse" }, }, req = { level = 24, }, @@ -204,6 +232,7 @@ itemBases["Penumbra Ring"] = { itemBases["Gloam Ring"] = { type = "Ring", tags = { ring = true, ring_can_roll_minion_modifiers = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: Minions take 15% reduced Damage\nRight ring slot: Minions take 15% increased Damage", implicitModTypes = { { "minion" }, { "minion" }, }, req = { level = 24, }, @@ -211,6 +240,7 @@ itemBases["Gloam Ring"] = { itemBases["Tenebrous Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 30% reduced Duration of Ailments on You\nRight ring slot: 30% increased Duration of Ailments on You", implicitModTypes = { { "ailment" }, { "ailment" }, }, req = { level = 24, }, @@ -218,6 +248,7 @@ itemBases["Tenebrous Ring"] = { itemBases["Shadowed Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage\nRight ring slot: 25% of Fire Damage from Hits taken as Cold Damage", implicitModTypes = { { "elemental", "fire", "cold" }, { "elemental", "fire", "cold" }, }, req = { level = 24, }, @@ -225,6 +256,7 @@ itemBases["Shadowed Ring"] = { itemBases["Shadowed Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage\nRight ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", implicitModTypes = { { "elemental", "fire", "lightning" }, { "elemental", "fire", "lightning" }, }, req = { level = 24, }, @@ -232,6 +264,7 @@ itemBases["Shadowed Ring"] = { itemBases["Shadowed Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage\nRight ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", implicitModTypes = { { "elemental", "cold", "lightning" }, { "elemental", "cold", "lightning" }, }, req = { level = 24, }, @@ -239,6 +272,7 @@ itemBases["Shadowed Ring"] = { itemBases["Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicitModTypes = { }, req = { }, } @@ -246,6 +280,7 @@ itemBases["Ring"] = { itemBases["Breach Ring"] = { type = "Ring", tags = { ring = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "Properties are doubled while in a Breach", implicitModTypes = { { }, }, req = { }, @@ -253,6 +288,7 @@ itemBases["Breach Ring"] = { itemBases["Golden Hoop"] = { type = "Ring", tags = { ring = true, demigods = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(8-12) to all Attributes", implicitModTypes = { { "attribute" }, }, req = { level = 12, }, @@ -261,6 +297,7 @@ itemBases["Jet Ring"] = { type = "Ring", hidden = true, tags = { ring = true, demigods = true, not_for_sale = true, default = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(5-10)% increased Global Defences", implicitModTypes = { { "defences" }, }, req = { }, diff --git a/src/Data/Bases/shield.lua b/src/Data/Bases/shield.lua index f1af776151..7f8fc13df5 100644 --- a/src/Data/Bases/shield.lua +++ b/src/Data/Bases/shield.lua @@ -8,6 +8,7 @@ itemBases["Splintered Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 24, ArmourBaseMin = 9, ArmourBaseMax = 12, MovementPenalty = 3, }, req = { str = 11, }, @@ -17,6 +18,7 @@ itemBases["Corroded Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 23, ArmourBaseMin = 36, ArmourBaseMax = 47, MovementPenalty = 3, }, @@ -27,6 +29,7 @@ itemBases["Rawhide Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 26, ArmourBaseMin = 53, ArmourBaseMax = 66, MovementPenalty = 3, }, @@ -37,6 +40,7 @@ itemBases["Cedar Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 94, ArmourBaseMax = 113, MovementPenalty = 3, }, @@ -47,6 +51,7 @@ itemBases["Copper Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(30-40) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 24, ArmourBaseMin = 151, ArmourBaseMax = 173, MovementPenalty = 3, }, @@ -57,6 +62,7 @@ itemBases["Reinforced Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 23, ArmourBaseMin = 237, ArmourBaseMax = 260, MovementPenalty = 3, }, @@ -67,6 +73,7 @@ itemBases["Painted Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 188, ArmourBaseMax = 216, MovementPenalty = 3, }, @@ -77,6 +84,7 @@ itemBases["Buckskin Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 26, ArmourBaseMin = 177, ArmourBaseMax = 209, MovementPenalty = 3, }, @@ -87,6 +95,7 @@ itemBases["Mahogany Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 230, ArmourBaseMax = 265, MovementPenalty = 3, }, @@ -97,6 +106,7 @@ itemBases["Bronze Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(30-40) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 24, ArmourBaseMin = 290, ArmourBaseMax = 324, MovementPenalty = 3, }, @@ -107,6 +117,7 @@ itemBases["Girded Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 23, ArmourBaseMin = 397, ArmourBaseMax = 437, MovementPenalty = 3, }, @@ -117,6 +128,7 @@ itemBases["Crested Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 293, ArmourBaseMax = 337, MovementPenalty = 3, }, @@ -127,6 +139,7 @@ itemBases["Shagreen Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 26, ArmourBaseMin = 261, ArmourBaseMax = 308, MovementPenalty = 3, }, @@ -137,6 +150,7 @@ itemBases["Ebony Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 357, ArmourBaseMax = 411, MovementPenalty = 3, }, @@ -147,6 +161,7 @@ itemBases["Ezomyte Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, top_tier_base_item_type = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(30-40) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 24, ArmourBaseMin = 412, ArmourBaseMax = 474, MovementPenalty = 3, }, @@ -157,6 +172,7 @@ itemBases["Colossal Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, top_tier_base_item_type = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(10-20) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 23, ArmourBaseMin = 522, ArmourBaseMax = 601, MovementPenalty = 3, }, @@ -167,6 +183,7 @@ itemBases["Pinnacle Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { str_armour = true, top_tier_base_item_type = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(20-30) to maximum Life", implicitModTypes = { { "resource", "life" }, }, armour = { BlockChance = 25, ArmourBaseMin = 467, ArmourBaseMax = 537, MovementPenalty = 3, }, @@ -177,6 +194,7 @@ itemBases["Exothermic Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { experimental_base = true, str_armour = true, not_for_sale = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Scorch Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 23, ArmourBaseMin = 125, ArmourBaseMax = 143, MovementPenalty = 3, }, @@ -187,6 +205,7 @@ itemBases["Magmatic Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { experimental_base = true, str_armour = true, not_for_sale = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Scorch Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 23, ArmourBaseMin = 205, ArmourBaseMax = 236, MovementPenalty = 3, }, @@ -197,6 +216,7 @@ itemBases["Heat-attuned Tower Shield"] = { subType = "Armour", socketLimit = 3, tags = { experimental_base = true, str_armour = true, not_for_sale = true, str_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Scorch Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 23, ArmourBaseMin = 330, ArmourBaseMax = 379, MovementPenalty = 3, }, @@ -208,6 +228,7 @@ itemBases["Goathide Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 25, EvasionBaseMin = 14, EvasionBaseMax = 20, MovementPenalty = 3, }, @@ -218,6 +239,7 @@ itemBases["Pine Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 51, EvasionBaseMax = 66, MovementPenalty = 3, }, @@ -228,6 +250,7 @@ itemBases["Painted Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 24, EvasionBaseMin = 123, EvasionBaseMax = 154, MovementPenalty = 3, }, @@ -238,6 +261,7 @@ itemBases["Hammered Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 27, EvasionBaseMin = 116, EvasionBaseMax = 139, MovementPenalty = 3, }, @@ -248,6 +272,7 @@ itemBases["War Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "9% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 169, EvasionBaseMax = 194, MovementPenalty = 3, }, @@ -258,6 +283,7 @@ itemBases["Gilded Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 25, EvasionBaseMin = 225, EvasionBaseMax = 259, MovementPenalty = 3, }, @@ -268,6 +294,7 @@ itemBases["Oak Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 220, EvasionBaseMax = 259, MovementPenalty = 3, }, @@ -278,6 +305,7 @@ itemBases["Enameled Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 24, EvasionBaseMin = 311, EvasionBaseMax = 349, MovementPenalty = 3, }, @@ -288,6 +316,7 @@ itemBases["Corrugated Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 27, EvasionBaseMin = 227, EvasionBaseMax = 272, MovementPenalty = 3, }, @@ -298,6 +327,7 @@ itemBases["Battle Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "9% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 287, EvasionBaseMax = 330, MovementPenalty = 3, }, @@ -308,6 +338,7 @@ itemBases["Golden Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 25, EvasionBaseMin = 354, EvasionBaseMax = 407, MovementPenalty = 3, }, @@ -318,6 +349,7 @@ itemBases["Ironwood Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 327, EvasionBaseMax = 385, MovementPenalty = 3, }, @@ -328,6 +360,7 @@ itemBases["Lacquered Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 24, EvasionBaseMin = 477, EvasionBaseMax = 549, MovementPenalty = 3, }, @@ -338,6 +371,7 @@ itemBases["Vaal Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "3% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 27, EvasionBaseMin = 330, EvasionBaseMax = 379, MovementPenalty = 3, }, @@ -348,6 +382,7 @@ itemBases["Crusader Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "9% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 26, EvasionBaseMin = 385, EvasionBaseMax = 442, MovementPenalty = 3, }, @@ -358,6 +393,7 @@ itemBases["Imperial Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { dex_shield = true, dex_armour = true, top_tier_base_item_type = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "6% increased Movement Speed", implicitModTypes = { { "speed" }, }, armour = { BlockChance = 25, EvasionBaseMin = 440, EvasionBaseMax = 506, MovementPenalty = 3, }, @@ -368,6 +404,7 @@ itemBases["Endothermic Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { experimental_base = true, dex_shield = true, dex_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Inflict Brittle on Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 22, EvasionBaseMin = 112, EvasionBaseMax = 129, MovementPenalty = 3, }, @@ -378,6 +415,7 @@ itemBases["Polar Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { experimental_base = true, dex_shield = true, dex_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Inflict Brittle on Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 22, EvasionBaseMin = 185, EvasionBaseMax = 212, MovementPenalty = 3, }, @@ -388,6 +426,7 @@ itemBases["Cold-attuned Buckler"] = { subType = "Evasion", socketLimit = 3, tags = { experimental_base = true, dex_shield = true, dex_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Inflict Brittle on Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 22, EvasionBaseMin = 302, EvasionBaseMax = 348, MovementPenalty = 3, }, @@ -399,6 +438,7 @@ itemBases["Twig Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(10-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 22, EnergyShieldBaseMin = 6, EnergyShieldBaseMax = 8, MovementPenalty = 3, }, @@ -409,6 +449,7 @@ itemBases["Yew Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 14, MovementPenalty = 3, }, @@ -419,6 +460,7 @@ itemBases["Bone Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, default = true, armour = true, focus_can_roll_minion_modifiers = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Minions deal (5-10)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, armour = { BlockChance = 22, EnergyShieldBaseMin = 15, EnergyShieldBaseMax = 19, MovementPenalty = 3, }, @@ -429,6 +471,7 @@ itemBases["Tarnished Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 21, EnergyShieldBaseMax = 25, MovementPenalty = 3, }, @@ -439,6 +482,7 @@ itemBases["Jingling Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(10-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 23, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 29, MovementPenalty = 3, }, @@ -449,6 +493,7 @@ itemBases["Brass Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 25, EnergyShieldBaseMin = 35, EnergyShieldBaseMax = 40, MovementPenalty = 3, }, req = { level = 33, int = 83, }, @@ -458,6 +503,7 @@ itemBases["Walnut Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 38, MovementPenalty = 3, }, @@ -468,6 +514,7 @@ itemBases["Ivory Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, default = true, armour = true, focus_can_roll_minion_modifiers = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Minions deal (5-10)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, armour = { BlockChance = 22, EnergyShieldBaseMin = 35, EnergyShieldBaseMax = 40, MovementPenalty = 3, }, @@ -478,6 +525,7 @@ itemBases["Ancient Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 45, MovementPenalty = 3, }, @@ -488,6 +536,7 @@ itemBases["Chiming Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(10-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 23, EnergyShieldBaseMin = 42, EnergyShieldBaseMax = 48, MovementPenalty = 3, }, @@ -498,6 +547,7 @@ itemBases["Thorium Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 25, EnergyShieldBaseMin = 54, EnergyShieldBaseMax = 62, MovementPenalty = 3, }, req = { level = 53, int = 128, }, @@ -507,6 +557,7 @@ itemBases["Lacewood Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 47, EnergyShieldBaseMax = 55, MovementPenalty = 3, }, @@ -517,6 +568,7 @@ itemBases["Fossilised Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, top_tier_base_item_type = true, int_armour = true, default = true, armour = true, focus_can_roll_minion_modifiers = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Minions deal (5-10)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, armour = { BlockChance = 22, EnergyShieldBaseMin = 49, EnergyShieldBaseMax = 55, MovementPenalty = 3, }, @@ -527,6 +579,7 @@ itemBases["Vaal Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(5-10)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 24, EnergyShieldBaseMin = 56, EnergyShieldBaseMax = 64, MovementPenalty = 3, }, @@ -537,6 +590,7 @@ itemBases["Harmonic Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "(10-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, armour = { BlockChance = 23, EnergyShieldBaseMin = 58, EnergyShieldBaseMax = 66, MovementPenalty = 3, }, @@ -547,6 +601,7 @@ itemBases["Titanium Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, top_tier_base_item_type = true, int_armour = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 25, EnergyShieldBaseMin = 67, EnergyShieldBaseMax = 77, MovementPenalty = 3, }, req = { level = 68, int = 159, }, @@ -556,6 +611,7 @@ itemBases["Exhausting Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, experimental_base = true, int_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Sap Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 20, EnergyShieldBaseMin = 24, EnergyShieldBaseMax = 28, MovementPenalty = 3, }, @@ -566,6 +622,7 @@ itemBases["Subsuming Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, experimental_base = true, int_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Sap Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 20, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 44, MovementPenalty = 3, }, @@ -576,6 +633,7 @@ itemBases["Transfer-attuned Spirit Shield"] = { subType = "Energy Shield", socketLimit = 3, tags = { focus = true, experimental_base = true, int_armour = true, not_for_sale = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "Sap Enemies when you Block their Damage", implicitModTypes = { { }, }, armour = { BlockChance = 20, EnergyShieldBaseMin = 56, EnergyShieldBaseMax = 64, MovementPenalty = 3, }, @@ -587,6 +645,7 @@ itemBases["Rotted Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "60% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 24, ArmourBaseMin = 13, ArmourBaseMax = 18, EvasionBaseMin = 13, EvasionBaseMax = 18, MovementPenalty = 3, }, @@ -597,6 +656,7 @@ itemBases["Fir Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "180% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 24, ArmourBaseMin = 29, ArmourBaseMax = 37, EvasionBaseMin = 29, EvasionBaseMax = 37, MovementPenalty = 3, }, @@ -607,6 +667,7 @@ itemBases["Studded Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "60% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 27, ArmourBaseMin = 46, ArmourBaseMax = 58, EvasionBaseMin = 46, EvasionBaseMax = 58, MovementPenalty = 3, }, @@ -617,6 +678,7 @@ itemBases["Scarlet Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 87, ArmourBaseMax = 100, EvasionBaseMin = 87, EvasionBaseMax = 100, MovementPenalty = 3, }, req = { level = 27, str = 37, dex = 37, }, @@ -626,6 +688,7 @@ itemBases["Splendid Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "120% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 25, ArmourBaseMin = 75, ArmourBaseMax = 86, EvasionBaseMin = 75, EvasionBaseMax = 86, MovementPenalty = 3, }, @@ -636,6 +699,7 @@ itemBases["Maple Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "180% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 24, ArmourBaseMin = 88, ArmourBaseMax = 99, EvasionBaseMin = 88, EvasionBaseMax = 99, MovementPenalty = 3, }, @@ -646,6 +710,7 @@ itemBases["Spiked Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "60% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 27, ArmourBaseMin = 102, ArmourBaseMax = 120, EvasionBaseMin = 102, EvasionBaseMax = 120, MovementPenalty = 3, }, @@ -656,6 +721,7 @@ itemBases["Crimson Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 155, ArmourBaseMax = 178, EvasionBaseMin = 155, EvasionBaseMax = 178, MovementPenalty = 3, }, req = { level = 49, str = 64, dex = 64, }, @@ -665,6 +731,7 @@ itemBases["Baroque Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "120% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 25, ArmourBaseMin = 122, ArmourBaseMax = 140, EvasionBaseMin = 122, EvasionBaseMax = 140, MovementPenalty = 3, }, @@ -675,6 +742,7 @@ itemBases["Teak Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "180% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 24, ArmourBaseMin = 131, ArmourBaseMax = 146, EvasionBaseMin = 131, EvasionBaseMax = 146, MovementPenalty = 3, }, @@ -685,6 +753,7 @@ itemBases["Spiny Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, top_tier_base_item_type = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "60% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 27, ArmourBaseMin = 154, ArmourBaseMax = 177, EvasionBaseMin = 154, EvasionBaseMax = 177, MovementPenalty = 3, }, @@ -695,6 +764,7 @@ itemBases["Cardinal Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, top_tier_base_item_type = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 209, ArmourBaseMax = 240, EvasionBaseMin = 209, EvasionBaseMax = 240, MovementPenalty = 3, }, req = { level = 66, str = 85, dex = 85, }, @@ -704,6 +774,7 @@ itemBases["Elegant Round Shield"] = { subType = "Armour/Evasion", socketLimit = 3, tags = { str_dex_armour = true, top_tier_base_item_type = true, str_dex_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "120% increased Block Recovery", implicitModTypes = { { "block" }, }, armour = { BlockChance = 25, ArmourBaseMin = 148, ArmourBaseMax = 170, EvasionBaseMin = 148, EvasionBaseMax = 170, MovementPenalty = 3, }, @@ -715,6 +786,7 @@ itemBases["Plank Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+4% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 22, ArmourBaseMin = 18, ArmourBaseMax = 25, EnergyShieldBaseMin = 5, EnergyShieldBaseMax = 7, MovementPenalty = 3, }, @@ -725,6 +797,7 @@ itemBases["Linden Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+4% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 43, ArmourBaseMax = 56, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 14, MovementPenalty = 3, }, @@ -735,6 +808,7 @@ itemBases["Reinforced Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 65, ArmourBaseMax = 81, EnergyShieldBaseMin = 15, EnergyShieldBaseMax = 18, MovementPenalty = 3, }, req = { level = 20, str = 29, int = 29, }, @@ -744,6 +818,7 @@ itemBases["Layered Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+8% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 62, ArmourBaseMax = 73, EnergyShieldBaseMin = 13, EnergyShieldBaseMax = 16, MovementPenalty = 3, }, @@ -754,6 +829,7 @@ itemBases["Ceremonial Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+12% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 22, ArmourBaseMin = 77, ArmourBaseMax = 89, EnergyShieldBaseMin = 16, EnergyShieldBaseMax = 19, MovementPenalty = 3, }, @@ -764,6 +840,7 @@ itemBases["Etched Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+4% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 127, ArmourBaseMax = 142, EnergyShieldBaseMin = 27, EnergyShieldBaseMax = 30, MovementPenalty = 3, }, @@ -774,6 +851,7 @@ itemBases["Steel Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 146, ArmourBaseMax = 167, EnergyShieldBaseMin = 30, EnergyShieldBaseMax = 35, MovementPenalty = 3, }, req = { level = 46, str = 60, int = 60, }, @@ -783,6 +861,7 @@ itemBases["Laminated Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+8% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 113, ArmourBaseMax = 133, EnergyShieldBaseMin = 23, EnergyShieldBaseMax = 27, MovementPenalty = 3, }, @@ -793,6 +872,7 @@ itemBases["Angelic Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+12% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 22, ArmourBaseMin = 124, ArmourBaseMax = 142, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 29, MovementPenalty = 3, }, @@ -803,6 +883,7 @@ itemBases["Branded Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+4% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 186, ArmourBaseMax = 208, EnergyShieldBaseMin = 38, EnergyShieldBaseMax = 43, MovementPenalty = 3, }, @@ -813,6 +894,7 @@ itemBases["Champion Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, top_tier_base_item_type = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicitModTypes = { }, armour = { BlockChance = 26, ArmourBaseMin = 215, ArmourBaseMax = 247, EnergyShieldBaseMin = 44, EnergyShieldBaseMax = 50, MovementPenalty = 3, }, req = { level = 62, str = 85, int = 85, }, @@ -822,6 +904,7 @@ itemBases["Mosaic Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, top_tier_base_item_type = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+8% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 24, ArmourBaseMin = 147, ArmourBaseMax = 169, EnergyShieldBaseMin = 30, EnergyShieldBaseMax = 34, MovementPenalty = 3, }, @@ -832,6 +915,7 @@ itemBases["Archon Kite Shield"] = { subType = "Armour/Energy Shield", socketLimit = 3, tags = { str_int_armour = true, top_tier_base_item_type = true, str_int_shield = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+12% to all Elemental Resistances", implicitModTypes = { { "elemental", "resistance" }, }, armour = { BlockChance = 22, ArmourBaseMin = 156, ArmourBaseMax = 179, EnergyShieldBaseMin = 32, EnergyShieldBaseMax = 37, MovementPenalty = 3, }, @@ -843,6 +927,7 @@ itemBases["Spiked Bundle"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 13, EvasionBaseMax = 18, EnergyShieldBaseMin = 4, EnergyShieldBaseMax = 6, MovementPenalty = 3, }, @@ -853,6 +938,7 @@ itemBases["Driftwood Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 46, EvasionBaseMax = 60, EnergyShieldBaseMin = 11, EnergyShieldBaseMax = 15, MovementPenalty = 3, }, @@ -863,6 +949,7 @@ itemBases["Alloyed Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 25, EvasionBaseMin = 56, EvasionBaseMax = 70, EnergyShieldBaseMin = 13, EnergyShieldBaseMax = 16, MovementPenalty = 3, }, @@ -873,6 +960,7 @@ itemBases["Burnished Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 26, EvasionBaseMin = 62, EvasionBaseMax = 73, EnergyShieldBaseMin = 13, EnergyShieldBaseMax = 16, MovementPenalty = 3, }, @@ -883,6 +971,7 @@ itemBases["Ornate Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 120, EvasionBaseMax = 135, EnergyShieldBaseMin = 26, EnergyShieldBaseMax = 29, MovementPenalty = 3, }, @@ -893,6 +982,7 @@ itemBases["Redwood Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 142, EvasionBaseMax = 163, EnergyShieldBaseMin = 30, EnergyShieldBaseMax = 34, MovementPenalty = 3, }, @@ -903,6 +993,7 @@ itemBases["Compound Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 25, EvasionBaseMin = 122, EvasionBaseMax = 144, EnergyShieldBaseMin = 25, EnergyShieldBaseMax = 30, MovementPenalty = 3, }, @@ -913,6 +1004,7 @@ itemBases["Polished Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 26, EvasionBaseMin = 111, EvasionBaseMax = 131, EnergyShieldBaseMin = 23, EnergyShieldBaseMax = 27, MovementPenalty = 3, }, @@ -923,6 +1015,7 @@ itemBases["Sovereign Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 195, EvasionBaseMax = 218, EnergyShieldBaseMin = 40, EnergyShieldBaseMax = 45, MovementPenalty = 3, }, @@ -933,6 +1026,7 @@ itemBases["Alder Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 209, EvasionBaseMax = 240, EnergyShieldBaseMin = 43, EnergyShieldBaseMax = 49, MovementPenalty = 3, }, @@ -943,6 +1037,7 @@ itemBases["Ezomyte Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, top_tier_base_item_type = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+3% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 25, EvasionBaseMin = 181, EvasionBaseMax = 209, EnergyShieldBaseMin = 37, EnergyShieldBaseMax = 43, MovementPenalty = 3, }, @@ -953,6 +1048,7 @@ itemBases["Mirrored Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, top_tier_base_item_type = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 26, EvasionBaseMin = 151, EvasionBaseMax = 174, EnergyShieldBaseMin = 31, EnergyShieldBaseMax = 35, MovementPenalty = 3, }, @@ -963,6 +1059,7 @@ itemBases["Supreme Spiked Shield"] = { subType = "Evasion/Energy Shield", socketLimit = 3, tags = { dex_int_shield = true, top_tier_base_item_type = true, default = true, armour = true, shield = true, dex_int_armour = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+5% chance to Suppress Spell Damage", implicitModTypes = { { }, }, armour = { BlockChance = 24, EvasionBaseMin = 242, EvasionBaseMax = 278, EnergyShieldBaseMin = 49, EnergyShieldBaseMax = 57, MovementPenalty = 3, }, @@ -973,6 +1070,7 @@ itemBases["Golden Flame"] = { type = "Shield", socketLimit = 3, tags = { not_for_sale = true, demigods = true, armour = true, default = true, shield = true, }, + influenceTags = { shaper = "shield_shaper", elder = "shield_elder", adjudicator = "shield_adjudicator", basilisk = "shield_basilisk", crusader = "shield_crusader", eyrie = "shield_eyrie", cleansing = "shield_cleansing", tangle = "shield_tangle" }, implicit = "+(11-19)% to Chaos Resistance", implicitModTypes = { { "chaos", "resistance" }, }, armour = { BlockChance = 20, MovementPenalty = 3, }, diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua index 2aea6188ab..352f42400e 100644 --- a/src/Data/Bases/staff.lua +++ b/src/Data/Bases/staff.lua @@ -6,6 +6,7 @@ itemBases["Gnarled Branch"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, small_staff = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 9, PhysicalMax = 19, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -15,6 +16,7 @@ itemBases["Primitive Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 10, PhysicalMax = 31, CritChanceBase = 6.2, AttackRateBase = 1.3, Range = 13, }, @@ -24,6 +26,7 @@ itemBases["Long Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 24, PhysicalMax = 41, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -33,6 +36,7 @@ itemBases["Royal Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 81, CritChanceBase = 6.5, AttackRateBase = 1.15, Range = 13, }, @@ -42,6 +46,7 @@ itemBases["Crescent Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, staff = true, not_for_sale = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "80% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 85, CritChanceBase = 6, AttackRateBase = 1.2, Range = 13, }, @@ -51,6 +56,7 @@ itemBases["Woodful Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 34, PhysicalMax = 102, CritChanceBase = 6.2, AttackRateBase = 1.15, Range = 13, }, @@ -60,6 +66,7 @@ itemBases["Quarterstaff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 51, PhysicalMax = 86, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -69,6 +76,7 @@ itemBases["Highborn Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 48, PhysicalMax = 145, CritChanceBase = 6.5, AttackRateBase = 1.15, Range = 13, }, @@ -78,6 +86,7 @@ itemBases["Moon Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, staff = true, not_for_sale = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "80% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 66, PhysicalMax = 138, CritChanceBase = 6, AttackRateBase = 1.2, Range = 13, }, @@ -87,6 +96,7 @@ itemBases["Primordial Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 55, PhysicalMax = 165, CritChanceBase = 6.2, AttackRateBase = 1.15, Range = 13, }, @@ -96,6 +106,7 @@ itemBases["Lathi"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 72, PhysicalMax = 120, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -105,6 +116,7 @@ itemBases["Imperial Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 57, PhysicalMax = 171, CritChanceBase = 7, AttackRateBase = 1.15, Range = 13, }, @@ -114,6 +126,7 @@ itemBases["Eclipse Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, staff = true, not_for_sale = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "100% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, weapon = { PhysicalMin = 70, PhysicalMax = 145, CritChanceBase = 6, AttackRateBase = 1.2, Range = 13, }, @@ -123,6 +136,7 @@ itemBases["Transformer Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, staff = true, not_for_sale = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "Spend Energy Shield before Mana for Costs of Socketed Skills\n+(66-80) to maximum Energy Shield", implicitModTypes = { { }, { }, }, weapon = { PhysicalMin = 36, PhysicalMax = 66, CritChanceBase = 6, AttackRateBase = 1.25, Range = 13, }, @@ -132,6 +146,7 @@ itemBases["Reciprocation Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, staff = true, not_for_sale = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "Spend Energy Shield before Mana for Costs of Socketed Skills\n+(100-120) to maximum Energy Shield", implicitModTypes = { { }, { }, }, weapon = { PhysicalMin = 55, PhysicalMax = 102, CritChanceBase = 6, AttackRateBase = 1.25, Range = 13, }, @@ -141,6 +156,7 @@ itemBases["Battery Staff"] = { type = "Staff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, staff = true, not_for_sale = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, implicit = "Spend Energy Shield before Mana for Costs of Socketed Skills\n+(140-165) to maximum Energy Shield", implicitModTypes = { { }, { }, }, weapon = { PhysicalMin = 65, PhysicalMax = 120, CritChanceBase = 6, AttackRateBase = 1.25, Range = 13, }, @@ -152,6 +168,7 @@ itemBases["Iron Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 14, PhysicalMax = 42, CritChanceBase = 6.4, AttackRateBase = 1.3, Range = 13, }, @@ -162,6 +179,7 @@ itemBases["Coiled Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+20% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 57, CritChanceBase = 6.2, AttackRateBase = 1.3, Range = 13, }, @@ -172,6 +190,7 @@ itemBases["Vile Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 6.1, AttackRateBase = 1.3, Range = 13, }, @@ -182,6 +201,7 @@ itemBases["Military Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 38, PhysicalMax = 114, CritChanceBase = 6.6, AttackRateBase = 1.25, Range = 13, }, @@ -192,6 +212,7 @@ itemBases["Serpentine Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+20% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 56, PhysicalMax = 117, CritChanceBase = 6.3, AttackRateBase = 1.25, Range = 13, }, @@ -202,6 +223,7 @@ itemBases["Foul Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+18% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 65, PhysicalMax = 121, CritChanceBase = 6.1, AttackRateBase = 1.3, Range = 13, }, @@ -212,6 +234,7 @@ itemBases["Ezomyte Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+20% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 53, PhysicalMax = 160, CritChanceBase = 7.3, AttackRateBase = 1.25, Range = 13, }, @@ -222,6 +245,7 @@ itemBases["Maelstrom Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+25% Chance to Block Attack Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 71, PhysicalMax = 147, CritChanceBase = 6.8, AttackRateBase = 1.25, Range = 13, }, @@ -232,6 +256,7 @@ itemBases["Judgement Staff"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, warstaff = true, staff = true, attack_staff = true, weapon = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+20% Chance to Block Spell Damage while wielding a Staff", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 73, PhysicalMax = 136, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 13, }, @@ -242,6 +267,7 @@ itemBases["Capacity Rod"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, staff = true, attack_staff = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+1 to Maximum Power Charges and Maximum Endurance Charges", implicitModTypes = { { }, }, weapon = { PhysicalMin = 39, PhysicalMax = 73, CritChanceBase = 7, AttackRateBase = 1.25, Range = 13, }, @@ -252,6 +278,7 @@ itemBases["Potentiality Rod"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, staff = true, attack_staff = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+1 to Maximum Power Charges and Maximum Endurance Charges", implicitModTypes = { { }, }, weapon = { PhysicalMin = 61, PhysicalMax = 113, CritChanceBase = 7, AttackRateBase = 1.25, Range = 13, }, @@ -262,6 +289,7 @@ itemBases["Eventuality Rod"] = { subType = "Warstaff", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, not_for_sale = true, staff = true, attack_staff = true, experimental_base = true, twohand = true, default = true, }, + influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, implicit = "+1 to Maximum Power Charges and Maximum Endurance Charges", implicitModTypes = { { }, }, weapon = { PhysicalMin = 78, PhysicalMax = 144, CritChanceBase = 7, AttackRateBase = 1.25, Range = 13, }, diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua index f0eb40233a..36791248e9 100644 --- a/src/Data/Bases/sword.lua +++ b/src/Data/Bases/sword.lua @@ -7,6 +7,7 @@ itemBases["Rusted Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 4, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, @@ -16,6 +17,7 @@ itemBases["Copper Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+45 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 6, PhysicalMax = 14, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, @@ -25,6 +27,7 @@ itemBases["Sabre"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 5, PhysicalMax = 22, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, @@ -34,6 +37,7 @@ itemBases["Broad Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 15, PhysicalMax = 21, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -43,6 +47,7 @@ itemBases["War Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 16, PhysicalMax = 30, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -52,6 +57,7 @@ itemBases["Ancient Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+165 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 33, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -61,6 +67,7 @@ itemBases["Elegant Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+190 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 33, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, @@ -70,6 +77,7 @@ itemBases["Dusk Blade"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -79,6 +87,7 @@ itemBases["Hook Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "15% chance to Maim on Hit", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.15, Range = 11, }, @@ -88,6 +97,7 @@ itemBases["Variscite Blade"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+240 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 25, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -97,6 +107,7 @@ itemBases["Cutlass"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, @@ -106,6 +117,7 @@ itemBases["Baselard"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 37, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -115,6 +127,7 @@ itemBases["Battle Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 38, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, @@ -124,6 +137,7 @@ itemBases["Elder Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+330 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 36, PhysicalMax = 66, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -133,6 +147,7 @@ itemBases["Graceful Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+350 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 34, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, @@ -142,6 +157,7 @@ itemBases["Twilight Blade"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 86, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -151,6 +167,7 @@ itemBases["Grappler"] = { type = "One Handed Sword", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "15% chance to Maim on Hit", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 44, PhysicalMax = 94, CritChanceBase = 5, AttackRateBase = 1.15, Range = 11, }, @@ -160,6 +177,7 @@ itemBases["Gemstone Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+400 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 39, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -169,6 +187,7 @@ itemBases["Corsair Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 80, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, @@ -178,6 +197,7 @@ itemBases["Gladius"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 54, PhysicalMax = 78, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -187,6 +207,7 @@ itemBases["Legion Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 53, PhysicalMax = 98, CritChanceBase = 5, AttackRateBase = 1.2, Range = 11, }, @@ -196,6 +217,7 @@ itemBases["Vaal Blade"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+460 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 46, PhysicalMax = 86, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -205,6 +227,7 @@ itemBases["Eternal Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+475 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 68, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, @@ -214,6 +237,7 @@ itemBases["Midnight Blade"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, top_tier_base_item_type = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.3, Range = 11, }, @@ -223,6 +247,7 @@ itemBases["Tiger Hook"] = { type = "One Handed Sword", socketLimit = 3, tags = { maraketh = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "20% chance to Maim on Hit", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 37, PhysicalMax = 80, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, @@ -232,6 +257,7 @@ itemBases["Fickle Spiritblade"] = { type = "One Handed Sword", socketLimit = 3, tags = { experimental_base = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", implicitModTypes = { { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 33, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -241,6 +267,7 @@ itemBases["Capricious Spiritblade"] = { type = "One Handed Sword", socketLimit = 3, tags = { experimental_base = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", implicitModTypes = { { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 51, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -250,6 +277,7 @@ itemBases["Anarchic Spiritblade"] = { type = "One Handed Sword", socketLimit = 3, tags = { experimental_base = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", implicitModTypes = { { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, weapon = { PhysicalMin = 34, PhysicalMax = 63, CritChanceBase = 6, AttackRateBase = 1.6, Range = 11, }, @@ -260,6 +288,7 @@ itemBases["Charan's Sword"] = { type = "One Handed Sword", socketLimit = 3, tags = { onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 5, PhysicalMax = 11, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, @@ -271,6 +300,7 @@ itemBases["Energy Blade One Handed"] = { hidden = true, socketLimit = 3, tags = { onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 11, }, req = { }, @@ -281,6 +311,7 @@ itemBases["Rusted Spike"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 5, PhysicalMax = 11, CritChanceBase = 5.5, AttackRateBase = 1.55, Range = 14, }, @@ -291,6 +322,7 @@ itemBases["Whalebone Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 4, PhysicalMax = 17, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -301,6 +333,7 @@ itemBases["Battered Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 20, CritChanceBase = 6, AttackRateBase = 1.5, Range = 14, }, @@ -311,6 +344,7 @@ itemBases["Basket Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 25, CritChanceBase = 5.5, AttackRateBase = 1.55, Range = 14, }, @@ -321,6 +355,7 @@ itemBases["Jagged Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 29, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -331,6 +366,7 @@ itemBases["Antique Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 14, }, @@ -341,6 +377,7 @@ itemBases["Elegant Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 33, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -351,6 +388,7 @@ itemBases["Thorn Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+35% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 44, CritChanceBase = 5.7, AttackRateBase = 1.4, Range = 14, }, @@ -361,6 +399,7 @@ itemBases["Smallsword"] = { subType = "Thrusting", socketLimit = 3, tags = { maraketh = true, rapier = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "15% chance to cause Bleeding on Hit", implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 40, CritChanceBase = 6, AttackRateBase = 1.55, Range = 14, }, @@ -371,6 +410,7 @@ itemBases["Wyrmbone Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 51, CritChanceBase = 5.5, AttackRateBase = 1.5, Range = 14, }, @@ -381,6 +421,7 @@ itemBases["Burnished Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 25, PhysicalMax = 46, CritChanceBase = 6, AttackRateBase = 1.4, Range = 14, }, @@ -391,6 +432,7 @@ itemBases["Estoc"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 50, CritChanceBase = 5.5, AttackRateBase = 1.5, Range = 14, }, @@ -401,6 +443,7 @@ itemBases["Serrated Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 49, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -411,6 +454,7 @@ itemBases["Primeval Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 14, }, @@ -421,6 +465,7 @@ itemBases["Fancy Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 51, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -431,6 +476,7 @@ itemBases["Apex Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+35% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 67, CritChanceBase = 5.7, AttackRateBase = 1.4, Range = 14, }, @@ -441,6 +487,7 @@ itemBases["Courtesan Sword"] = { subType = "Thrusting", socketLimit = 3, tags = { maraketh = true, rapier = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "15% chance to cause Bleeding on Hit", implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 60, CritChanceBase = 6, AttackRateBase = 1.55, Range = 14, }, @@ -451,6 +498,7 @@ itemBases["Dragonbone Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 19, PhysicalMax = 75, CritChanceBase = 5.5, AttackRateBase = 1.5, Range = 14, }, @@ -461,6 +509,7 @@ itemBases["Tempered Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 65, CritChanceBase = 6, AttackRateBase = 1.4, Range = 14, }, @@ -471,6 +520,7 @@ itemBases["Pecoraro"] = { subType = "Thrusting", socketLimit = 3, tags = { onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 69, CritChanceBase = 5.5, AttackRateBase = 1.5, Range = 14, }, @@ -481,6 +531,7 @@ itemBases["Spiraled Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 64, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -491,6 +542,7 @@ itemBases["Vaal Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 22, PhysicalMax = 87, CritChanceBase = 6.5, AttackRateBase = 1.3, Range = 14, }, @@ -501,6 +553,7 @@ itemBases["Jewelled Foil"] = { subType = "Thrusting", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 32, PhysicalMax = 60, CritChanceBase = 5.5, AttackRateBase = 1.6, Range = 14, }, @@ -511,6 +564,7 @@ itemBases["Harpy Rapier"] = { subType = "Thrusting", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, rapier = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "+35% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 31, PhysicalMax = 72, CritChanceBase = 5.7, AttackRateBase = 1.4, Range = 14, }, @@ -521,6 +575,7 @@ itemBases["Dragoon Sword"] = { subType = "Thrusting", socketLimit = 3, tags = { maraketh = true, rapier = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, implicit = "20% chance to cause Bleeding on Hit", implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 32, PhysicalMax = 66, CritChanceBase = 6, AttackRateBase = 1.5, Range = 14, }, @@ -532,6 +587,7 @@ itemBases["Keyblade"] = { hidden = true, socketLimit = 6, tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, req = { str = 8, dex = 8, }, @@ -540,6 +596,7 @@ itemBases["Corroded Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "40% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 8, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, @@ -549,6 +606,7 @@ itemBases["Longsword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+60 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 11, PhysicalMax = 26, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, @@ -558,6 +616,7 @@ itemBases["Bastard Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "60% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 17, PhysicalMax = 29, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, @@ -567,6 +626,7 @@ itemBases["Two-Handed Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+120 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, @@ -576,6 +636,7 @@ itemBases["Etched Greatsword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "60% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, @@ -585,6 +646,7 @@ itemBases["Ornate Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+185 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, @@ -594,6 +656,7 @@ itemBases["Spectral Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "45% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 31, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -603,6 +666,7 @@ itemBases["Curved Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+40% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 68, CritChanceBase = 6, AttackRateBase = 1.35, Range = 13, }, @@ -612,6 +676,7 @@ itemBases["Butcher Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+250 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 34, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -621,6 +686,7 @@ itemBases["Footman Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "60% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 39, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, @@ -630,6 +696,7 @@ itemBases["Highland Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+305 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 45, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -639,6 +706,7 @@ itemBases["Engraved Greatsword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "60% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 49, PhysicalMax = 102, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -648,6 +716,7 @@ itemBases["Tiger Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+360 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 54, PhysicalMax = 89, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, @@ -657,6 +726,7 @@ itemBases["Wraith Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "45% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 52, PhysicalMax = 109, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -666,6 +736,7 @@ itemBases["Lithe Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+40% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 63, PhysicalMax = 104, CritChanceBase = 6, AttackRateBase = 1.35, Range = 13, }, @@ -675,6 +746,7 @@ itemBases["Headman's Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+400 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 55, PhysicalMax = 128, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -684,6 +756,7 @@ itemBases["Reaver Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "60% increased Global Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 62, PhysicalMax = 104, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, @@ -693,6 +766,7 @@ itemBases["Ezomyte Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+25% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 13, }, @@ -702,6 +776,7 @@ itemBases["Vaal Greatsword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+470 to Accuracy Rating", implicitModTypes = { { "attack" }, }, weapon = { PhysicalMin = 68, PhysicalMax = 142, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, @@ -711,6 +786,7 @@ itemBases["Lion Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+50 to Strength and Dexterity", implicitModTypes = { { "attribute" }, }, weapon = { PhysicalMin = 69, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, @@ -720,6 +796,7 @@ itemBases["Infernal Sword"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, top_tier_base_item_type = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "30% increased Elemental Damage with Attack Skills", implicitModTypes = { { "elemental_damage", "damage", "elemental", "attack" }, }, weapon = { PhysicalMin = 62, PhysicalMax = 129, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, @@ -729,6 +806,7 @@ itemBases["Exquisite Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, maraketh = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "+50% to Global Critical Strike Multiplier", implicitModTypes = { { "damage", "critical" }, }, weapon = { PhysicalMin = 67, PhysicalMax = 112, CritChanceBase = 5.7, AttackRateBase = 1.35, Range = 13, }, @@ -738,6 +816,7 @@ itemBases["Rebuking Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, experimental_base = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", implicitModTypes = { { }, }, weapon = { PhysicalMin = 34, PhysicalMax = 63, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -747,6 +826,7 @@ itemBases["Blasting Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, experimental_base = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", implicitModTypes = { { }, }, weapon = { PhysicalMin = 52, PhysicalMax = 97, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -756,6 +836,7 @@ itemBases["Banishing Blade"] = { type = "Two Handed Sword", socketLimit = 6, tags = { two_hand_weapon = true, experimental_base = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicit = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", implicitModTypes = { { }, }, weapon = { PhysicalMin = 61, PhysicalMax = 114, CritChanceBase = 6, AttackRateBase = 1.3, Range = 13, }, @@ -767,6 +848,7 @@ itemBases["Energy Blade Two Handed"] = { hidden = true, socketLimit = 6, tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, }, + influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, implicitModTypes = { }, weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, }, req = { }, diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua index cafffe2154..cc16ffe609 100644 --- a/src/Data/Bases/wand.lua +++ b/src/Data/Bases/wand.lua @@ -6,6 +6,7 @@ itemBases["Driftwood Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(8-12)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 5, PhysicalMax = 9, CritChanceBase = 7, AttackRateBase = 1.4, Range = 120, }, @@ -15,6 +16,7 @@ itemBases["Goat's Horn"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, weapon = { PhysicalMin = 9, PhysicalMax = 16, CritChanceBase = 7, AttackRateBase = 1.2, Range = 120, }, @@ -24,6 +26,7 @@ itemBases["Carved Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(11-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 9, PhysicalMax = 17, CritChanceBase = 7, AttackRateBase = 1.5, Range = 120, }, @@ -33,6 +36,7 @@ itemBases["Quartz Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, weapon = { PhysicalMin = 14, PhysicalMax = 27, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -42,6 +46,7 @@ itemBases["Spiraled Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, weapon = { PhysicalMin = 12, PhysicalMax = 37, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -51,6 +56,7 @@ itemBases["Sage Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(17-21)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 42, CritChanceBase = 8, AttackRateBase = 1.2, Range = 120, }, @@ -60,6 +66,7 @@ itemBases["Pagan Wand"] = { type = "Wand", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "10% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, weapon = { PhysicalMin = 22, PhysicalMax = 40, CritChanceBase = 7, AttackRateBase = 1.35, Range = 120, }, @@ -69,6 +76,7 @@ itemBases["Faun's Horn"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, weapon = { PhysicalMin = 26, PhysicalMax = 48, CritChanceBase = 7, AttackRateBase = 1.2, Range = 120, }, @@ -78,6 +86,7 @@ itemBases["Engraved Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(22-26)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 38, CritChanceBase = 7, AttackRateBase = 1.5, Range = 120, }, @@ -87,6 +96,7 @@ itemBases["Crystal Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -96,6 +106,7 @@ itemBases["Coiled Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, weapon = { PhysicalMin = 21, PhysicalMax = 64, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -105,6 +116,7 @@ itemBases["Omen Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(27-31)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 33, PhysicalMax = 61, CritChanceBase = 8, AttackRateBase = 1.2, Range = 120, }, @@ -114,6 +126,7 @@ itemBases["Heathen Wand"] = { type = "Wand", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "10% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 7, AttackRateBase = 1.35, Range = 120, }, @@ -123,6 +136,7 @@ itemBases["Demon's Horn"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, weapon = { PhysicalMin = 38, PhysicalMax = 71, CritChanceBase = 7, AttackRateBase = 1.2, Range = 120, }, @@ -132,6 +146,7 @@ itemBases["Imbued Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(33-37)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 29, PhysicalMax = 53, CritChanceBase = 7, AttackRateBase = 1.5, Range = 120, }, @@ -141,6 +156,7 @@ itemBases["Opal Wand"] = { type = "Wand", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 65, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -150,6 +166,7 @@ itemBases["Tornado Wand"] = { type = "Wand", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, weapon = { PhysicalMin = 25, PhysicalMax = 75, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -159,6 +176,7 @@ itemBases["Prophecy Wand"] = { type = "Wand", socketLimit = 3, tags = { top_tier_base_item_type = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(36-40)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 35, PhysicalMax = 64, CritChanceBase = 8, AttackRateBase = 1.2, Range = 120, }, @@ -168,6 +186,7 @@ itemBases["Profane Wand"] = { type = "Wand", socketLimit = 3, tags = { maraketh = true, not_for_sale = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "14% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, weapon = { PhysicalMin = 33, PhysicalMax = 61, CritChanceBase = 7, AttackRateBase = 1.35, Range = 120, }, @@ -177,6 +196,7 @@ itemBases["Assembler Wand"] = { type = "Wand", socketLimit = 3, tags = { ranged = true, not_for_sale = true, onehand = true, wand = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", implicitModTypes = { { }, }, weapon = { PhysicalMin = 16, PhysicalMax = 30, CritChanceBase = 7.5, AttackRateBase = 1.4, Range = 120, }, @@ -186,6 +206,7 @@ itemBases["Congregator Wand"] = { type = "Wand", socketLimit = 3, tags = { ranged = true, not_for_sale = true, onehand = true, wand = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", implicitModTypes = { { }, }, weapon = { PhysicalMin = 25, PhysicalMax = 46, CritChanceBase = 7.5, AttackRateBase = 1.4, Range = 120, }, @@ -195,6 +216,7 @@ itemBases["Accumulator Wand"] = { type = "Wand", socketLimit = 3, tags = { ranged = true, not_for_sale = true, onehand = true, wand = true, weapon = true, experimental_base = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", implicitModTypes = { { }, }, weapon = { PhysicalMin = 29, PhysicalMax = 54, CritChanceBase = 7.5, AttackRateBase = 1.4, Range = 120, }, @@ -205,6 +227,7 @@ itemBases["Convoking Wand"] = { type = "Wand", socketLimit = 3, tags = { onehand = true, ranged = true, wandatlas1 = true, weapon_can_roll_minion_modifiers = true, top_tier_base_item_type = true, wand = true, atlas_base_type = true, default = true, one_hand_weapon = true, weapon = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (26-30)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, weapon = { PhysicalMin = 30, PhysicalMax = 55, CritChanceBase = 7, AttackRateBase = 1.4, Range = 120, }, @@ -215,6 +238,7 @@ itemBases["Calling Wand"] = { type = "Wand", socketLimit = 3, tags = { weapon_can_roll_minion_modifiers = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (12-16)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, weapon = { PhysicalMin = 13, PhysicalMax = 25, CritChanceBase = 7, AttackRateBase = 1.4, Range = 120, }, @@ -225,6 +249,7 @@ itemBases["Convening Wand"] = { type = "Wand", socketLimit = 3, tags = { weapon_can_roll_minion_modifiers = true, onehand = true, wand = true, weapon = true, ranged = true, one_hand_weapon = true, default = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (20-24)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 7, AttackRateBase = 1.4, Range = 120, }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 14469a07cf..942fac7e8d 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -2,53559 +2,75203 @@ -- Stat data (c) Grinding Gear Games return { - ["Synthesis"] = { - ["1634_SelfStatusAilmentDuration"] = { - ["specialCaseData"] = { + ["Corrupted"] = { + ["1000_SpellDamage"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["Dagger"] = { + ["max"] = 60, + ["min"] = 50, }, ["sign"] = "", - }, - ["8415_PurityOfIceReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["962_PercentageDexterity"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["1007_PhysicalDamagePercent"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - }, - ["960_PercentageAllAttributes"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", }, - ["sign"] = "", }, - ["1519_MaximumManaOnKillPercent"] = { - ["specialCaseData"] = { + ["1008_LocalPhysicalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["2199_PhysicalDamageTakenAsFirePercent"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["1142_GlobalAddedColdDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["5403_DamageVSAbyssMonsters"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3257279374", - ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["938_SpellBlockPercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, - ["sign"] = "", }, - ["1557_AdditionalPierce"] = { - ["specialCaseData"] = { + ["1050_LocalPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 9.5, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["1HMace"] = { + ["max"] = 9.5, + ["min"] = 1.5, }, - ["sign"] = "", - }, - ["4233_DeterminationPhysicalDamageReduction"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 9.5, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["1HWeapon"] = { + ["max"] = 9.5, + ["min"] = 1.5, }, - ["sign"] = "", - }, - ["1260_CriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 11, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["2HMace"] = { + ["max"] = 11, + ["min"] = 1.5, }, - ["sign"] = "+", - }, - ["1405_LightningResistance"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 11, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["2HWeapon"] = { + ["max"] = 11, + ["min"] = 1.5, }, - ["sign"] = "+", - }, - ["1206_IncreasedAccuracyPercent"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 11, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["Claw"] = { + ["max"] = 9.5, + ["min"] = 1.5, + }, + ["Dagger"] = { + ["max"] = 9.5, + ["min"] = 1.5, + }, + ["Staff"] = { + ["max"] = 11, + ["min"] = 1.5, + }, + ["Wand"] = { + ["max"] = 9.5, + ["min"] = 1.5, }, ["sign"] = "", - }, - ["3946_BleedingImmunity"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", }, }, - ["4482_AttackImpaleChance"] = { - ["specialCaseData"] = { + ["1136_LocalFireDamage"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["1HMace"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["sign"] = "", - }, - ["1329_LocalEnergyShield"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["sign"] = "+", - }, - ["8192_IncreasedAilmentEffectOnEnemies"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["2HMace"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["sign"] = "", - }, - ["1153_GlobalAddedLightningDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 11.5, }, - ["sign"] = "", - }, - ["1366_ItemFoundRarityIncrease"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 50, + ["min"] = 17.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["Claw"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["sign"] = "", - }, - ["1565_MovementVelocity"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 38, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["Staff"] = { + ["max"] = 50, + ["min"] = 17.5, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 11.5, }, ["sign"] = "", - }, - ["2282_FlammabilityOnHitLevel"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", }, }, - ["8727_SpellDamagePerMana"] = { - ["specialCaseData"] = { + ["1145_LocalColdDamage"] = { + ["1HAxe"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3555662994", - ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["1HMace"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["sign"] = "", - }, - ["3110_CannotBePoisoned"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["1HWeapon"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - }, - ["1392_MaximumFireResistanceImplicit"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["2HMace"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["sign"] = "+", - }, - ["1795_ChanceToShock"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["2HWeapon"] = { + ["max"] = 43.5, + ["min"] = 9.5, }, - ["sign"] = "", - }, - ["1230_SpellCriticalStrikeChance"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 43.5, + ["min"] = 14.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["Claw"] = { + ["max"] = 31.5, + ["min"] = 9.5, + }, + ["Dagger"] = { + ["max"] = 31.5, + ["min"] = 9.5, + }, + ["Staff"] = { + ["max"] = 43.5, + ["min"] = 14.5, + }, + ["Wand"] = { + ["max"] = 31.5, + ["min"] = 9.5, }, ["sign"] = "", - }, - ["6010_OnslaughtOnHit"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2514424018", - ["text"] = "You gain Onslaught for # seconds on Hit", }, - ["sign"] = "", }, - ["8733_SpellDamagePer10Strength"] = { + ["1147_AddedFireDamageSpellsAndAttacks"] = { + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", }, - ["sign"] = "", }, - ["1693_MineLayingSpeed"] = { + ["1148_AddedColdDamageToSpellsAndAttacks"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", }, - ["sign"] = "", }, - ["5654_EnemiesExplodeOnDeathPhysical"] = { - ["specialCaseData"] = { + ["1156_LocalLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 41, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["1HMace"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["1HSword"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["1HWeapon"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["2HAxe"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["2HMace"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["2HSword"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["2HWeapon"] = { + ["max"] = 58, + ["min"] = 14, + }, + ["Bow"] = { + ["max"] = 58, + ["min"] = 18.5, + }, + ["Claw"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["Dagger"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["Staff"] = { + ["max"] = 58, + ["min"] = 18.5, + }, + ["Wand"] = { + ["max"] = 41, + ["min"] = 14, }, ["sign"] = "", - }, - ["168_SocketedGemQuality"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_3828613551", - ["text"] = "#% to Quality of Socketed Gems", }, - ["sign"] = "+", }, - ["1597_PowerChargeOnCriticalStrikeChance"] = { - ["specialCaseData"] = { + ["1161_ChaosDamage"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 11, + ["min"] = 1.5, }, ["sign"] = "", - }, - ["1949_BeltIncreasedFlaskDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", }, - ["sign"] = "", }, - ["5036_AdditionalChanceToEvade"] = { - ["specialCaseData"] = { + ["1163_LocalChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 17, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", + ["1HMace"] = { + ["max"] = 17, + ["min"] = 2, }, - ["sign"] = "+", - }, - ["1350_MaximumManaIncreasePercent"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 17, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["1HWeapon"] = { + ["max"] = 17, + ["min"] = 2, }, - ["sign"] = "", - }, - ["6983_GlobalCriticalStrikeChanceCorruptedItem"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 17, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4023723828", - ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["2HMace"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 17, + ["min"] = 2, }, ["sign"] = "", - }, - ["140_LocalIncreaseSocketedChaosGemLevel"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", }, - ["sign"] = "+", }, - ["8027_MinionAccuracyRating"] = { + ["1182_AddedLightningDamageSpellsAndAttacks"] = { + ["Ring"] = { + ["max"] = 28.5, + ["min"] = 7.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", }, - ["sign"] = "", }, - ["3115_ColdDamageAvoidance"] = { - ["specialCaseData"] = { + ["1183_IncreasedAttackSpeed"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["Gloves"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["1626_BurnDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "implicit", - ["id"] = "implicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", }, - ["sign"] = "", }, - ["3028_DamagePerFrenzyCharge"] = { - ["specialCaseData"] = { + ["1186_LocalIncreasedAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["1558_ArrowAdditionalPierce"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["1159_IncreasedChaosDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["2HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["1151_LightningDamagePercentage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 3, }, - ["sign"] = "", - }, - ["8606_ShockEffect"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", + ["Claw"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["179_SocketedIntelligenceGemQuality"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3174776455", - ["text"] = "#% to Quality of Socketed Intelligence Gems", + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "+", - }, - ["2286_MeleeWeaponAndUnarmedRange"] = { + ["Wand"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", }, - ["sign"] = "+", }, - ["955_DexterityImplicit"] = { - ["specialCaseData"] = { + ["1218_IncreasedCastSpeed"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 12, }, - ["sign"] = "+", - }, - ["1581_IncreasedMaximumPowerCharges"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["Gloves"] = { + ["max"] = 10, + ["min"] = 4, }, - ["sign"] = "+", - }, - ["1905_IncreasedPowerChargeDuration"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["Shield"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - }, - ["1699_PhysicalAddedAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", }, - ["sign"] = "", }, - ["8413_PurityOfFireReservationEfficiency"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["1218_IncreasedCastSpeedFishing"] = { + ["FishingRod"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["147_LocalIncreaseSocketedMeleeGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "implicit", - ["id"] = "implicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", }, - ["sign"] = "+", }, - ["8418_PurityOfLightningReservation"] = { - ["specialCaseData"] = { + ["1231_CriticalStrikeChance"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["145_LocalIncreaseSocketedProjectileGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", }, - ["sign"] = "+", }, - ["2210_AdditionalBlock"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["1236_LocalCriticalStrikeChance"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 14, }, - ["sign"] = "+", - }, - ["4420_AttackDamagePerMana"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4134865890", - ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 14, }, - ["sign"] = "", - }, - ["8321_PhysicalDamageSpellSkills"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1430255627", - ["text"] = "#% increased Physical Damage with Spell Skills", + ["Bow"] = { + ["max"] = 18, + ["min"] = 14, }, - ["sign"] = "", - }, - ["129_LocalIncreaseSocketedStrengthGemLevel"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", + ["Dagger"] = { + ["max"] = 18, + ["min"] = 14, }, - ["sign"] = "+", - }, - ["2201_PhysicalDamageTakenAsLightningPercent"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["Wand"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", - }, - ["1473_AttackDamageManaLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_350069479", - ["text"] = "#% of Attack Damage Leeched as Mana", }, - ["sign"] = "", }, - ["1283_ReducedExtraDamageFromCrits"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["1260_CriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 25, }, - ["sign"] = "", - }, - ["1608_CannotBeShocked"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 30, + ["min"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_491899612", - ["text"] = "Cannot be Shocked", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 25, }, - }, - ["1610_AvoidElementalStatusAilments"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "implicit", - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", }, - ["sign"] = "", }, - ["1989_ManaReservationEfficiency"] = { - ["specialCaseData"] = { + ["1283_ReducedExtraDamageFromCrits"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["963_PercentageIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", }, - ["sign"] = "", }, - ["1010_MeleeDamage"] = { - ["specialCaseData"] = { + ["1292_ImmuneToKnockback"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["180_SocketedLightningGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", ["type"] = "implicit", - ["id"] = "implicit.stat_1065580342", - ["text"] = "#% to Quality of Socketed Lightning Gems", }, - ["sign"] = "+", }, - ["1107_BowIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["132_LocalIncreaseSocketedGemLevel"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_402920808", - ["text"] = "#% increased Physical Damage with Bows", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1571_MaximumEnduranceCharges"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - }, - ["2316_FasterIgniteDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", }, - ["sign"] = "", }, - ["1198_BowIncreasedAttackSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["1331_GlobalEnergyShieldPercent"] = { + ["Belt"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["5024_DoubleDamageChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", }, - ["sign"] = "", }, - ["1563_ProjectileSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - }, + ["1331_MaximumEnergyShieldPercent"] = { ["sign"] = "", - }, - ["1270_ClawCriticalStrikeMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_2811834828", - ["text"] = "#% to Critical Strike Multiplier with Claws", }, - ["sign"] = "+", }, - ["5338_CurseDuration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["1341_MaximumLifeIncreasePercent"] = { + ["Belt"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["5038_GraceAdditionalChanceToEvade"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "implicit", - ["id"] = "implicit.stat_969576725", - ["text"] = "#% chance to Evade Attack Hits while affected by Grace", }, - ["sign"] = "+", }, - ["1995_PhysicalAttackDamageTaken"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", + ["1362_IncreasedItemQuantity"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, }, - ["sign"] = "-", - }, - ["1467_ManaLeechPermyriad"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["Ring"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["1206_LocalAccuracyRatingIncrease"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", }, - ["sign"] = "", }, - ["5153_ChillEffect"] = { - ["specialCaseData"] = { + ["1366_IncreasedItemRarity"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["7073_IncreasedLifeCorruptedItem"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "implicit", - ["id"] = "implicit.stat_3887484120", - ["text"] = "#% increased maximum Life if Corrupted", }, - ["sign"] = "", }, - ["5105_ChaosDamageSpellSkills"] = { + ["137_LocalIncreaseSocketedFireGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_3761858151", - ["text"] = "#% increased Chaos Damage with Spell Skills", }, - ["sign"] = "", }, - ["1576_MaximumFrenzyCharges"] = { - ["specialCaseData"] = { + ["1388_AllResistancesCorrupted"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["Belt"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "+", - }, - ["1354_ManaRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", }, - ["sign"] = "", }, - ["1516_LifeGainedFromEnemyDeath"] = { + ["138_LocalIncreaseSocketedColdGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", }, - ["sign"] = "", }, - ["146_LocalIncreaseSocketedBowGemLevel"] = { + ["139_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2027269580", - ["text"] = "# to Level of Socketed Bow Gems", }, - ["sign"] = "+", }, - ["8719_SpellsDoubleDamageChance"] = { - ["specialCaseData"] = { + ["1409_ChaosResistance"] = { + ["1HAxe"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", + ["1HMace"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "", - }, - ["3813_DamageDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "", - }, - ["4442_AddedLightningDamagePerIntelligence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["2HMace"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "", - }, - ["1580_MinimumPowerCharges"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "+", - }, - ["2659_MinionElementalResistancesForJewel"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["FishingRod"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 2, }, ["sign"] = "+", - }, - ["1530_ManaGainedFromEnemyDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "implicit", - ["id"] = "implicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", }, - ["sign"] = "", }, - ["1214_MaceIncreasedAccuracyRating"] = { + ["1410_MaximumResistances"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_3208450870", - ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", }, - ["sign"] = "", }, - ["1217_WandIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["1413_ChillEffectivenessOnSelf"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2150183156", - ["text"] = "#% increased Accuracy Rating with Wands", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["2392_EnergyShieldRegenerationPerMinute"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", ["type"] = "implicit", - ["id"] = "implicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", }, - ["sign"] = "", }, - ["1502_MaximumEnergyShieldLeechRate"] = { - ["specialCaseData"] = { + ["1438_FireDamageLifeLeechPermyriad"] = { + ["1HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["1HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["1HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["1HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["Bow"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Claw"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Dagger"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Helmet"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Quiver"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["Staff"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Wand"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1119_WandIncreasedPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", ["type"] = "implicit", - ["id"] = "implicit.stat_2769075491", - ["text"] = "#% increased Physical Damage with Wands", }, - ["sign"] = "", }, - ["968_AllDamage"] = { + ["143_IncreaseSocketedDurationGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2115168758", + ["text"] = "# to Level of Socketed Duration Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", }, - ["sign"] = "", }, ["1443_ColdDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["1HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["sign"] = "", - }, - ["8530_RemoveFreezeOnFlaskUse"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", + ["1HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - }, - ["1267_BowCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", + ["2HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["sign"] = "+", - }, - ["8534_RemoveIgniteOnFlaskUse"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", + ["2HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - }, - ["1409_ChaosResistance"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["Bow"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["sign"] = "+", - }, - ["7077_MovementVelocityCorruptedItem"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2880601380", - ["text"] = "#% increased Movement Speed if Corrupted", + ["Dagger"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["sign"] = "", - }, - ["5175_ColdDamageSpellSkills"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 0.5, + ["min"] = 0.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2186994986", - ["text"] = "#% increased Cold Damage with Spell Skills", + ["Quiver"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["sign"] = "", - }, - ["1213_DaggerIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2054715690", - ["text"] = "#% increased Accuracy Rating with Daggers", + ["Wand"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1738_MinionDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", }, - ["sign"] = "", }, - ["1321_LocalEvasionRatingIncreasePercent"] = { - ["specialCaseData"] = { + ["1447_LightningDamageLifeLeechPermyriad"] = { + ["1HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["1HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["1HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["1HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HSword"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["Bow"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Claw"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Dagger"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Helmet"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Quiver"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["Staff"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Wand"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["2486_SpellDamagePer10Intelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", ["type"] = "implicit", - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", }, - ["sign"] = "", }, - ["1560_AdditionalArrows"] = { + ["144_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { + ["id"] = "implicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", }, - ["sign"] = "", }, - ["3721_AnimateGuardianResistances"] = { + ["145_LocalIncreaseSocketedProjectileLevelCorrupted"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2094281311", - ["text"] = "#% to Animated Guardian Elemental Resistances", }, - ["sign"] = "+", }, - ["5400_IncreasedDamagePerPowerCharge"] = { + ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", }, - ["sign"] = "", }, - ["1757_GlobalKnockbackChance"] = { + ["149_LocalIncreaseSocketedAuraLevelCorrupted"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", }, - ["sign"] = "", }, - ["994_DamageWhileLeechingLife"] = { + ["1512_ManaGainPerTarget"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_3591306273", - ["text"] = "#% increased Damage while Leeching Life", }, - ["sign"] = "", }, - ["9063_VitalityReservation"] = { + ["152_LocalIncreaseSocketedCurseLevelCorrupted"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["2703_GlobalChanceToBlindOnHit"] = { + ["1555_AdditionalArrowChain"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain # times", ["type"] = "implicit", - ["id"] = "implicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", }, - ["sign"] = "", }, - ["1752_MaximumSpellBlockChance"] = { + ["1558_AdditionalArrowPierce"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", ["type"] = "implicit", - ["id"] = "implicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", }, - ["sign"] = "+", }, - ["149_LocalIncreaseSocketedAuraLevel"] = { + ["1559_AdditionalProjectilesCorrupted"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", ["type"] = "implicit", - ["id"] = "implicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", }, - ["sign"] = "+", }, - ["6964_AttackDamageCorruptedItem"] = { + ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_150668988", + ["text"] = "# to Level of Socketed Trap or Mine Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_2347923784", - ["text"] = "#% increased Attack Damage if Corrupted", }, - ["sign"] = "", }, - ["1515_EnergyShieldGainPerTarget"] = { - ["specialCaseData"] = { + ["1560_AdditionalArrows"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["49_HasXSockets"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { + ["id"] = "implicit.stat_742529963", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", }, }, - ["2728_LightningResistancePenetration"] = { - ["specialCaseData"] = { + ["1563_ProjectileSpeed"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["Wand"] = { + ["max"] = 8, + ["min"] = 4, }, ["sign"] = "", - }, - ["8641_BrandAttachmentRange"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "implicit", - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", }, - ["sign"] = "", }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { - ["specialCaseData"] = { + ["1565_MovementVelocity"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["Boots"] = { + ["max"] = 10, + ["min"] = 2, }, - ["sign"] = "+", - }, - ["4439_AddedFireDamagePerStrength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "implicit", - ["id"] = "implicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", }, - ["sign"] = "", }, - ["2434_VaalSkillDamageAffectsSkillDamage"] = { - ["specialCaseData"] = { + ["156_LocalIncreaseSocketedVaalGemLevel"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3871212304", - ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["Chest"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["1647_AreaOfEffect"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["3947_ChanceToAvoidBleeding"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1170386874", + ["text"] = "# to Level of Socketed Vaal Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", }, - ["sign"] = "", }, - ["5104_ChaosDamageAttackSkills"] = { - ["specialCaseData"] = { + ["1571_MaximumEnduranceCharges"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1959092146", - ["text"] = "#% increased Chaos Damage with Attack Skills", + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["3742_CurseEffectConductivity"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "implicit", - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", }, - ["sign"] = "", }, - ["5492_DeterminationReservation"] = { - ["specialCaseData"] = { + ["1576_MaximumFrenzyCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1221_CastSpeedWithStaff"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "implicit", - ["id"] = "implicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", }, - ["sign"] = "", }, - ["2203_PhysicalDamageTakenAsChaos"] = { - ["specialCaseData"] = { + ["1581_IncreasedMaximumPowerCharges"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1644_BurnDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1822_GlobalFlaskLifeRecovery"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["6571_FlatLightningDamageTaken"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", ["type"] = "implicit", - ["id"] = "implicit.stat_465051235", - ["text"] = "# Lightning Damage taken from Hits", }, - ["sign"] = "-", }, - ["2803_RecoverLifePercentOnBlock"] = { - ["specialCaseData"] = { + ["1597_PowerChargeOnCriticalStrikeChance"] = { + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["1797_AreaDamage"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["Claw"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - }, - ["1197_MaceIncreasedAttackSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", ["type"] = "implicit", - ["id"] = "implicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", }, - ["sign"] = "", }, - ["5392_DamagePer15Strength"] = { + ["1606_CannotBeIgnited"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", ["type"] = "implicit", - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", }, - ["sign"] = "", }, - ["7031_ImmuneToCursesCorruptedItem"] = { + ["160_LocalSocketedWarcryGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1672793731", + ["text"] = "# to Level of Socketed Warcry Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_1954526925", - ["text"] = "Immune to Curses if Corrupted", }, }, - ["4532_BleedDuration"] = { - ["specialCaseData"] = { + ["1611_ChanceToAvoidFreezeAndChill"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["2535_TotemElementalResistances"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", ["type"] = "implicit", - ["id"] = "implicit.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", }, - ["sign"] = "+", }, - ["922_SpellDamageSuppressed"] = { - ["specialCaseData"] = { + ["1612_ChanceToAvoidFreezeAndChill"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4116705863", - ["text"] = "Prevent #% of Suppressed Spell Damage", + ["Amulet"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["1618_AvoidStun"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1005_SpellDamageWithShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "implicit", - ["id"] = "implicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", }, - ["sign"] = "", }, - ["2006_DegenDamageTaken"] = { - ["specialCaseData"] = { + ["1613_AvoidIgnite"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", + ["Amulet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1410_MaximumElementalResistanceImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", }, - ["sign"] = "+", }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { - ["specialCaseData"] = { + ["1615_AvoidShock"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["sign"] = "+", - }, - ["9000_ChilledGroundEffectEffectiveness"] = { + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "implicit", - ["id"] = "implicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", }, }, - ["1946_BeltReducedFlaskChargesUsed"] = { - ["specialCaseData"] = { + ["1615_ReducedShockChance"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1195_ClawIncreasedAttackSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "implicit", - ["id"] = "implicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", }, - ["sign"] = "", }, - ["3334_HasOnslaught"] = { - ["specialCaseData"] = { + ["1616_ChanceToAvoidPoison"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1520059289", - ["text"] = "Onslaught", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["1352_AddedManaRegeneration"] = { + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", ["type"] = "implicit", - ["id"] = "implicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", }, - ["sign"] = "", }, - ["1211_StaffIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["1618_AvoidStun"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1617235962", - ["text"] = "#% increased Accuracy Rating with Staves", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["1613_AvoidIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", }, - ["sign"] = "", }, - ["1178_SpellAddedColdDamageTwoHand"] = { - ["specialCaseData"] = { + ["1639_ReducedChillDuration"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["1533_MinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "implicit", - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", }, - ["sign"] = "", }, - ["1346_LifeRegenerationPercentPerEnduranceCharge"] = { - ["specialCaseData"] = { + ["1640_ReducedShockDuration"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["1403_MaximumLightningResistanceImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", }, - ["sign"] = "+", }, - ["7089_SpellDamageCorruptedItem"] = { - ["specialCaseData"] = { + ["1641_ReducedFreezeDuration"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_374116820", - ["text"] = "#% increased Spell Damage if Corrupted", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["2910_PoisonDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "implicit", - ["id"] = "implicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", }, - ["sign"] = "", }, - ["1218_IncreasedCastSpeed"] = { - ["specialCaseData"] = { + ["1642_ReducedBurnDuration"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["2806_DamageWhileLeeching"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "implicit", - ["id"] = "implicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", }, - ["sign"] = "", }, - ["1313_LocalPhysicalDamageReductionRatingPercent"] = { - ["specialCaseData"] = { + ["1642_ReducedIgniteDurationOnSelf"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["2330_SummonTotemCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", }, - ["sign"] = "", }, - ["1101_MaceIncreasedPhysicalDamage"] = { + ["1644_BurnDamage"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3774831856", - ["text"] = "#% increased Physical Damage with Maces or Sceptres", }, - ["sign"] = "", }, - ["3328_LightningPenetrationWeapon"] = { - ["specialCaseData"] = { + ["1647_AreaOfEffect"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3301510262", - ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["2585_ChaosDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_496011033", - ["text"] = "# Chaos Damage taken", }, - ["sign"] = "-", }, - ["2279_ConductivityOnHitLevel"] = { + ["1662_SkillEffectDuration"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "implicit", - ["id"] = "implicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", }, }, - ["1570_MinimumEnduranceCharges"] = { + ["1697_FireDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", }, - ["sign"] = "+", }, - ["1112_SwordIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814560373", - ["text"] = "#% increased Physical Damage with Swords", + ["1698_ColdDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - }, - ["1791_ChanceToFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", }, - ["sign"] = "", }, - ["1612_AvoidFreeze"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["1699_LightningDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - }, - ["4232_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", }, - ["sign"] = "", }, - ["1665_AvoidInterruptionWhileCasting"] = { + ["1709_LifeRegenerationRatePercentage"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", ["type"] = "implicit", - ["id"] = "implicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", }, - ["sign"] = "", }, - ["1179_SpellAddedLightningDamageTwoHand"] = { - ["specialCaseData"] = { + ["1720_ConvertPhysicalToFire"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["6988_AllDamageCorruptedItem"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_767196662", - ["text"] = "#% increased Damage if Corrupted", }, - ["sign"] = "", }, - ["7236_AddedManaRegenWithStaff"] = { - ["specialCaseData"] = { + ["1722_ConvertPhysicalToCold"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1388668644", - ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1332_EnergyShieldDelay"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", }, - ["sign"] = "", }, - ["6963_AttackAndCastSpeedCorruptedItem"] = { - ["specialCaseData"] = { + ["1724_MonsterConvertPhysicalDamageToLightning"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_26867112", - ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1131_FireDamagePercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["sign"] = "", }, - ["1499_MaximumLifeLeechRate"] = { - ["specialCaseData"] = { + ["1738_MinionDamage"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["3114_FireDamageAvoidance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", }, - ["sign"] = "", }, - ["1220_CastSpeedWithShield"] = { + ["1751_MaximumBlockChance"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", }, - ["sign"] = "", }, - ["1903_IncreasedSpellDamagePerPowerCharge"] = { + ["1801_CullingStrike"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", ["type"] = "implicit", - ["id"] = "implicit.stat_827329571", - ["text"] = "#% increased Spell Damage per Power Charge", }, - ["sign"] = "", }, - ["1212_ClawIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["1804_HitsCauseMonsterFlee"] = { + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1297965523", - ["text"] = "#% increased Accuracy Rating with Claws", + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, }, ["sign"] = "", - }, - ["130_LocalIncreaseSocketedDexterityGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", ["type"] = "implicit", - ["id"] = "implicit.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", }, - ["sign"] = "+", }, - ["1888_EnduranceChargeDuration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["1833_AddedPhysicalDamageToBowAttacksCorrupted"] = { + ["Quiver"] = { + ["max"] = 15.5, + ["min"] = 4.5, }, ["sign"] = "", - }, - ["1525_GainLifeOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_762600725", - ["text"] = "# Life gained when you Block", }, - ["sign"] = "", }, - ["8301_PhysicalDamageWithUnholyMight"] = { + ["1843_AddedFireDamageToBowAttacksCorrupted"] = { + ["Quiver"] = { + ["max"] = 54, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_1609570656", - ["text"] = "#% increased Physical Damage while you have Unholy Might", }, - ["sign"] = "", }, - ["1089_ClawIncreasedPhysicalDamage"] = { + ["1851_AddedColdDamageToBowAttacksCorrupted"] = { + ["Quiver"] = { + ["max"] = 48.5, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_635761691", - ["text"] = "#% increased Physical Damage with Claws", }, - ["sign"] = "", }, - ["4479_AttacksBlindOnHitChance"] = { + ["1859_AddedLightningDamageToBowAttacksCorrupted"] = { + ["Quiver"] = { + ["max"] = 57, + ["min"] = 19.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", }, - ["sign"] = "", }, - ["5814_FireDamagePerStrength"] = { + ["1866_AddedChaosDamageToBowAttacksCorrupted"] = { + ["Quiver"] = { + ["max"] = 36, + ["min"] = 30, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_2241902512", - ["text"] = "#% increased Fire Damage per 20 Strength", }, - ["sign"] = "", }, - ["1133_GlobalAddedFireDamage"] = { - ["specialCaseData"] = { + ["188_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["5310_SpellCriticalMultiplierWithShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_2311200892", - ["text"] = "#% to Critical Strike Multiplier for Spells while holding a Shield", }, - ["sign"] = "+", }, - ["5311_SpellCriticalMultiplierWithStaff"] = { + ["1931_AdditionalCurseOnEnemies"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { + ["id"] = "implicit.stat_30642521", + ["text"] = "You can apply # additional Curses", ["type"] = "implicit", - ["id"] = "implicit.stat_3629080637", - ["text"] = "#% to Critical Strike Multiplier for Spells while wielding a Staff", }, - ["sign"] = "+", }, - ["3195_SpectreDamage"] = { - ["specialCaseData"] = { + ["1933_CurseEffectOnYouJewel"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3645693773", - ["text"] = "Spectres have #% increased Damage", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["1351_BaseManaRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", ["type"] = "implicit", - ["id"] = "implicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", }, - ["sign"] = "", }, - ["1536_MinionMovementSpeed"] = { - ["specialCaseData"] = { + ["1991_ReservationEfficiencyForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", - }, - ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", ["type"] = "implicit", - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", }, - ["sign"] = "+", }, - ["1199_SwordIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["1994_ReducedReservationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", - }, - ["1921_IncreasedManaLeechRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", ["type"] = "implicit", - ["id"] = "implicit.stat_690135178", - ["text"] = "#% increased total Recovery per second from Mana Leech", }, - ["sign"] = "", }, - ["3396_SkeletonDamage"] = { - ["specialCaseData"] = { + ["1995_PhysicalAttackDamageTaken"] = { + ["Amulet"] = { + ["max"] = 17, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3059357595", - ["text"] = "Skeletons deal #% increased Damage", + ["Shield"] = { + ["max"] = 17, + ["min"] = 10, }, - ["sign"] = "", - }, - ["2921_PoisonDamage"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", ["type"] = "implicit", - ["id"] = "implicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["sign"] = "", }, - ["1140_ColdDamagePercentage"] = { + ["2000_AreaOfEffectDamageTaken"] = { + ["Shield"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3001376862", + ["text"] = "#% reduced Area Damage taken from Hits", ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", }, - ["sign"] = "", }, - ["4480_AttacksTauntOnHitChance"] = { + ["2004_ChaosDamageTakenPercentage"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", ["type"] = "implicit", - ["id"] = "implicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", }, - ["sign"] = "", }, - ["178_SocketedFireGemQuality"] = { + ["2010_IncreasedShieldBlockPercentage"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", }, ["tradeMod"] = { + ["id"] = "implicit.stat_4253454700", + ["text"] = "#% Chance to Block (Shields)", ["type"] = "implicit", - ["id"] = "implicit.stat_3422008440", - ["text"] = "#% to Quality of Socketed Fire Gems", }, - ["sign"] = "+", }, - ["171_SocketedAoEGemQuality"] = { + ["2016_TrapsAllowed"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", ["type"] = "implicit", - ["id"] = "implicit.stat_768982451", - ["text"] = "#% to Quality of Socketed AoE Gems", }, - ["sign"] = "+", }, - ["1419_LifeLeechLocalPermyriad"] = { + ["2193_EnemiesCantLifeLeech"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", }, - ["sign"] = "", }, - ["2361_MovementSpeedWhilePhased"] = { + ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3684879618", - ["text"] = "#% increased Movement Speed while Phasing", }, - ["sign"] = "", }, - ["1751_MaximumBlockChance"] = { + ["2200_PhysicalDamageTakenAsCold"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", }, - ["sign"] = "+", }, - ["5827_FireDamageSpellSkills"] = { + ["2201_PhysicalDamageTakenAsLightningPercent"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_361162316", - ["text"] = "#% increased Fire Damage with Spell Skills", }, - ["sign"] = "", }, - ["2280_CurseOnHitDespair"] = { + ["2203_PhysicalDamageTakenAsChaos"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", }, }, - ["1328_EnergyShield"] = { + ["2207_PercentDamageGoesToMana"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", }, - ["sign"] = "+", }, - ["1160_GlobalAddedChaosDamage"] = { - ["specialCaseData"] = { + ["2235_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, ["sign"] = "", - }, - ["8736_SpellDamagePer16Strength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", }, - ["sign"] = "", }, - ["8995_BurningGroundEffectEffectiveness"] = { + ["2243_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3944782785", + ["text"] = "#% increased Attack Damage against Bleeding Enemies", ["type"] = "implicit", - ["id"] = "implicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", }, }, - ["1177_SpellAddedFireDamageTwoHand"] = { + ["2274_CurseOnHitLevelTemporalChains"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", }, - ["sign"] = "", }, - ["1623_ChillAndFreezeDuration"] = { + ["2275_CurseOnHitLevelVulnerability"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", }, - ["sign"] = "", }, - ["9019_ShockedGroundEffectEffectiveness"] = { + ["2277_CurseOnHitLevelElementalWeakness"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", }, }, - ["2913_PoisonOnHit"] = { + ["2280_CurseOnHitDespair"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", }, - ["sign"] = "", }, - ["1194_StaffIncreasedAttackSpeed"] = { + ["2281_CurseOnHitEnfeeble"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1625819882", + ["text"] = "Curse Enemies with Enfeeble on Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", }, - ["sign"] = "", }, - ["1210_AxeIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["2377_FrenzyChargeOnKillChance"] = { + ["1HWeapon"] = { + ["max"] = 11, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2538120572", - ["text"] = "#% increased Accuracy Rating with Axes", + ["2HWeapon"] = { + ["max"] = 11, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 11, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 11, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 11, + ["min"] = 9, }, ["sign"] = "", - }, - ["4523_AilmentDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", ["type"] = "implicit", - ["id"] = "implicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", }, - ["sign"] = "", }, - ["987_DegenerationDamage"] = { - ["specialCaseData"] = { + ["243_SupportedByLifeGainOnHit"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["1007_PhysicalDamagePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", }, - ["sign"] = "", }, - ["5727_DisciplineEnergyShieldRegen"] = { + ["2445_DamageRemovedFromManaBeforeLife"] = { + ["Helmet"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "implicit", - ["id"] = "implicit.stat_991194404", - ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", }, - ["sign"] = "", }, - ["1920_IncreasedLifeLeechRate"] = { - ["specialCaseData"] = { + ["244_SocketedGemsSupportedByLifetap"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["3108_IncreasedAuraEffectDeterminationCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", }, - ["sign"] = "", }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { - ["specialCaseData"] = { + ["2493_LocalMeleeWeaponRange"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, }, ["sign"] = "+", - }, - ["185_AbyssJewelEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_350598685", + ["text"] = "# to Weapon Range", ["type"] = "implicit", - ["id"] = "implicit.stat_1482572705", - ["text"] = "#% increased Effect of Socketed Abyss Jewels", }, - ["sign"] = "", }, - ["1177_SpellAddedFireDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["2497_ProjectileDamageTaken"] = { + ["Shield"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["1362_ItemFoundQuantityIncrease"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", }, - ["sign"] = "", }, - ["2773_AttackAndCastSpeedWithOnslaught"] = { - ["specialCaseData"] = { + ["256_SupportedByOnslaught"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2320884914", - ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["7071_IncreasedEnergyShieldCorruptedItem"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", ["type"] = "implicit", - ["id"] = "implicit.stat_1025108940", - ["text"] = "#% increased maximum Energy Shield if Corrupted", }, - ["sign"] = "", }, - ["1339_IncreasedLife"] = { + ["2595_FishingQuantity"] = { + ["FishingRod"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", ["type"] = "implicit", - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", }, - ["sign"] = "+", }, - ["1998_FlatFireDamageTaken"] = { + ["2596_FishingRarity"] = { + ["FishingRod"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", ["type"] = "implicit", - ["id"] = "implicit.stat_614758785", - ["text"] = "# Fire Damage taken from Hits", }, - ["sign"] = "-", }, - ["5309_SpellCriticalMultiplierWithDualWield"] = { + ["2602_CorruptFish"] = { + ["FishingRod"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2451060005", + ["text"] = "You can catch Corrupted Fish", ["type"] = "implicit", - ["id"] = "implicit.stat_2349237916", - ["text"] = "#% to Critical Strike Multiplier for Spells while Dual Wielding", }, - ["sign"] = "+", }, - ["9064_VitalityReservationEfficiency"] = { + ["2719_ImmunityToBlind"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1436284579", + ["text"] = "Cannot be Blinded", ["type"] = "implicit", - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["1338_EnergyShieldRecoveryRate"] = { - ["specialCaseData"] = { + ["2723_ArmourPenetration"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", - }, - ["3327_FirePenetrationWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", ["type"] = "implicit", - ["id"] = "implicit.stat_1123291426", - ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", }, - ["sign"] = "", }, - ["1356_ManaRecoveryRate"] = { - ["specialCaseData"] = { + ["2725_ElementalPenetration"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["9277_UnwaveringStance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_1683578560", - ["text"] = "Unwavering Stance", }, }, - ["4339_ArmourEvasionWithFortify"] = { - ["specialCaseData"] = { + ["2726_FireResistancePenetration"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2962782530", - ["text"] = "# to Armour and Evasion Rating while Fortified", + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - }, - ["5390_DamagePer15Dexterity"] = { + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "implicit", - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", }, - ["sign"] = "", }, - ["1667_StunRecovery"] = { - ["specialCaseData"] = { + ["2727_ColdResistancePenetration"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["5826_FireDamageAttackSkills"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "implicit", - ["id"] = "implicit.stat_2468413380", - ["text"] = "#% increased Fire Damage with Attack Skills", }, - ["sign"] = "", }, - ["1506_LifeGainPerTargetLocal"] = { - ["specialCaseData"] = { + ["2728_LightningResistancePenetration"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["172_SocketedAuraGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "implicit", - ["id"] = "implicit.stat_2276941637", - ["text"] = "#% to Quality of Socketed Aura Gems", }, - ["sign"] = "+", }, - ["1490_EnergyShieldLeechPermyriad"] = { - ["specialCaseData"] = { + ["2737_ChanceToGainOnslaughtOnKill"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["sign"] = "", - }, - ["5493_DeterminationReservationEfficiency"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["1469_ManaLeechLocalPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", ["type"] = "implicit", - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, - ["sign"] = "", }, - ["1438_FireDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["2770_ChargeDuration"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["sign"] = "", - }, - ["1394_FireResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", }, - ["sign"] = "+", }, - ["4004_AddedColdDamagePerFrenzyCharge"] = { + ["2834_ImmuneToSilence"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", ["type"] = "implicit", - ["id"] = "implicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", }, - ["sign"] = "", }, - ["2725_ElementalPenetration"] = { - ["specialCaseData"] = { + ["2835_VaalSkillDamage"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["1606_CannotBeIgnited"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", ["type"] = "implicit", - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", }, }, - ["2654_MinionAttackSpeed"] = { - ["specialCaseData"] = { + ["2836_DamageWhileDead"] = { + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["BaseJewel"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["1205_IncreasedAccuracy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3582580206", + ["text"] = "#% increased Damage while Dead", ["type"] = "implicit", - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", }, - ["sign"] = "+", }, - ["3104_IncreasedAuraEffectGraceCorrupted"] = { - ["specialCaseData"] = { + ["2839_ChaosDamagePerCorruptedItem"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["1454_ElementalDamageLeechedAsLifePermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", ["type"] = "implicit", - ["id"] = "implicit.stat_720395808", - ["text"] = "#% of Elemental Damage Leeched as Life", }, - ["sign"] = "", }, - ["6573_LightningDamageSpellSkills"] = { - ["specialCaseData"] = { + ["2840_LifeLeechRatePerCorruptedItem"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3935031607", - ["text"] = "#% increased Lightning Damage with Spell Skills", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["3116_LightningDamageAvoidance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3815042054", + ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", ["type"] = "implicit", - ["id"] = "implicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", }, - ["sign"] = "", }, - ["5974_EnduranceChargeIfHitRecently"] = { - ["specialCaseData"] = { + ["2842_ManaLeechRatePerCorrupteditem"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["1335_EnergyShieldRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2679819855", + ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", ["type"] = "implicit", - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", }, - ["sign"] = "", }, - ["1600_FrenzyChargeOnHitChance"] = { - ["specialCaseData"] = { + ["2872_ChanceToTakeCriticalStrike"] = { + ["AnyJewel"] = { + ["max"] = 100, + ["min"] = 60, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["BaseJewel"] = { + ["max"] = 100, + ["min"] = 60, }, ["sign"] = "", - }, - ["3745_CurseEffectFlammability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", ["type"] = "implicit", - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", }, - ["sign"] = "", }, - ["1183_IncreasedAttackSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["2926_MovementSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - }, - ["1706_FireAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", }, - ["sign"] = "", }, - ["3746_CurseEffectFrostbite"] = { + ["3042_AttackSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", }, - ["sign"] = "", }, - ["2252_LightRadius"] = { - ["specialCaseData"] = { + ["3097_IncreasedAuraEffectAngerCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["2348_CurseEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", }, - ["sign"] = "", }, - ["1722_ConvertPhysicalToColdImplicit"] = { - ["specialCaseData"] = { + ["3102_IncreasedAuraEffectWrathCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["2311_ItemDropsOnGuardianDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_3909846940", - ["text"] = "Item drops on Death if Equipped by an Animated Guardian", }, }, - ["1809_AttackAndCastSpeed"] = { - ["specialCaseData"] = { + ["3104_IncreasedAuraEffectGraceCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1432_LifeLeechFromAttacksPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", }, - ["sign"] = "", }, - ["1720_ConvertPhysicalToFireImplicit"] = { - ["specialCaseData"] = { + ["3107_IncreasedAuraEffectHatredCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1219_CastSpeedWithDualWield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", }, - ["sign"] = "", }, - ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["3108_IncreasedAuraEffectDeterminationCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", }, - ["sign"] = "+", }, - ["1200_WandIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["3109_IncreasedAuraEffectDisciplineCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["400_SocketedSkillsManaMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", }, - ["sign"] = "", }, - ["1264_DaggerCriticalStrikeMultiplier"] = { + ["3110_CannotBePoisoned"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", ["type"] = "implicit", - ["id"] = "implicit.stat_3998601568", - ["text"] = "#% to Critical Strike Multiplier with Daggers", }, - ["sign"] = "+", }, - ["8412_PurityOfFireReservation"] = { - ["specialCaseData"] = { + ["3118_UnholyMightOnKillPercentChance"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["1179_SpellAddedLightningDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", }, - ["sign"] = "", }, - ["1341_MaximumLifeIncreasePercent"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["3129_LightningDamageTaken"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["2737_ChanceToGainOnslaughtOnKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", ["type"] = "implicit", - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["sign"] = "", }, - ["1890_FrenzyChargeDuration"] = { + ["3130_ColdDamageTakenPercentage"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", ["type"] = "implicit", - ["id"] = "implicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", }, - ["sign"] = "", }, - ["5284_SpellCriticalChanceWithShield"] = { - ["specialCaseData"] = { + ["346_DisplaySocketedGemsGetAddedFireDamage"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_952509814", - ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 12, }, ["sign"] = "", - }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", }, - ["sign"] = "+", }, - ["1193_AxeIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["350_DisplaySocketedGemGetsElementalProliferation"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["8735_SpellDamagePer16Intelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", ["type"] = "implicit", - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", }, - ["sign"] = "", }, - ["181_SocketedMeleeGemQuality"] = { - ["specialCaseData"] = { + ["354_SupportedByBlind"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1396421504", - ["text"] = "#% to Quality of Socketed Melee Gems", + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["8508_ReflectDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", ["type"] = "implicit", - ["id"] = "implicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", }, - ["sign"] = "", }, - ["2377_FrenzyChargeOnKillChance"] = { - ["specialCaseData"] = { + ["355_SupportedByMeleeSplash"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["3748_CurseEffectVulnerability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", ["type"] = "implicit", - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", }, - ["sign"] = "", }, - ["2375_EnduranceChargeOnKillChance"] = { - ["specialCaseData"] = { + ["356_SupportedByCastOnCrit"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, }, ["sign"] = "", - }, - ["919_BlockPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", }, - ["sign"] = "", }, - ["3380_ZombieIncreasedDamage"] = { - ["specialCaseData"] = { + ["357_SupportedByCastOnStun"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2228518621", - ["text"] = "Raised Zombies deal #% increased Damage", + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, }, ["sign"] = "", - }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", ["type"] = "implicit", - ["id"] = "implicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", }, - ["sign"] = "+", }, - ["1434_PhysicalDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["359_SupportedByStun"] = { + ["1HMace"] = { + ["max"] = 6, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 6, }, ["sign"] = "", - }, - ["3900_PhysicalDamageRemovedFromManaBeforeLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_689720069", + ["text"] = "Socketed Gems are supported by Level # Stun", ["type"] = "implicit", - ["id"] = "implicit.stat_3743438423", - ["text"] = "#% of Physical Damage is taken from Mana before Life", }, - ["sign"] = "", }, - ["1703_LightningAddedAsChaos"] = { - ["specialCaseData"] = { + ["360_SupportedByAccuracy"] = { + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["1HMace"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Dagger"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 12, }, ["sign"] = "", - }, - ["398_DisplaySocketedGemsGetReducedReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", ["type"] = "implicit", - ["id"] = "implicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", }, - ["sign"] = "", }, - ["1615_AvoidShock"] = { - ["specialCaseData"] = { + ["361_SupportedByMultistrike"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["144_IncreasedSocketedAoEGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", ["type"] = "implicit", - ["id"] = "implicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", }, - ["sign"] = "+", }, - ["5796_FasterBleedDamage"] = { - ["specialCaseData"] = { + ["362_SupportedByProjectileSpeed"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["1624_ShockDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", ["type"] = "implicit", - ["id"] = "implicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", }, - ["sign"] = "", }, - ["6572_LightningDamageAttackSkills"] = { - ["specialCaseData"] = { + ["363_SupportedByLifeLeech"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4208907162", - ["text"] = "#% increased Lightning Damage with Attack Skills", + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", - }, - ["1611_AvoidChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", ["type"] = "implicit", - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", }, - ["sign"] = "", }, - ["1000_SpellDamage"] = { - ["specialCaseData"] = { + ["365_SupportedByCriticalMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["Dagger"] = { + ["max"] = 14, + ["min"] = 14, }, ["sign"] = "", - }, - ["175_SocketedColdGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1164882313", - ["text"] = "#% to Quality of Socketed Cold Gems", }, - ["sign"] = "+", }, - ["5283_SpellCriticalChanceWithDualWield"] = { - ["specialCaseData"] = { + ["366_SupportedByFork"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1218939541", - ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["2200_PhysicalDamageTakenAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", }, - ["sign"] = "", }, - ["1743_ElementalDamagePercent"] = { - ["specialCaseData"] = { + ["367_SupportedByWeaponElementalDamage"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 12, }, ["sign"] = "", - }, - ["7233_AddedManaRegenWithDualWield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", ["type"] = "implicit", - ["id"] = "implicit.stat_1361343333", - ["text"] = "Regenerate # Mana per Second while Dual Wielding", }, - ["sign"] = "", }, - ["2379_PowerChargeOnKillChance"] = { - ["specialCaseData"] = { + ["369_SupportedByReducedMana"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["sign"] = "", - }, - ["975_AttackDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["169_IncreaseSocketedSupportGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", ["type"] = "implicit", - ["id"] = "implicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", }, - ["sign"] = "+", }, - ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { - ["specialCaseData"] = { + ["371_SupportedByFortify"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["1077_AxeIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2008219439", - ["text"] = "#% increased Physical Damage with Axes", + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["173_SocketedBowGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", ["type"] = "implicit", - ["id"] = "implicit.stat_3280600715", - ["text"] = "#% to Quality of Socketed Bow Gems", }, - ["sign"] = "+", }, - ["1625_ChillAndFreezeDuration"] = { - ["specialCaseData"] = { + ["374_DisplaySocketedGemsGetFasterCast"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["1408_MaximumChaosResistanceImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", ["type"] = "implicit", - ["id"] = "implicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", }, - ["sign"] = "+", }, - ["1705_ColdAddedAsChaos"] = { + ["3946_BleedingImmunity"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", ["type"] = "implicit", - ["id"] = "implicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", }, - ["sign"] = "", }, - ["1265_MaceCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["3947_ChanceToAvoidBleeding"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_458899422", - ["text"] = "#% to Critical Strike Multiplier with Maces or Sceptres", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["sign"] = "+", - }, - ["1271_StaffCriticalStrikeMultiplier"] = { + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", ["type"] = "implicit", - ["id"] = "implicit.stat_1474913037", - ["text"] = "#% to Critical Strike Multiplier with Staves", }, - ["sign"] = "+", }, - ["2726_FireResistancePenetration"] = { - ["specialCaseData"] = { + ["400_SocketedSkillsManaMultiplier"] = { + ["Chest"] = { + ["max"] = 95, + ["min"] = 95, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["Helmet"] = { + ["max"] = 90, + ["min"] = 90, }, ["sign"] = "", - }, - ["1575_MinimumFrenzyCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", ["type"] = "implicit", - ["id"] = "implicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", }, - ["sign"] = "+", }, - ["1517_MaximumLifeOnKillPercent"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["4044_PhysicalDamageReductionWhileNotMoving"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["6978_LocalChanceToIntimidateOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", ["type"] = "implicit", - ["id"] = "implicit.stat_78985352", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", }, - ["sign"] = "", }, - ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { + ["4045_AddedArmourWhileStationary"] = { + ["Boots"] = { + ["max"] = 322, + ["min"] = 35, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2551779822", + ["text"] = "# Armour while stationary", ["type"] = "implicit", - ["id"] = "implicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", }, - ["sign"] = "", }, - ["2939_DamagePerEnduranceCharge"] = { + ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["Gloves"] = { + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", }, - ["sign"] = "", }, - ["3118_UnholyMightOnKillPercentChance"] = { + ["4502_AvoidMaimChance"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1126826428", + ["text"] = "You cannot be Maimed", ["type"] = "implicit", - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", }, - ["sign"] = "", }, - ["2845_VaalSkillDuration"] = { + ["4825_CorruptedBloodImmunity"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "implicit", - ["id"] = "implicit.stat_547412107", - ["text"] = "#% increased Vaal Skill Effect Duration", }, - ["sign"] = "", }, - ["2241_ChanceToBleed"] = { + ["4875_CastSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", }, - ["sign"] = "", }, - ["1003_SpellDamageWithStaff"] = { - ["specialCaseData"] = { + ["5049_GainEnduranceChargeOnStunChance"] = { + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - }, - ["1388_AllResistances"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1582887649", + ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", }, - ["sign"] = "+", }, - ["923_ChanceToSuppressSpellsOld"] = { + ["5153_ChillEffect"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", }, - ["sign"] = "+", }, - ["8416_PurityOfIceReservationEfficiency"] = { + ["5262_IncreasedCriticalStrikeUnderFlaskEffect"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 35, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2898434123", + ["text"] = "#% increased Critical Strike Chance during any Flask Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["174_SocketedChaosGemQuality"] = { + ["5292_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_240289863", + ["text"] = "#% to Critical Strike Multiplier during any Flask Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_2062835769", - ["text"] = "#% to Quality of Socketed Chaos Gems", }, - ["sign"] = "+", }, - ["1512_ManaGainPerTarget"] = { - ["specialCaseData"] = { + ["5481_IncreasedAuraEffectMalevolenceCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1964_AttackerTakesDamageNoRange"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", }, - ["sign"] = "", }, - ["1327_IncreasedEvasionRatingPerFrenzyCharge"] = { - ["specialCaseData"] = { + ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_660404777", - ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["Ring"] = { + ["max"] = 12, + ["min"] = 6, }, ["sign"] = "", - }, - ["1349_IncreasedMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", ["type"] = "implicit", - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["1709_LifeRegenerationRatePercentage"] = { + ["5936_GainFrenzyChargeAfterSpending200Mana"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3868549606", + ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", }, - ["sign"] = "", }, - ["961_PercentageStrength"] = { + ["6069_AddedEvasionWhileMovingCorrupted"] = { + ["Boots"] = { + ["max"] = 322, + ["min"] = 35, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3825877290", + ["text"] = "# to Global Evasion Rating while moving", ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", }, - ["sign"] = "", }, - ["3326_ColdPenetrationWeapon"] = { + ["6526_LifeRegenerationWhileMoving"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2841027131", + ["text"] = "Regenerate # Life per second while moving", ["type"] = "implicit", - ["id"] = "implicit.stat_1211769158", - ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", }, - ["sign"] = "", }, - ["1178_SpellAddedColdDamage"] = { - ["specialCaseData"] = { + ["8192_IncreasedAilmentEffectOnEnemies"] = { + ["AbyssJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - }, - ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", }, - ["sign"] = "", }, - ["1006_SpellDamageWithDualWield"] = { - ["specialCaseData"] = { + ["8365_IncreasedAuraEffectPrideCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["8419_PurityOfLightningReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["2658_MinionLifeRegeneration"] = { + ["8383_IncreasedProjectileDamageForEachChain"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1923210508", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", ["type"] = "implicit", - ["id"] = "implicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", }, - ["sign"] = "", }, - ["8320_PhysicalDamageAttackSkills"] = { + ["8384_ProjectileDamagePerEnemyPierced"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", ["type"] = "implicit", - ["id"] = "implicit.stat_2266750692", - ["text"] = "#% increased Physical Damage with Attack Skills", }, - ["sign"] = "", }, - ["953_AllAttributes"] = { + ["8606_ShockEffect"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", ["type"] = "implicit", - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", }, - ["sign"] = "+", }, - ["1526_GainManaOnBlock"] = { + ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { + ["Gloves"] = { + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", }, - ["sign"] = "", }, - ["6087_GraceReservationEfficiency"] = { + ["8757_DodgeSpellHitsWhileMoving"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2907896585", + ["text"] = "#% chance to Suppress Spell Damage while moving", ["type"] = "implicit", - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["1658_IncreaseManaCostFlat"] = { + ["9164_YouCannotBeHindered"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_721014846", + ["text"] = "You cannot be Hindered", ["type"] = "implicit", - ["id"] = "implicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", }, - ["sign"] = "-", }, - ["1320_GlobalEvasionRatingPercent"] = { - ["specialCaseData"] = { + ["919_BlockPercent"] = { + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 4, + ["min"] = 2, }, ["sign"] = "", - }, - ["1605_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_876831634", - ["text"] = "Cannot be Frozen", }, }, - ["1331_GlobalEnergyShieldPercent"] = { + ["919_MonsterBlock"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "", }, - ["4312_AreaOfEffectIfStunnedEnemyRecently"] = { - ["specialCaseData"] = { + ["9212_IncreasedAuraEffectZealotryCorrupted"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1700_PhysicalAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", }, - ["sign"] = "", }, - ["2275_CurseOnHitLevelVulnerability"] = { + ["923_ChanceToSuppressSpellsOld"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", }, }, - ["1758_ProjectileDamage"] = { + ["924_ChanceToSuppressSpells"] = { + ["Boots"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", }, - ["sign"] = "", }, - ["1034_ChaosDamageOverTimeMultiplier"] = { + ["9264_PointBlank"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2896346114", + ["text"] = "Point Blank", ["type"] = "implicit", - ["id"] = "implicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", }, - ["sign"] = "+", }, - ["5172_FlatColdDamageTaken"] = { - ["specialCaseData"] = { + ["9283_ResoluteTechnique"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_261654754", - ["text"] = "# Cold Damage taken from Hits", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "-", - }, - ["1993_ReducedReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3943945975", + ["text"] = "Resolute Technique", ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", }, - ["sign"] = "", }, - ["1508_LifeGainPerTarget"] = { - ["specialCaseData"] = { + ["933_BlockingBlocksSpells"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["176_SocketedDexterityGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2877754099", - ["text"] = "#% to Quality of Socketed Dexterity Gems", }, - ["sign"] = "+", }, - ["8974_DamageWithTriggeredSpells"] = { - ["specialCaseData"] = { + ["938_SpellBlockPercentage"] = { + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["Amulet"] = { + ["max"] = 5, + ["min"] = 2, }, - ["sign"] = "", - }, - ["7218_RecoverManaPercentOnBlock"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", + ["Staff"] = { + ["max"] = 4, + ["min"] = 2, }, ["sign"] = "", - }, - ["3303_AuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", }, - ["sign"] = "", }, - ["1288_StunThresholdReduction"] = { + ["939_BlockWhileDualWielding"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", }, - ["sign"] = "", }, - ["2909_BleedingDamage"] = { - ["specialCaseData"] = { + ["961_IncreasedDexterityStrengthCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["1081_StaffIncreasedPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "implicit", - ["id"] = "implicit.stat_3150705301", - ["text"] = "#% increased Physical Damage with Staves", }, - ["sign"] = "", }, - ["5174_ColdDamageAttackSkills"] = { - ["specialCaseData"] = { + ["961_IncreasedStrengthIntelligenceCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_860668586", - ["text"] = "#% increased Cold Damage with Attack Skills", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["954_StrengthImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "implicit", - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", }, - ["sign"] = "+", }, - ["3743_CurseEffectElementalWeakness"] = { - ["specialCaseData"] = { + ["962_IncreasedDexterityStrengthCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["5613_IncreasedWeaponElementalDamagePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", }, - ["sign"] = "", }, - ["1269_WandCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["962_IncreasedIntelligenceDexterityCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1241396104", - ["text"] = "#% to Critical Strike Multiplier with Wands", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "+", - }, - ["8542_RemoveShockOnFlaskUse"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "implicit", - ["id"] = "implicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", }, }, - ["8734_SpellDamagePer16Dexterity"] = { - ["specialCaseData"] = { + ["963_IncreasedIntelligenceDexterityCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["1945_BeltIncreasedFlaskChargesGained"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "implicit", - ["id"] = "implicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", }, - ["sign"] = "", }, - ["1196_DaggerIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["963_IncreasedStrengthIntelligenceCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["1215_BowIncreasedAccuracyRating"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "implicit", - ["id"] = "implicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", }, - ["sign"] = "", }, - ["184_SocketedStrengthGemQuality"] = { - ["specialCaseData"] = { + ["968_IncreasedDamage"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_122841557", - ["text"] = "#% to Quality of Socketed Strength Gems", + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 4, }, - ["sign"] = "+", - }, - ["4485_AddedColdDamagePerDexterity"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, }, ["sign"] = "", - }, - ["2655_MinionCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", }, - ["sign"] = "", }, - ["6086_GraceReservation"] = { - ["specialCaseData"] = { + ["987_DamageOverTime"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["Dagger"] = { + ["max"] = 60, + ["min"] = 50, }, ["sign"] = "", - }, - ["2727_ColdResistancePenetration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", }, - ["sign"] = "", }, - ["1031_ColdDamageOverTimeMultiplier"] = { - ["specialCaseData"] = { + }, + ["Eater"] = { + ["1000_SpellDamage"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", + ["Helmet"] = { + ["max"] = 29, + ["min"] = 14, }, - ["sign"] = "+", - }, - ["5391_DamagePer15Intelligence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", }, - ["sign"] = "", }, - ["8765_SpellsHinderOnHitChance"] = { - ["specialCaseData"] = { + ["1000_SpellDamagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 53, + ["min"] = 44, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["Helmet"] = { + ["max"] = 53, + ["min"] = 44, }, ["sign"] = "", - }, - ["2283_FrostbiteOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_817495383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", }, }, - ["5504_DisciplineReservation"] = { - ["specialCaseData"] = { + ["1000_SpellDamageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 41, + ["min"] = 29, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["Helmet"] = { + ["max"] = 41, + ["min"] = 29, }, ["sign"] = "", - }, - ["1630_StunDurationIncreasePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4136821316", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", }, - ["sign"] = "", }, - ["7908_FortifyEffect"] = { + ["1206_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_335507772", - ["text"] = "# to maximum Fortification", }, - ["sign"] = "+", }, - ["1501_MaximumManaLeechRate"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["1206_IncreasedAccuracyPercentPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 28, + ["min"] = 21, }, ["sign"] = "", - }, - ["1450_ChaosDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2086047206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", }, - ["sign"] = "", }, - ["5035_ChanceWhenHitForArmourToBeDoubled"] = { + ["1206_IncreasedAccuracyPercentUniquePresence"] = { + ["Gloves"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2423625781", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", }, - ["sign"] = "", }, - ["1447_LightningDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["Chest"] = { + ["max"] = 28, + ["min"] = 17, }, ["sign"] = "", - }, - ["1268_SwordCriticalStrikeMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "implicit", - ["id"] = "implicit.stat_3114492047", - ["text"] = "#% to Critical Strike Multiplier with Swords", }, - ["sign"] = "+", }, - ["2835_VaalSkillDamage"] = { - ["specialCaseData"] = { + ["1312_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 33, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", + ["Chest"] = { + ["max"] = 40, + ["min"] = 33, }, ["sign"] = "", - }, - ["1344_LifeRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1371764251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", ["type"] = "implicit", - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", }, - ["sign"] = "", }, - ["2033_ReducedPhysicalDamageTaken"] = { - ["specialCaseData"] = { + ["1312_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { + ["Amulet"] = { + ["max"] = 34, + ["min"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["Chest"] = { + ["max"] = 34, + ["min"] = 25, }, ["sign"] = "", - }, - ["1616_ChanceToAvoidPoison"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1980216452", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", }, - ["sign"] = "", }, - ["7932_LifeAddedAsEnergyShield"] = { - ["specialCaseData"] = { + ["1320_GlobalEvasionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["Chest"] = { + ["max"] = 28, + ["min"] = 17, }, ["sign"] = "", - }, - ["1398_MaximumColdResistanceImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", }, - ["sign"] = "+", }, - ["1231_CriticalStrikeChance"] = { + ["1320_GlobalEvasionRatingPercentPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 33, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2386062386", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", }, - ["sign"] = "", }, - ["1650_ManaCostReduction"] = { + ["1320_GlobalEvasionRatingPercentUniquePresence"] = { + ["Amulet"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["Chest"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3394288644", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", }, - ["sign"] = "", }, - ["1266_AxeCriticalStrikeMultiplier"] = { + ["1331_GlobalEnergyShieldPercent"] = { + ["Amulet"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_4219746989", - ["text"] = "#% to Critical Strike Multiplier with Axes", }, - ["sign"] = "+", }, - ["5505_DisciplineReservationEfficiency"] = { + ["1331_GlobalEnergyShieldPercentPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Chest"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1917716710", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["2844_AdditionalVaalSoulOnKill"] = { + ["1331_GlobalEnergyShieldPercentUniquePresence"] = { + ["Amulet"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1114962813", + ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", }, - ["sign"] = "", }, - ["2682_PhysicalDamageAddedAsRandomElement"] = { + ["1335_EnergyShieldRegeneration"] = { + ["Amulet"] = { + ["max"] = 26, + ["min"] = 21, + }, + ["Helmet"] = { + ["max"] = 26, + ["min"] = 21, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", }, - ["sign"] = "", }, - ["1788_ChanceToIgnite"] = { + ["1335_EnergyShieldRegenerationPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 32, + ["min"] = 29, + }, + ["Helmet"] = { + ["max"] = 32, + ["min"] = 29, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_26006636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", }, - ["sign"] = "", }, - ["1697_PhysicalAddedAsFire"] = { + ["1335_EnergyShieldRegenerationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 25, + }, + ["Helmet"] = { + ["max"] = 29, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3806837783", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", }, - ["sign"] = "", }, - ["2847_VaalSkillCriticalStrikeChance"] = { + ["1338_EnergyShieldRecoveryRate"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", }, - ["sign"] = "", }, - ["1348_LifeRecoveryRate"] = { + ["1338_EnergyShieldRecoveryRatePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_92591094", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", }, - ["sign"] = "", }, - ["1692_TrapThrowSpeed"] = { + ["1338_EnergyShieldRecoveryRateUniquePresence"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_587322642", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", }, - ["sign"] = "", }, - ["5797_FasterPoisonDamage"] = { + ["1346_LifeRegenerationPercentPerEnduranceCharge"] = { + ["Boots"] = { + ["max"] = 0.3, + ["min"] = 0.2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", ["type"] = "implicit", - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", }, - ["sign"] = "", }, - ["1417_LifeLeechPermyriad"] = { + ["1346_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 0.5, + ["min"] = 0.4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3225230656", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge", ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", }, - ["sign"] = "", }, - ["183_SocketedProjectileGemQuality"] = { + ["1346_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { + ["Boots"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1123587207", + ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", ["type"] = "implicit", - ["id"] = "implicit.stat_2428621158", - ["text"] = "#% to Quality of Socketed Projectile Gems", }, - ["sign"] = "+", }, - ["3800_DamageAffectedByAuras"] = { + ["1347_LifeRegenerationRate"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "implicit", - ["id"] = "implicit.stat_1419713278", - ["text"] = "You and nearby Allies deal #% increased Damage", }, - ["sign"] = "", }, - ["1216_SwordIncreasedAccuracyRating"] = { + ["1347_LifeRegenerationRatePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["Boots"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_498250787", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", ["type"] = "implicit", - ["id"] = "implicit.stat_2090868905", - ["text"] = "#% increased Accuracy Rating with Swords", }, - ["sign"] = "", }, - ["1095_DaggerIncreasedPhysicalDamage"] = { + ["1347_LifeRegenerationRateUniquePresence"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1916766878", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3882531569", - ["text"] = "#% increased Physical Damage with Daggers", }, - ["sign"] = "", }, - ["956_IntelligenceImplicit"] = { + ["1348_LifeRecoveryRate"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", }, - ["sign"] = "+", }, - ["3109_IncreasedAuraEffectDisciplineCorrupted"] = { + ["1348_LifeRecoveryRatePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2761472996", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", }, - ["sign"] = "", }, - ["5285_SpellCriticalChanceWithStaff"] = { + ["1348_LifeRecoveryRateUniquePresence"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1481249164", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_140429540", - ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", }, - ["sign"] = "", }, - ["1727_PhysicalDamageConvertToChaosImplicit"] = { + ["1354_ManaRegeneration"] = { + ["Helmet"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", }, - ["sign"] = "", }, - ["7080_AllElementalResistanceCorruptedItem"] = { + ["1354_ManaRegenerationPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4222133389", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3731630482", - ["text"] = "#% to all Elemental Resistances if Corrupted", }, - ["sign"] = "+", }, - ["1724_ConvertPhysicalToLightningImplicit"] = { + ["1354_ManaRegenerationUniquePresence"] = { + ["Helmet"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_760444887", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, - ["sign"] = "", }, - ["7234_AddedManaRegenWithShield"] = { + ["1356_ManaRecoveryRate"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_3762868276", - ["text"] = "Regenerate # Mana per Second while holding a Shield", }, - ["sign"] = "", }, - ["996_DamageWhileLeechingMana"] = { + ["1356_ManaRecoveryRatePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_4117139221", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_1994684426", - ["text"] = "#% increased Damage while Leeching Mana", }, - ["sign"] = "", }, - ["1400_ColdResistance"] = { + ["1356_ManaRecoveryRateUniquePresence"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1217759839", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", }, - ["sign"] = "+", }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["1388_AllResistances"] = { + ["Chest"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", }, - ["sign"] = "+", }, - ["2277_CurseOnHitLevelElementalWeakness"] = { + ["1388_AllResistancesPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 28, + ["min"] = 21, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2251516251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all Elemental Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", }, }, - ["6989_DamageTakenCorruptedItem"] = { + ["1388_AllResistancesUniquePresence"] = { + ["Chest"] = { + ["max"] = 22, + ["min"] = 13, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2358153166", + ["text"] = "While a Unique Enemy is in your Presence, #% to all Elemental Resistances", ["type"] = "implicit", - ["id"] = "implicit.stat_3309607228", - ["text"] = "#% reduced Damage taken if Corrupted", }, - ["sign"] = "", }, - ["1373_ExperienceIncrease"] = { + ["1436_PhysicalDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", ["type"] = "implicit", - ["id"] = "implicit.stat_3666934677", - ["text"] = "#% increased Experience gain", }, - ["sign"] = "", }, - }, - ["Explicit"] = { - ["1713_ChaosDamageOverTimeTaken"] = { + ["1436_PhysicalDamageLifeLeechPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", + ["id"] = "implicit.stat_2500914030", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["962_PercentageDexterity"] = { + ["1436_PhysicalDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["min"] = 6, - ["max"] = 12, + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "implicit.stat_2443166200", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1440_FireDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 12, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", }, }, - ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["1440_FireDamageLifeLeechPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 1.1, + ["min"] = 0.8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "implicit.stat_1954944666", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + }, + ["1440_FireDamageLifeLeechUniquePresence"] = { + ["Gloves"] = { + ["max"] = 0.9, + ["min"] = 0.5, }, ["sign"] = "", - }, - ["970_TotemDamageSpellSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "implicit.stat_3430693940", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1445_ColdDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["specialCaseData"] = { }, - }, - ["1703_LightningAddedAsChaos"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1445_ColdDamageLifeLeechPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 1.1, + ["min"] = 0.8, }, ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_339123312", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", }, }, - ["1000_TwoHandWeaponSpellDamageAndMana"] = { + ["1445_ColdDamageLifeLeechUniquePresence"] = { + ["Gloves"] = { + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_3357881628", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + }, + ["1449_LightningDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1260_CriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 24, + }, + ["1449_LightningDamageLifeLeechPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 1.1, + ["min"] = 0.8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 38, - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + ["tradeMod"] = { + ["id"] = "implicit.stat_1896842319", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", }, }, - ["1206_IncreasedAccuracyPercent"] = { + ["1449_LightningDamageLifeLeechUniquePresence"] = { ["Gloves"] = { - ["min"] = 12, - ["max"] = 30, + ["max"] = 0.9, + ["min"] = 0.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 12, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_2824722288", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1452_ChaosDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 6, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["5613_IncreasedWeaponElementalDamagePercentSupported"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["id"] = "implicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1452_ChaosDamageLifeLeechPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 1.1, + ["min"] = 0.8, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 37, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 28, - ["max"] = 37, + ["tradeMod"] = { + ["id"] = "implicit.stat_10259064", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", }, }, - ["1565_MovementVelocitySpeed"] = { + ["1452_ChaosDamageLifeLeechUniquePresence"] = { + ["Gloves"] = { + ["max"] = 0.9, + ["min"] = 0.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "implicit.stat_1172401338", + ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2654_MinionAttackAndCastSpeedOnWeapon"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["1557_AdditionalPierce"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, + ["1557_AdditionalPiercePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["tradeMod"] = { + ["id"] = "implicit.stat_4045839821", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", }, }, - ["8192_IncreasedAilmentEffectOnEnemies"] = { - ["Shield"] = { - ["min"] = 15, - ["max"] = 25, + ["1557_AdditionalPierceUniquePresence"] = { + ["Gloves"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3924473787", + ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", + ["type"] = "implicit", }, - ["Quiver"] = { + }, + ["1610_AvoidElementalStatusAilments"] = { + ["Boots"] = { + ["max"] = 32, ["min"] = 15, - ["max"] = 25, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", }, + }, + ["1610_AvoidElementalStatusAilmentsPinnaclePresence"] = { ["Boots"] = { - ["min"] = 30, - ["max"] = 60, + ["max"] = 50, + ["min"] = 39, }, - }, - ["1692_TrapSpeedCooldownSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "implicit.stat_4241033239", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 20, + }, + ["1610_AvoidElementalStatusAilmentsUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, ["sign"] = "", - }, - ["393_PoisonDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "implicit.stat_3264420229", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["1616_ChanceToAvoidPoison"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, }, ["sign"] = "", - }, - ["8728_SpellDamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2080171093", - ["text"] = "#% increased Spell Damage during any Flask Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", }, }, - ["158_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["1616_ChanceToAvoidPoisonPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_524797741", - ["text"] = "# to Level of Socketed Active Skill Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2714750784", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1738_MinionDamageOnWeaponDoubleDamage"] = { + ["1616_ChanceToAvoidPoisonUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "implicit.stat_3553907672", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1836_AddedPhysicalDamageWithMaces"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3882662078", - ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", - }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["1627_IncreasedAilmentDuration"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 24, + ["min"] = 13, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "implicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "implicit", }, }, - ["236_CriticalStrikeChanceSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["1627_IncreasedAilmentDurationPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 29, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 36, + ["min"] = 29, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - }, - ["7674_MapMonsterPacksVaalMapWorlds"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2609768284", - ["text"] = "Area is inhabited by the Vaal", + ["id"] = "implicit.stat_867827325", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", }, }, - ["8610_ShockYourselfOnFocusCDR"] = { - ["specialCaseData"] = { + ["1627_IncreasedAilmentDurationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3181879507", - ["text"] = "Shock yourself for # Seconds when you Focus", + ["Helmet"] = { + ["max"] = 30, + ["min"] = 21, }, ["sign"] = "", - }, - ["2199_PhysicalDamageTakenAsFireAndLightningPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "implicit.stat_3341892633", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 9, + }, + ["1641_ReducedFreezeDuration"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 33, }, ["sign"] = "", - }, - ["7013_NearbyEnemyLightningDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1849749435", - ["text"] = "Nearby Enemies have #% to Lightning Resistance", + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", }, + }, + ["1641_ReducedFreezeDurationPinnaclePresence"] = { ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["max"] = 70, + ["min"] = 57, }, - ["sign"] = "-", - }, - ["8733_SpellDamagePer10Strength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_928972227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1693_MineLayingSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["1641_ReducedFreezeDurationUniquePresence"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 45, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_3985862221", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", + ["type"] = "implicit", }, + }, + ["1642_ReducedIgniteDurationOnSelf"] = { ["Helmet"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 50, + ["min"] = 33, }, - }, - ["5654_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2909_BleedingDamageChanceWeaponSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - }, - ["specialCaseData"] = { + ["1642_ReducedIgniteDurationOnSelfPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 70, + ["min"] = 57, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_3042217102", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", }, }, - ["1041_AddedPhysicalSuffix"] = { + ["1642_ReducedIgniteDurationOnSelfUniquePresence"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "implicit.stat_2520245478", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 6, + }, + ["1662_SkillEffectDuration"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 7, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", }, }, - ["1597_PowerChargeOnCriticalStrikeChance"] = { + ["1662_SkillEffectDurationPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", }, - ["Chest"] = { + }, + ["1662_SkillEffectDurationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 24, ["min"] = 15, - ["max"] = 15, }, ["sign"] = "", - }, - ["1877_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2135335407", - ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1697_PhysicalAddedAsFire"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["specialCaseData"] = { }, - }, - ["5036_AdditionalChanceToEvade"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 2, + }, + ["1697_PhysicalAddedAsFirePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 9, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 2, - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335630001", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", }, }, - ["1349_IncreasedManaAndDegenGracePeriod"] = { + ["1697_PhysicalAddedAsFireUniquePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_3549954477", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["421_SocketedGemsDealMoreElementalDamage"] = { + ["1698_PhysicalAddedAsCold"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3835899275", - ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1178_SpellAddedColdSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, - ["AbyssJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["1698_PhysicalAddedAsColdPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 9, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1425454108", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", }, }, - ["1809_AttackAndCastSpeedForJewel"] = { + ["1698_PhysicalAddedAsColdUniquePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "implicit.stat_3171354842", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + }, + ["1699_PhysicalAddedAsLightning"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1699_PhysicalAddedAsLightningPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 9, + }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_632297605", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", }, }, - ["202_BleedingDamageSupported"] = { + ["1699_PhysicalAddedAsLightningUniquePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["id"] = "implicit.stat_1918094957", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["1700_PhysicalDamageAddedAsChaos"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["7223_MaximumManaOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_630994130", - ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 5, + }, + ["1700_PhysicalDamageAddedAsChaosPinnaclePresence"] = { + ["Boots"] = { ["max"] = 10, + ["min"] = 9, }, ["sign"] = "", - }, - ["2286_MeleeWeaponAndUnarmedRange"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", + ["id"] = "implicit.stat_3490650294", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, + }, + ["1700_PhysicalDamageAddedAsChaosUniquePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_620552892", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["130_DelveDexterityGemLevel"] = { + ["1720_ConvertPhysicalToFireImplicit"] = { ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 35, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1720_ConvertPhysicalToFirePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 65, + ["min"] = 50, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_3764409984", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", }, }, - ["9225_MinionLargerAggroRadius"] = { + ["1720_ConvertPhysicalToFireUniquePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_128585622", - ["text"] = "Minions are Aggressive", + ["id"] = "implicit.stat_380027104", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", }, }, - ["8413_PurityOfFireReservationEfficiency"] = { + ["1722_ConvertPhysicalToColdImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", }, - ["Amulet"] = { + }, + ["1722_ConvertPhysicalToColdPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 65, ["min"] = 50, - ["max"] = 60, }, ["sign"] = "", - }, - ["1150_ColdGemCastSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_928238845", - ["text"] = "#% increased Cast Speed with Cold Skills", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3567752586", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1722_ConvertPhysicalToColdUniquePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 30, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1153825002", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", }, }, - ["2200_ColdResistancePhysTakenAsCold"] = { + ["1724_ConvertPhysicalToLightningImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["202_ChanceToBleedSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", - }, - ["specialCaseData"] = { + ["1724_ConvertPhysicalToLightningPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 65, + ["min"] = 50, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_3718361973", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", }, }, - ["5481_MalevolenceAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", + ["1724_ConvertPhysicalToLightningUniquePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 30, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1516273114", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1727_ConvertPhysicalToChaosPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 65, + ["min"] = 50, + }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["tradeMod"] = { + ["id"] = "implicit.stat_2204282073", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", }, }, - ["142_LocalIncreaseSocketedSpellGemLevel"] = { + ["1727_ConvertPhysicalToChaosUniquePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_446733281", - ["text"] = "# to Level of Socketed Spell Gems", + ["id"] = "implicit.stat_1623369100", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["391_ShockEffectSupported"] = { + ["1727_PhysicalDamageConvertToChaosImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1106668565", - ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", }, + }, + ["1742_IncreasedManaRegenerationPerPowerCharge"] = { ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 6, + ["min"] = 5, }, ["sign"] = "", - }, - ["1350_PercentageLifeAndMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "implicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 10, + }, + ["1742_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 7, }, ["sign"] = "", - }, - ["1349_AbyssJewelMana"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_2425364074", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, + }, + ["1742_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 7, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, - }, - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_1918872160", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", }, }, - ["1575_MinimumFrenzyChargesAndOnKillLose"] = { + ["1788_ChanceToIgnite"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["7197_MalevolenceReservation"] = { + ["1788_ChanceToIgnitePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_1030674088", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["289_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["1788_ChanceToIgniteUniquePresence"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3699494172", - ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["id"] = "implicit.stat_874990741", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Ignite", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["1791_ChanceToFreeze"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 5, }, ["sign"] = "", - }, - ["1347_LifeRegenerationRate"] = { - ["Gloves"] = { - ["min"] = 9, - ["max"] = 21, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 21, - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 9, - ["max"] = 21, - }, - ["Boots"] = { - ["min"] = 9, - ["max"] = 21, - }, - }, - ["1791_FreezeChanceAndDurationForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", + ["id"] = "implicit.stat_2309614417", ["text"] = "#% chance to Freeze", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["type"] = "implicit", }, }, - ["1571_MaximumEnduranceCharges"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["1791_ChanceToFreezePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 35, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_4146719724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", + ["type"] = "implicit", }, }, - ["1611_AvoidChillForJewel"] = { + ["1791_ChanceToFreezeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", + ["id"] = "implicit.stat_1096728982", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3116_LightningDamageAvoidance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - }, - ["Boots"] = { + ["1795_ChanceToShock"] = { + ["Helmet"] = { + ["max"] = 30, ["min"] = 5, - ["max"] = 10, - }, - ["Quiver"] = { - ["min"] = 6, - ["max"] = 10, - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, - }, - }, - ["1923_MaximumMinionCountAndMinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", }, + }, + ["1795_ChanceToShockPinnaclePresence"] = { ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 50, + ["min"] = 35, }, - ["sign"] = "+", - }, - ["5153_ChillEffectSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["id"] = "implicit.stat_2459490852", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", + ["type"] = "implicit", }, + }, + ["1795_ChanceToShockUniquePresence"] = { ["Helmet"] = { - ["min"] = 8, - ["max"] = 20, + ["max"] = 40, + ["min"] = 20, }, ["sign"] = "", - }, - ["1018_GlobalDamageOverTimeMultiplier"] = { - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3988349707", - ["text"] = "#% to Damage over Time Multiplier", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 45, + ["id"] = "implicit.stat_2621869142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", + ["type"] = "implicit", }, + }, + ["1989_ManaReservationEfficiency"] = { ["Amulet"] = { + ["max"] = 12, ["min"] = 7, - ["max"] = 26, }, - ["1HWeapon"] = { + ["Helmet"] = { + ["max"] = 12, ["min"] = 7, - ["max"] = 26, }, - }, - ["371_DisplaySocketedGemsSupportedByFortify"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 25, + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", }, }, - ["930_PowerChargeOnBlockUber"] = { + ["1989_ManaReservationEfficiencyPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["id"] = "implicit.stat_4213793369", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["4531_ChanceToAvoidProjectiles"] = { - ["specialCaseData"] = { + ["1989_ManaReservationEfficiencyUniquePresence"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", + ["Helmet"] = { + ["max"] = 15, + ["min"] = 11, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 12, - }, - }, - ["1349_WeaponSpellDamageAndMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 45, + ["id"] = "implicit.stat_2358903592", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["8797_StatusAilmentsYouInflictDurationWhileFocused"] = { + ["2199_PhysicalDamageTakenAsFireUber"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1840751341", - ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", }, + }, + ["2199_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { ["Helmet"] = { - ["min"] = 81, - ["max"] = 90, + ["max"] = 12, + ["min"] = 11, }, ["sign"] = "", - }, - ["3014_IncreasedStunThreshold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "implicit.stat_3995172058", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1178_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["2199_PhysicalDamageTakenAsFireUberUniquePresence"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "implicit.stat_1283684786", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1000_WeaponSpellDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["specialCaseData"] = { + ["2200_PhysicalDamageTakenAsColdUber"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, - }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["specialCaseData"] = { }, - }, - ["4312_AreaOfEffectIfStunnedEnemyRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["2200_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 11, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 25, - ["max"] = 35, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45, + ["tradeMod"] = { + ["id"] = "implicit.stat_2466412811", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", }, }, - ["1758_ProjectileDamageAndProjectileSpeed"] = { + ["2200_PhysicalDamageTakenAsColdUberUniquePresence"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "implicit.stat_848890513", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 20, + }, + ["2201_PhysicalDamageTakenAsLightningUber"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["3947_MovementVelocityDodge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5091_ChaosResistanceAgainstDamageOverTime"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2266636761", - ["text"] = "#% Chaos Resistance against Damage Over Time", - }, - ["Quiver"] = { - ["min"] = 30, - ["max"] = 40, + ["2201_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 11, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["Shield"] = { - ["min"] = 30, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_3947691353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", }, }, - ["933_BlockingBlocksSpellsUber"] = { + ["2201_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "implicit.stat_196824923", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5641_ExertedAttackDamage"] = { + ["2203_PhysicalDamageTakenAsChaosUber"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 25, - ["max"] = 35, + }, + ["2203_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 11, }, ["sign"] = "", - }, - ["2657_MinionLifeLeech"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2770782267", - ["text"] = "Minions Leech #% of Damage as Life", + ["id"] = "implicit.stat_3904394775", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.5, + }, + ["2203_PhysicalDamageTakenAsChaosUberUniquePresence"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2393004388", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", }, }, - ["2559_GlobalChanceToBlindOnHitMaven"] = { + ["2241_ChanceToBleed"] = { ["Gloves"] = { - ["min"] = 20, ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3503466234", - ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 30, + }, + ["2241_ChanceToBleedPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 35, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["5960_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_573223427", - ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["id"] = "implicit.stat_4014428128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["2241_ChanceToBleedUniquePresence"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_64193828", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + }, + ["2316_FasterIgniteDamage"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["1410_MaximumResistances"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", }, }, - ["1192_OneHandedMeleeAttackSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1813451228", - ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["2316_FasterIgniteDamagePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 13, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_1053495752", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", }, }, - ["5497_GlobalDexterityGemLevel"] = { + ["2316_FasterIgniteDamageUniquePresence"] = { + ["Boots"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_146924886", - ["text"] = "# to Level of all Dexterity Skill Gems", + ["id"] = "implicit.stat_2349328837", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1142_AddedColdAndLightningDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["specialCaseData"] = { + ["2350_MarkEffect"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, - }, - }, - ["1349_IncreasedManaAndReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["9259_Magebane"] = { + ["2350_MarkEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4180925106", - ["text"] = "Magebane", + ["id"] = "implicit.stat_1138753695", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", }, }, - ["2493_LocalWeaponRangeUber"] = { + ["2350_MarkEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_350598685", - ["text"] = "# to Weapon Range", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_505694848", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1341_LifeAndPercentLife"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["2723_ArmourPenetration"] = { + ["Gloves"] = { + ["max"] = 19, + ["min"] = 8, }, ["sign"] = "", - }, - ["4564_MinionDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_999511066", - ["text"] = "#% increased Minion Duration", + ["id"] = "implicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4011_ElusiveOnCriticalStrike"] = { + ["2723_ArmourPenetrationPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 31, + ["min"] = 24, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", + ["id"] = "implicit.stat_469487616", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Overwhelm #% Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["2723_ArmourPenetrationUniquePresence"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["1738_MinionDamageOnWeapon"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "implicit.stat_2909740133", + ["text"] = "While a Unique Enemy is in your Presence, Overwhelm #% Physical Damage Reduction", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 51, - ["max"] = 130, + }, + ["2726_FireResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, - }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, - }, - }, - ["1647_AreaDamageAndAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", }, + }, + ["2726_FireResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 10, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 9, }, ["sign"] = "", - }, - ["348_TotemDamageSpellSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["id"] = "implicit.stat_1175129684", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", }, }, - ["3137_NearbyEnemiesAreBlindedMaven"] = { + ["2726_FireResistancePenetrationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3425675761", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", }, }, - ["2504_RarityDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["2727_ColdResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_301625329", - ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["Helmet"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["1931_AdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["433_SocketedSpellsDamageFinal"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2964800094", - ["text"] = "Socketed Skills deal #% more Spell Damage", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["2727_ColdResistancePenetrationPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 9, }, - ["1HWeapon"] = { - ["min"] = 40, - ["max"] = 40, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 9, }, ["sign"] = "", - }, - ["1041_PhysicalDamage"] = { - ["Gloves"] = { - ["min"] = 1.5, - ["max"] = 8, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "implicit.stat_403285636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 31, + }, + ["2727_ColdResistancePenetrationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 20.5, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1477049675", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", }, }, - ["957_StrengthDexterityForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["2728_LightningResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["Helmet"] = { + ["max"] = 6, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["2728_LightningResistancePenetrationPinnaclePresence"] = { + ["Amulet"] = { ["max"] = 10, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 8, + ["Helmet"] = { ["max"] = 10, + ["min"] = 9, }, - }, - ["7981_MineAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2228913626", - ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["id"] = "implicit.stat_550672859", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2491_MagicUtilityFlaskEffect"] = { - ["specialCaseData"] = { + ["2728_LightningResistancePenetrationUniquePresence"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2564857472", - ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["3794_OfferingEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 35, + ["id"] = "implicit.stat_1598254831", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["954_StrengthAndAvoidIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["2913_PoisonOnHit"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", }, }, - ["277_ProjectileDamageSupported"] = { + ["2913_PoisonOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1390285657", - ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["id"] = "implicit.stat_532792006", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", }, + }, + ["2913_PoisonOnHitUniquePresence"] = { ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 40, + ["min"] = 20, }, ["sign"] = "", - }, - ["1339_IncreasedLifeAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "implicit.stat_2433754249", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1147_AddedFireDamageSpellsAndAttacks"] = { + ["3014_IncreasedStunThreshold"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["930_SpellBlockAndBlockUber"] = { + ["3014_IncreasedStunThresholdPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["id"] = "implicit.stat_1513279759", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1647_AreaOfEffect"] = { - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 20, + ["3014_IncreasedStunThresholdUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_266654028", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 15, + }, + ["3019_WarcrySpeed"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "implicit", + }, + }, + ["3019_WarcrySpeedPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 34, + ["min"] = 27, + }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_2117066923", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", + ["type"] = "implicit", }, }, - ["434_SocketedSpellCriticalStrikeChance"] = { + ["3019_WarcrySpeedUniquePresence"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_135378852", - ["text"] = "Socketed Spells have #% to Critical Strike Chance", + ["id"] = "implicit.stat_2255001736", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", + ["type"] = "implicit", }, + }, + ["3030_ArcaneSurgeEffect"] = { ["Helmet"] = { - ["min"] = 1, - ["max"] = 4, - }, - ["sign"] = "+", - }, - ["2546_FireColdResistanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 17, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "implicit", }, }, - ["7218_ManaGainedOnBlock"] = { + ["3030_ArcaneSurgeEffectPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", + ["id"] = "implicit.stat_664899091", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1644_BurnDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["specialCaseData"] = { + ["3030_ArcaneSurgeEffectUniquePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 14, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 26, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 31, - ["max"] = 60, + ["specialCaseData"] = { }, - }, - ["1822_GlobalFlaskLifeRecovery"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "implicit.stat_3163099942", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3097_AngerAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1946_BeltReducedFlaskChargesUsed"] = { + ["3097_AngerAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, + ["id"] = "implicit.stat_1167349834", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1618_AvoidStun"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 50, + ["3097_AngerAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 30, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_778803098", + ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3098_PurityOfElementsEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 30, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "implicit.stat_3541970927", + ["text"] = "Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 30, + }, + ["3098_PurityOfElementsEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 50, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["929_StaffSpellBlockForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2120297997", - ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + ["id"] = "implicit.stat_221690080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["3098_PurityOfElementsEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_348693938", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["8218_GainEnduranceChargeWhileStationary"] = { + ["3099_PurityOfFireEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2156210979", - ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2539726203", + ["text"] = "Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["973_MineDamageTrapSupported"] = { + ["3099_PurityOfFireEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "implicit.stat_2034940983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["3099_PurityOfFireEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - }, - ["9097_WarcryAreaOfEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", + ["id"] = "implicit.stat_1926772156", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 26, - ["max"] = 30, + }, + ["3100_PurityOfIceEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - }, - ["1178_SpellAddedColdDamageTwoHand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 110.5, + ["id"] = "implicit.stat_1944316218", + ["text"] = "Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1533_MinionLife"] = { + ["3100_PurityOfIceEffectPinnaclePresence"] = { ["Chest"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["max"] = 60, + ["min"] = 49, }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_3786274521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3100_PurityOfIceEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 13, - ["max"] = 32, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 13, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_3499126604", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["2623_AllFireDamageCanShock"] = { + ["3101_PurityOfLightningEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_932096321", - ["text"] = "Your Fire Damage can Shock", + ["id"] = "implicit.stat_45589825", + ["text"] = "Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1613_AvoidIgniteForJewel"] = { + ["3101_PurityOfLightningEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["id"] = "implicit.stat_1445513967", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["971_TrapDamageOnWeapon"] = { + ["3101_PurityOfLightningEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "implicit.stat_908556575", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1658_IncreaseManaCostFlat"] = { + ["3102_WrathAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["973_MineDamageOnWeapon"] = { + ["3102_WrathAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "implicit.stat_1850144024", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5493_DeterminationReservationEfficiency"] = { + ["3102_WrathAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_399528178", + ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + }, + ["3104_GraceAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - }, - ["8463_RareOrUniqueMonsterDroppedItemRarity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2161689853", - ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 55, + }, + ["3104_GraceAuraEffectPinnaclePresence"] = { + ["Chest"] = { ["max"] = 60, + ["min"] = 49, }, ["sign"] = "", - }, - ["147_MeleeRangeAndMeleeGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", + ["id"] = "implicit.stat_81526858", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3104_GraceAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_3303144948", + ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["939_BlockWhileDualWielding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["3105_HasteAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 9, - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "implicit.stat_1240056437", + ["text"] = "Haste has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1405_LightningDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["3105_HasteAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065477979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1353_ManaDegenerationGracePeriod"] = { + ["3105_HasteAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", + ["id"] = "implicit.stat_1060820709", + ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1409_ChaosResistancePrefix"] = { + ["3107_HatredAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1050_LocalAddedPhysicalDamageAndCausesBleeding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", + ["3107_HatredAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 17, - }, - ["2HWeapon"] = { - ["min"] = 21.5, - ["max"] = 24, + ["tradeMod"] = { + ["id"] = "implicit.stat_1253537227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["1341_PercentageLifeAndManaForJewel"] = { + ["3107_HatredAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_4218330172", + ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2909_BleedOnHitAndDamage"] = { + ["3108_DeterminationAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 30, + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["2921_PoisonDamageAndDuration"] = { + ["3108_DeterminationAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "implicit.stat_1324460486", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + }, + ["3108_DeterminationAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - }, - ["5333_AdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["id"] = "implicit.stat_2366356855", + ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", + ["type"] = "implicit", }, + }, + ["3109_DisciplineAuraEffect"] = { ["Chest"] = { - ["min"] = 20, - ["max"] = 20, + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - }, - ["3097_AngerAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + }, + ["3109_DisciplineAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, ["sign"] = "", - }, - ["1230_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", - }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 82, + ["id"] = "implicit.stat_2752131673", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1349_IncreasedManaAndRegen"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["3109_DisciplineAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, - }, - ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["tradeMod"] = { + ["id"] = "implicit.stat_334238649", + ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["9242_CrimsonDance"] = { + ["3619_EnduringCryCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_300702212", - ["text"] = "Crimson Dance", + ["id"] = "implicit.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, }, - ["1586_GainEnduranceChargeOnCritUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2542650946", - ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", + ["3619_EnduringCryCooldownRecoveryPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_906749304", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["3619_EnduringCryCooldownRecoveryUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, + }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_2792560229", + ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, }, - ["1206_IncreasedAccuracyPercentForJewel"] = { + ["3845_RallyingCryWarcryEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "implicit.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + }, + ["3845_RallyingCryWarcryEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2063107864", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + }, + ["3845_RallyingCryWarcryEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, + }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "implicit.stat_1381761351", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", + ["type"] = "implicit", }, }, - ["3947_AvoidBleedAndPoison"] = { + ["3947_ChanceToAvoidBleeding"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1618589784", + ["id"] = "implicit.stat_1618589784", ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", }, - ["sign"] = "", + }, + ["3947_ChanceToAvoidBleedingPinnaclePresence"] = { ["Boots"] = { - ["min"] = 41, ["max"] = 70, + ["min"] = 57, }, - }, - ["1159_ChaosDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "implicit.stat_2610114836", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3947_ChanceToAvoidBleedingUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "implicit.stat_2651293339", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", + ["type"] = "implicit", }, }, - ["2004_ChaosDamageTakenPercentage"] = { + ["4000_PlayerReflectedDamage"] = { + ["Chest"] = { + ["max"] = 70, + ["min"] = 45, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", + ["id"] = "implicit.stat_3846810663", + ["text"] = "#% reduced Reflected Damage taken", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9252_KeystoneGhostReaver"] = { + ["4000_PlayerReflectedDamagePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 85, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4272248216", - ["text"] = "Ghost Reaver", + ["id"] = "implicit.stat_3178090061", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken", + ["type"] = "implicit", }, }, - ["1140_ColdDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["4000_PlayerReflectedDamageUniquePresence"] = { + ["Chest"] = { + ["max"] = 85, + ["min"] = 65, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["tradeMod"] = { + ["id"] = "implicit.stat_1941017392", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4112_TravelSkillCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", }, }, - ["1221_CastSpeedWithAStaffForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", + ["4112_TravelSkillCooldownRecoveryPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_850668052", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4112_TravelSkillCooldownRecoveryUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2986495340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", }, }, - ["1597_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["4177_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 15, + ["id"] = "implicit.stat_490830332", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, # to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2650_MinionBlockForJewel"] = { + ["4177_FlatAccuracyPerFrenzyChargeUniquePresence"] = { + ["Gloves"] = { + ["max"] = 66, + ["min"] = 52, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3374054207", - ["text"] = "Minions have #% Chance to Block Attack Damage", + ["id"] = "implicit.stat_475859964", + ["text"] = "While a Unique Enemy is in your Presence, # to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1864_AddedLightningDamageWithSwords"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1237708713", - ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["4177_IncreasedAccuracyPerFrenzy"] = { + ["Gloves"] = { + ["max"] = 60, + ["min"] = 43, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3126680545", + ["text"] = "# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4277_AncestralCryExertedDamage"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", }, }, - ["8995_BurningGroundEffectEffectiveness"] = { + ["4277_AncestralCryExertedDamagePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 47, + ["min"] = 38, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", + ["id"] = "implicit.stat_1799586622", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", }, + }, + ["4277_AncestralCryExertedDamageUniquePresence"] = { ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["2655_MinionAttackAndCastSpeed"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["id"] = "implicit.stat_3598887112", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["4342_ArmourFromHelmetGloves"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_791154540", + ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", }, }, - ["4523_AilmentDamage"] = { - ["Quiver"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["specialCaseData"] = { + ["4342_ArmourFromHelmetGlovesPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 57, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 30, - ["max"] = 40, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "implicit.stat_3330140563", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 30, - ["max"] = 40, + }, + ["4342_ArmourFromHelmetGlovesUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, }, - ["Amulet"] = { - ["min"] = 30, - ["max"] = 40, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1586470077", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", }, }, - ["1007_PhysicalDamagePercent"] = { + ["4482_AttackImpaleChance"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["414_SocketedAttacksDamageFinal"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1970781345", - ["text"] = "Socketed Skills deal #% more Attack Damage", + ["4482_AttackImpaleChancePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 35, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 40, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_2838459808", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 20, + }, + ["4482_AttackImpaleChanceUniquePresence"] = { + ["Gloves"] = { ["max"] = 40, + ["min"] = 20, }, - }, - ["1920_IncreasedLifeLeechRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - }, - ["Ring"] = { - ["min"] = 35, - ["max"] = 50, + ["id"] = "implicit.stat_2391907787", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1868_AddedChaosDamageWithDaggers"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3248691197", - ["text"] = "# to # Added Chaos Damage with Dagger Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, - ["specialCaseData"] = { + ["4541_GlobalCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, }, - ["1177_SpellAddedFireDamage"] = { + ["4541_GlobalCooldownRecoveryPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "implicit.stat_668321613", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 90.5, + }, + ["4541_GlobalCooldownRecoveryUniquePresence"] = { + ["Boots"] = { + ["max"] = 13, + ["min"] = 9, }, ["sign"] = "", - }, - ["2199_FireResistancePhysTakenAsFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "implicit.stat_2491353340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["955_Dexterity"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 60, - }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 60, + ["4586_BattlemagesCryWarcryEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, + ["id"] = "implicit.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, + }, + ["4586_BattlemagesCryWarcryEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 55, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["tradeMod"] = { + ["id"] = "implicit.stat_1455812442", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + }, + ["4586_BattlemagesCryWarcryEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1151_LightningDamageAndChanceToShock"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "implicit.stat_3173180145", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4742_BlindEffect"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["tradeMod"] = { + ["id"] = "implicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "implicit", }, }, - ["8919_WarcryTauntedEnemiesTakeIncreasedDamage"] = { + ["4742_BlindEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3610197448", - ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["id"] = "implicit.stat_4122616021", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1512_ManaGainPerTargetMaven"] = { + ["4742_BlindEffectUniquePresence"] = { ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "implicit.stat_886650454", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["4763_BodyDamageTakenPerDexterity"] = { + ["Chest"] = { + ["max"] = 230, + ["min"] = 180, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1356_ManaRecoveryRate"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "implicit.stat_824762042", + ["text"] = "1% less Damage Taken per # Dexterity", + ["type"] = "implicit", }, + }, + ["4763_BodyDamageTakenPerDexterityPinnaclePresence"] = { ["Chest"] = { - ["min"] = 8, - ["max"] = 15, + ["max"] = 170, + ["min"] = 140, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2216092051", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + }, + ["4763_BodyDamageTakenPerDexterityUniquePresence"] = { + ["Chest"] = { + ["max"] = 200, + ["min"] = 160, + }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1682072497", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", + ["type"] = "implicit", }, }, - ["1349_IncreasedManaAndCost"] = { + ["4764_BodyDamageTakenPerIntelligence"] = { + ["Chest"] = { + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_2874488491", + ["text"] = "1% less Damage Taken per # Intelligence", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["4396_AttackAndCastSpeedWhileFocused"] = { + ["4764_BodyDamageTakenPerIntelligencePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 170, + ["min"] = 140, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2628163981", - ["text"] = "#% increased Attack and Cast Speed while Focused", + ["id"] = "implicit.stat_3801851872", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 45, - ["max"] = 50, + }, + ["4764_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["Chest"] = { + ["max"] = 200, + ["min"] = 160, }, ["sign"] = "", - }, - ["1182_AddedLightningDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["id"] = "implicit.stat_553122931", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4479_AttacksBlindOnHitChance"] = { - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["4765_BodyDamageTakenPerStrength"] = { + ["Chest"] = { + ["max"] = 230, + ["min"] = 180, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871491972", + ["text"] = "1% less Damage Taken per # Strength", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["4765_BodyDamageTakenPerStrengthPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 170, + ["min"] = 140, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_125264229", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + }, + ["4765_BodyDamageTakenPerStrengthUniquePresence"] = { + ["Chest"] = { + ["max"] = 200, + ["min"] = 160, + }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_3389591826", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", + ["type"] = "implicit", }, }, - ["2235_ChanceToBleedSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["5176_ColdExposureEffectOnHit"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 11, }, + ["sign"] = "-", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", }, }, - ["4532_BleedDamageAndDuration"] = { + ["5176_ColdExposureEffectOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_3658662726", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["236_CriticalStrikeChanceSpellsSupported"] = { + ["5176_ColdExposureEffectOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["id"] = "implicit.stat_1699220089", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["5386_DamagePer100DEX"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - }, - ["2445_DamageRemovedFromManaBeforeLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", }, - ["Chest"] = { + }, + ["5386_DamagePer100DEXPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 6, ["min"] = 5, - ["max"] = 15, }, ["sign"] = "", - }, - ["1883_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2921084940", - ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", + ["id"] = "implicit.stat_1870591253", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + }, + ["5386_DamagePer100DEXUniquePresence"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_535580777", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", + ["type"] = "implicit", }, }, - ["1205_IncreasedAccuracy"] = { + ["5387_DamagePer100INT"] = { ["Gloves"] = { - ["min"] = 50, - ["max"] = 600, - }, - ["Quiver"] = { - ["min"] = 50, - ["max"] = 600, + ["max"] = 4, + ["min"] = 3, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 300, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 300, - }, - ["Ring"] = { - ["min"] = 50, - ["max"] = 480, + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 600, + }, + ["5387_DamagePer100INTPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 6, + ["min"] = 5, }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 480, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 480, + ["tradeMod"] = { + ["id"] = "implicit.stat_2532279515", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", }, }, - ["923_ChanceToSuppressSpellsOld"] = { + ["5387_DamagePer100INTUniquePresence"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Chest"] = { - ["min"] = 18, - ["max"] = 21, + ["id"] = "implicit.stat_1894390763", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["962_PercentageDexterityMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - }, - ["specialCaseData"] = { + ["5388_DamagePer100STR"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 12, - }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 12, + ["specialCaseData"] = { }, - }, - ["1880_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2398198236", - ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + }, + ["5388_DamagePer100STRPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 6, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3183308031", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", }, }, - ["1349_BaseManaAndLifeRegen"] = { + ["5388_DamagePer100STRUniquePresence"] = { ["Gloves"] = { - ["min"] = 55, - ["max"] = 60, - }, - ["Quiver"] = { - ["min"] = 55, - ["max"] = 60, + ["max"] = 5, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 55, - ["max"] = 60, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_4224921626", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 55, - ["max"] = 60, + }, + ["5481_MalevolenceAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, - ["Ring"] = { - ["min"] = 55, - ["max"] = 60, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 55, - ["max"] = 60, + ["tradeMod"] = { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Boots"] = { - ["min"] = 55, + }, + ["5481_MalevolenceAuraEffectPinnaclePresence"] = { + ["Chest"] = { ["max"] = 60, + ["min"] = 49, }, - }, - ["1600_FrenzyChargeOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["id"] = "implicit.stat_1033279468", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", }, + }, + ["5481_MalevolenceAuraEffectUniquePresence"] = { ["Chest"] = { - ["min"] = 10, - ["max"] = 10, + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - }, - ["1373_ExperienceIncrease"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", + ["id"] = "implicit.stat_1327020319", + ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 2, - ["max"] = 3, + }, + ["5639_ElusiveEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - }, - ["2201_PhysicalDamageTakenAsLightningUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["id"] = "implicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1739_MinionDamageIfMinionSkillUsedRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_412745376", - ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["5639_ElusiveEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_3173079195", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", }, }, - ["5052_AccuracyRatingPerFrenzyChargeUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3769211656", - ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["5639_ElusiveEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_2413932980", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", }, - ["2HWeapon"] = { + }, + ["5641_ExertedAttackDamage"] = { + ["Gloves"] = { + ["max"] = 35, ["min"] = 20, - ["max"] = 25, }, - }, - ["8031_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4227567885", - ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["294_SocketedTriggeredSkillsDoubleDamage"] = { + ["5641_ExertedAttackDamagePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 47, + ["min"] = 38, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4021083819", - ["text"] = "Socketed Triggered Skills deal Double Damage", + ["id"] = "implicit.stat_376260015", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", }, }, - ["1179_SpellAddedLightningDamage"] = { + ["5641_ExertedAttackDamageUniquePresence"] = { + ["Gloves"] = { + ["max"] = 41, + ["min"] = 29, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "implicit.stat_3291139981", + ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 96.5, + }, + ["5697_EnemyLifeRegenerationRate"] = { + ["Helmet"] = { + ["max"] = 82, + ["min"] = 65, }, ["sign"] = "", - }, - ["138_LocalIncreaseSocketedColdGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "implicit.stat_3903907406", + ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", }, }, - ["1512_IncreasedManaAndOnHit"] = { + ["5697_EnemyLifeRegenerationRatePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 89, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "implicit.stat_3407071583", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2201_PhysicalDamageTakenAsLightningUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["5697_EnemyLifeRegenerationRateUniquePresence"] = { ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["max"] = 91, + ["min"] = 77, }, - }, - ["8508_ReflectDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["id"] = "implicit.stat_2570471069", + ["text"] = "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["374_IncreasedCastSpeedSupported"] = { + ["5702_EnergyShieldFromGlovesBoots"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["id"] = "implicit.stat_1234687045", + ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["5702_EnergyShieldFromGlovesBootsPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 70, + ["min"] = 57, }, ["sign"] = "", - }, - ["1931_OLDAdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["id"] = "implicit.stat_1388739249", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["5702_EnergyShieldFromGlovesBootsUniquePresence"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 45, }, ["sign"] = "", - }, - ["1312_ArmourEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "implicit.stat_4288334466", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8004_AddedLightningDamageIfCritRecently"] = { + ["5749_EvasionRatingFromHelmetBoots"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_935623115", - ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["id"] = "implicit.stat_623823763", + ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", }, + }, + ["5749_EvasionRatingHelmetBootsPinnaclePresence"] = { ["Gloves"] = { - ["min"] = 21, - ["max"] = 45.5, + ["max"] = 70, + ["min"] = 57, }, ["sign"] = "", - }, - ["7010_NearbyEnemyElementalDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_639595152", - ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["id"] = "implicit.stat_2980409921", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 9, + }, + ["5749_EvasionRatingHelmetBootsUniquePresence"] = { + ["Gloves"] = { + ["max"] = 61, + ["min"] = 45, }, ["sign"] = "", - }, - ["9211_SpellsAdditionalUnleashSealMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1264919148", - ["text"] = "Skills supported by Unleash have # to maximum number of Seals", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2408490382", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["131_PercentageIntelligenceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", + ["5796_FasterBleedDamage"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", }, }, - ["1335_EnergyShieldRegenerationPerMinuteMaven"] = { + ["5796_FasterBleedDamagePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "implicit.stat_4106235309", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + }, + ["5796_FasterBleedDamageUniquePresence"] = { + ["Boots"] = { + ["max"] = 13, + ["min"] = 9, }, ["sign"] = "", - }, - ["1362_ItemFoundQuantityIncrease"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "implicit.stat_738837643", + ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 4, + }, + ["5797_FasterPoisonDamage"] = { + ["Boots"] = { ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["4001_PowerChargeOnBlockUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 25, + }, + ["5797_FasterPoisonDamagePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 13, }, ["sign"] = "", - }, - ["5750_EvasionIncreasedByUncappedColdResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2358015838", - ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["id"] = "implicit.stat_995369618", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", }, }, - ["3112_PhysicalDamageAvoidance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2415497478", - ["text"] = "#% chance to Avoid Physical Damage from Hits", - }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["5797_FasterPoisonDamageUniquePresence"] = { + ["Boots"] = { + ["max"] = 13, + ["min"] = 9, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, - }, - }, - ["2200_PhysicalDamageTakenAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "implicit.stat_3828039449", + ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1722_ConvertPhysicalToColdMaven"] = { + ["5828_FireExposureEffectOnHit"] = { ["Gloves"] = { - ["min"] = 22, - ["max"] = 25, + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "-", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "implicit.stat_1309840354", + ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 22, - ["max"] = 25, + }, + ["5828_FireExposureEffectOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 19, }, + ["sign"] = "-", ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1000_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_1629531681", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["5828_FireExposureEffectOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 19, + ["min"] = 15, }, + ["sign"] = "-", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["tradeMod"] = { + ["id"] = "implicit.stat_732411542", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 69, + }, + ["6057_GeneralsCryCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - }, - ["1444_EnemyColdDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["id"] = "implicit.stat_3637727672", + ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1388_AllResistancesMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["6057_GeneralsCryCooldownRecoveryPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 19, - ["max"] = 22, - }, - ["Belt"] = { - ["min"] = 19, - ["max"] = 22, - }, - }, - ["1400_ColdResistanceForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "implicit.stat_133006298", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["6057_GeneralsCryCooldownRecoveryUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_942266300", + ["text"] = "While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, }, - ["418_SocketedGemsHaveMoreAttackAndCastSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_346351023", - ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["6409_InfernalCryWarcryAreaOfEffect"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - }, - ["7208_AddedManaRegenerationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1193925814", - ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["id"] = "implicit.stat_631097842", + ["text"] = "Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["6409_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, }, ["sign"] = "", - }, - ["216_SupportedByEmpower"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3581578643", - ["text"] = "Socketed Gems are Supported by Level # Empower", + ["id"] = "implicit.stat_1774377226", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["7952_MeleeDamageDuringFlaskEffect"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4091369450", - ["text"] = "#% increased Melee Damage during any Flask Effect", + ["6409_InfernalCryWarcryAreaOfEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, - }, - }, - ["1517_MaximumLifeOnKillPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["id"] = "implicit.stat_3199255605", + ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 6, + }, + ["6437_IntimidatingCryCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - }, - ["2201_LightningResistancePhysTakenAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["id"] = "implicit.stat_1134560807", + ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3034_CriticalStrikeChanceAgainstPoisonedEnemies"] = { + ["6437_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1345659139", - ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["id"] = "implicit.stat_3945581778", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + }, + ["6437_IntimidatingCryCooldownRecoveryUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, }, ["sign"] = "", - }, - ["2276_CurseLevel10VulnerabilityOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2213584313", - ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["id"] = "implicit.stat_3381588096", + ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1835_AddedPhysicalDamageWithDaggers"] = { + ["6577_LightningExposureEffectOnHit"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1298238534", - ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["id"] = "implicit.stat_981753179", + ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + }, + ["6577_LightningExposureEffectOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 19, }, + ["sign"] = "-", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "implicit.stat_1762412317", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", }, }, - ["1040_GlobalAddedPhysicalDamage"] = { + ["6577_LightningExposureEffectOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "implicit.stat_2876365933", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["type"] = "implicit", }, + }, + ["7190_GlobalMaimOnHit"] = { ["Gloves"] = { - ["min"] = 7.5, - ["max"] = 9.5, + ["max"] = 40, + ["min"] = 15, }, ["sign"] = "", - }, - ["1312_IncreasedArmourForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "implicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["7190_GlobalMaimOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 95, + ["min"] = 85, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "implicit.stat_4065516297", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", }, }, - ["1356_ManaRecoveryRateMaven"] = { + ["7190_GlobalMaimOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "implicit.stat_720015764", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", }, + }, + ["8105_MinionReflectedDamage"] = { ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + ["max"] = 70, + ["min"] = 45, }, ["sign"] = "", - }, - ["1964_AttackerTakesDamageNoRange"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_3056045252", + ["text"] = "Minions take #% reduced Reflected Damage", + ["type"] = "implicit", }, + }, + ["8105_MinionReflectedDamagePinnaclePresence"] = { ["Chest"] = { - ["min"] = 1, - ["max"] = 50, - }, - ["specialCaseData"] = { + ["max"] = 100, + ["min"] = 85, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 10, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_505327219", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage", + ["type"] = "implicit", }, }, - ["5188_GlobalColdGemLevel"] = { + ["8105_MinionReflectedDamageUniquePresence"] = { + ["Chest"] = { + ["max"] = 85, + ["min"] = 65, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1078455967", - ["text"] = "# to Level of all Cold Skill Gems", + ["id"] = "implicit.stat_1499657170", + ["text"] = "While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage", + ["type"] = "implicit", }, + }, + ["8192_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 29, + ["min"] = 14, }, - ["sign"] = "+", - }, - ["1720_ConvertPhysicalToFire"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, + ["Helmet"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + }, + ["8192_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 41, + ["min"] = 32, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 41, + ["min"] = 32, }, ["sign"] = "", - ["1HWeapon"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1016769968", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["8192_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { + ["Amulet"] = { + ["max"] = 35, ["min"] = 23, - ["max"] = 30, }, - ["2HWeapon"] = { + ["Helmet"] = { + ["max"] = 35, ["min"] = 23, - ["max"] = 30, }, - }, - ["9245_EldritchBattery"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2262736444", - ["text"] = "Eldritch Battery", + ["id"] = "implicit.stat_2950684886", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", }, }, - ["1383_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["8365_PrideAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skill Gems", + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + }, + ["8365_PrideAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_2163876658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", }, }, - ["2910_FasterPoisonDamageMaven"] = { + ["8365_PrideAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "implicit.stat_4039774101", + ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", + }, + ["8570_SeismicCryExertedDamage"] = { ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 35, + ["min"] = 20, }, - }, - ["2241_BleedingDamageChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "implicit.stat_3252913608", + ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2580_IncreasedDefensesForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["8570_SeismicCryExertedDamagePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 47, + ["min"] = 38, }, ["sign"] = "", - }, - ["2549_ChanceToFreezeShockIgniteUnboundAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", + ["id"] = "implicit.stat_1714653952", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["8570_SeismicCryExertedDamageUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 29, }, ["sign"] = "", - }, - ["1400_ColdResistanceEnemyLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "implicit.stat_1505297139", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1700_PhysicalAddedAsChaos"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["8765_SpellsHinderOnHitChance"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["7230_ManaRegeneratedIfYouveHitRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2602865453", - ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", - }, - ["2HWeapon"] = { - ["min"] = 0.8, - ["max"] = 0.8, + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["8765_SpellsHinderOnHitChancePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 95, + ["min"] = 85, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 0.4, - ["max"] = 0.4, - }, - ["Shield"] = { - ["min"] = 0.4, - ["max"] = 0.4, - }, - }, - ["1302_WardDelayRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1130670241", - ["text"] = "#% faster Restoration of Ward", + ["id"] = "implicit.stat_604515066", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1231_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["8765_SpellsHinderOnHitChanceUniquePresence"] = { ["Gloves"] = { - ["min"] = 20, - ["max"] = 22, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 22, - }, - ["specialCaseData"] = { + ["max"] = 70, + ["min"] = 50, }, ["sign"] = "", - }, - ["1518_MaximumEnergyShieldOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", + ["id"] = "implicit.stat_3423886807", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["919_BlockPercent"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, }, ["Chest"] = { + ["max"] = 10, ["min"] = 5, - ["max"] = 6, }, ["sign"] = "", - }, - ["1699_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["919_BlockPercentPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 14, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 11, }, ["sign"] = "", - }, - ["2630_AllLightningDamageCanFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_380759151", - ["text"] = "Your Lightning Damage can Freeze", + ["id"] = "implicit.stat_3326567914", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", }, }, - ["189_SupportedByArcaneSurge"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["919_BlockPercentUniquePresence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - }, - ["169_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 8, - }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, - }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_725501141", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", + ["type"] = "implicit", }, }, - ["1692_TrapThrowSpeedOnWeapon"] = { + ["9212_ZealotryAuraEffect"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["396_SupportedByEnduranceChargeOnStunWeapon"] = { + ["9212_ZealotryAuraEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["id"] = "implicit.stat_2293353005", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + }, + ["9212_ZealotryAuraEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - }, - ["1179_SpellAddedLightningDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 64.5, + ["id"] = "implicit.stat_3550578554", + ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1249_TwoHandCritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_252507949", - ["text"] = "#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["924_ChanceToSuppressSpells"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, - }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, - }, - }, - ["8734_SpellDamagePer16Dexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1713_ChaosResistanceDamageOverTime"] = { - ["specialCaseData"] = { + ["924_ChanceToSuppressSpellsPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", + ["Gloves"] = { + ["max"] = 15, + ["min"] = 12, }, - ["sign"] = "", - }, - ["8384_ProjectileDamagePerEnemyPierced"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 30, + ["id"] = "implicit.stat_2998245080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Suppress Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5055_ChanceToGainOnslaughtOnFlaskUse"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1324450398", - ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["924_ChanceToSuppressSpellsUniquePresence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 10, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_3998961962", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Suppress Spell Damage", + ["type"] = "implicit", }, - ["AnyJewel"] = { + }, + ["938_SpellBlockPercentage"] = { + ["Amulet"] = { + ["max"] = 10, ["min"] = 5, + }, + ["Chest"] = { ["max"] = 10, + ["min"] = 5, }, - }, - ["8327_GlobalPhysicalGemLevel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_619213329", - ["text"] = "# to Level of all Physical Skill Gems", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", }, + }, + ["938_SpellBlockPercentagePinnaclePresence"] = { ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 14, + ["min"] = 11, }, - ["sign"] = "+", - }, - ["2789_MapMonsterPacksVaalMapWorlds"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 11, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_728267040", - ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["id"] = "implicit.stat_2996280658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4302_ArcticArmourReservationEfficiency"] = { - ["specialCaseData"] = { + ["938_SpellBlockPercentageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - }, - ["1706_ChaosDamageAsPortionOfFireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["id"] = "implicit.stat_1358320252", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1876_SpellAddedFireDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_44182350", - ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["975_AttackDamage"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 14, }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Helmet"] = { + ["max"] = 29, + ["min"] = 14, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", }, }, - ["8765_SpellsHinderOnHitChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["975_AttackDamagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 53, + ["min"] = 44, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["Helmet"] = { + ["max"] = 53, + ["min"] = 44, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_3133935886", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", }, }, - ["8603_ChanceToShockAttackersOnBlock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_575111651", - ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["975_AttackDamageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 41, + ["min"] = 29, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 41, + ["min"] = 29, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 50, - }, - ["Shield"] = { - ["min"] = 25, - ["max"] = 50, - }, - }, - ["9262_TheAgnostic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_462691314", - ["text"] = "The Agnostic", + ["id"] = "implicit.stat_4061200499", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + ["type"] = "implicit", }, }, - ["1615_ReducedShockChance"] = { - ["specialCaseData"] = { + }, + ["Exarch"] = { + ["1007_PhysicalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["Chest"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - }, - ["5171_PhysicalDamageTakenAsColdUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, + ["1007_PhysicalDamagePercentPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 33, }, ["Chest"] = { - ["min"] = 7, - ["max"] = 10, + ["max"] = 42, + ["min"] = 33, }, ["sign"] = "", - }, - ["7932_LifeAddedAsEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["id"] = "implicit.stat_2545907302", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1615_IntelligenceAndAvoidShock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["1007_PhysicalDamagePercentUniquePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 24, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 21, - ["max"] = 25, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_604852150", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", + ["type"] = "implicit", }, }, - ["1624_ShockingConfluxMaven"] = { + ["1022_PhysicalDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "implicit.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1720_FireDamagePhysConvertedToFire"] = { + ["1022_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "implicit.stat_4084536353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Physical Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2844_AdditionalVaalSoulOnKill"] = { - ["specialCaseData"] = { + ["1022_PhysicalDamageOverTimeMultiplierUniquePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 17, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["sign"] = "+", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_841219865", + ["text"] = "While a Unique Enemy is in your Presence, #% to Physical Damage over Time Multiplier", + ["type"] = "implicit", }, - ["Helmet"] = { + }, + ["1026_FireDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 20, ["min"] = 5, - ["max"] = 8, }, - ["Boots"] = { + ["Gloves"] = { + ["max"] = 20, ["min"] = 5, - ["max"] = 8, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", + ["type"] = "implicit", }, }, - ["2847_VaalSkillCriticalStrikeChance"] = { + ["1026_FireDamageOverTimeMultiplierPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 29, + }, ["Gloves"] = { - ["min"] = 80, - ["max"] = 120, + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["id"] = "implicit.stat_1870961528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Damage over Time Multiplier", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 80, - ["max"] = 120, + }, + ["1026_FireDamageOverTimeMultiplierUniquePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 17, }, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "implicit.stat_2112874376", + ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Damage over Time Multiplier", + ["type"] = "implicit", + }, }, - ["5933_GainRareMonsterModsOnKillChance"] = { + ["1031_ColdDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2736829661", - ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 40, + ["id"] = "implicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2594_FishingCastDistance"] = { + ["1031_ColdDamageOverTimeMultiplierPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_170497091", - ["text"] = "#% increased Fishing Range", + ["id"] = "implicit.stat_2619970520", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1526_GainManaOnBlock"] = { + ["1031_ColdDamageOverTimeMultiplierUniquePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 17, + }, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "implicit.stat_621576159", + ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["372_MineDamageSupported"] = { + ["1034_ChaosDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", - }, - ["Helmet"] = { - ["min"] = 18, - ["max"] = 25, + ["id"] = "implicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9254_HexMaster"] = { + ["1034_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 29, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3849554033", - ["text"] = "Hex Master", + ["id"] = "implicit.stat_2163155983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", }, }, - ["5955_GainArcaneSurgeOnCrit"] = { + ["1034_ChaosDamageOverTimeMultiplierUniquePresence"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 17, + }, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 17, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["id"] = "implicit.stat_2634574895", + ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + }, + ["1041_PhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 10.5, + ["min"] = 5, }, ["sign"] = "", - }, - ["362_ProjectileSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", }, + }, + ["1041_PhysicalDamagePinnaclePresence"] = { ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 21.5, + ["min"] = 12, }, ["sign"] = "", - }, - ["1177_SpellAddedFireDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "implicit.stat_3477311591", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 61, + }, + ["1041_PhysicalDamageUniquePresence"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, }, ["sign"] = "", - }, - ["8005_GlobalAddedLightningDamagePerPowerCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1917107159", - ["text"] = "# to # Lightning Damage per Power Charge", + ["id"] = "implicit.stat_2521809744", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 3.5, - ["max"] = 6.5, + }, + ["1131_FireDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - }, - ["1415_LifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3504_MinionAddedChaosDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2889601781", - ["text"] = "Minions deal # to # additional Chaos Damage", + ["1131_FireDamagePercentagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 33, }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, + ["Chest"] = { + ["max"] = 42, + ["min"] = 33, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2782184338", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", }, }, - ["2330_TotemSpeedAttackSupported"] = { + ["1131_FireDamagePercentageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "implicit.stat_1590336483", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + ["type"] = "implicit", + }, + }, + ["1134_FireDamage"] = { + ["Gloves"] = { + ["max"] = 18.5, + ["min"] = 9.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 20, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", }, }, - ["1350_IncreasedManaAndPercent"] = { + ["1134_FireDamagePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 20.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "implicit.stat_3972399670", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1519_MaximumManaOnKillPercent"] = { + ["1134_FireDamageUniquePresence"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["id"] = "implicit.stat_2067485824", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1140_ColdDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 15, }, ["Chest"] = { - ["min"] = 3, - ["max"] = 6, + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - }, - ["1380_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skill Gems", + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", }, - ["sign"] = "+", - ["specialCaseData"] = { + }, + ["1140_ColdDamagePercentagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 33, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["Chest"] = { + ["max"] = 42, + ["min"] = 33, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1576689223", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", }, }, - ["1142_GlobalAddedColdDamage"] = { + ["1140_ColdDamagePercentageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 24, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "implicit.stat_2127607252", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", + ["type"] = "implicit", }, + }, + ["1143_ColdDamage"] = { ["Gloves"] = { - ["min"] = 23, - ["max"] = 30, + ["max"] = 17, + ["min"] = 8.5, }, ["sign"] = "", - }, - ["242_SupportedByItemRarityUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3587013273", - ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + }, + ["1143_ColdDamagePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 34, + ["min"] = 18, }, ["sign"] = "", - }, - ["1151_SpellAddedLightningDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "implicit.stat_1016130575", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1557_AdditionalPierce"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["specialCaseData"] = { + ["1143_ColdDamageUniquePresence"] = { + ["Gloves"] = { + ["max"] = 22.5, + ["min"] = 12.5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 2, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_4057155645", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", }, }, - ["393_ChanceToPoisonSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["1151_LightningDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - }, - ["4482_AttackImpaleChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 20, + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1206_AccuracyAndCritsForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["1151_LightningDamagePercentagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 33, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 33, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1328859059", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", }, }, - ["2392_EnergyShieldAndRegen"] = { - ["specialCaseData"] = { + ["1151_LightningDamagePercentageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", + ["Chest"] = { + ["max"] = 36, + ["min"] = 24, }, ["sign"] = "", - }, - ["1178_SpellAddedColdDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "implicit.stat_2668120423", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20.5, - ["max"] = 50, + }, + ["1154_LightningDamage"] = { + ["Gloves"] = { + ["max"] = 21, + ["min"] = 11.5, }, ["sign"] = "", - }, - ["5088_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_887556907", - ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", }, }, - ["1349_ManaAndDamageTakenGoesToManaPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["1154_LightningDamagePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 43, + ["min"] = 25, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, - }, - ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["tradeMod"] = { + ["id"] = "implicit.stat_2925105924", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", }, }, - ["1405_LightningResistanceEnemyLeech"] = { + ["1154_LightningDamageUniquePresence"] = { + ["Gloves"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "implicit.stat_2111629859", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["222_FireDamagePrefixFirePenetration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3265951306", - ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["1159_IncreasedChaosDamage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 15, }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["Chest"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - }, - ["2282_FlammabilityOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1159_IncreasedChaosDamagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 33, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["max"] = 42, + ["min"] = 33, }, - }, - ["3110_CannotBePoisoned"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "implicit.stat_2070979181", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", }, }, - ["8186_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["1159_IncreasedChaosDamageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["Chest"] = { + ["max"] = 36, + ["min"] = 24, }, ["sign"] = "", - }, - ["1846_AddedFireDamageWithMaces"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3146788701", - ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_2875239648", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", + ["type"] = "implicit", }, }, - ["1348_LifeRecoveryRateMaven"] = { + ["1161_ChaosDamage"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["1161_ChaosDamagePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 28.5, + ["min"] = 15.5, }, ["sign"] = "", - }, - ["140_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "implicit.stat_3953801646", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", }, }, - ["4470_ManaGainPerTargetMaven"] = { + ["1161_ChaosDamageUniquePresence"] = { ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 19, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_779663446", - ["text"] = "#% increased Attack Speed while not on Low Mana", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_2444070126", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1176_SpellAddedPhysicalDamage"] = { + ["Helmet"] = { + ["max"] = 22.5, + ["min"] = 11.5, }, ["sign"] = "", - }, - ["2909_BleedDamageAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["id"] = "implicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + }, + ["1176_SpellAddedPhysicalDamagePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 46, + ["min"] = 24.5, }, ["sign"] = "", - }, - ["8308_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2368149582", - ["text"] = "# to Armour if you've Hit an Enemy Recently", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, + ["tradeMod"] = { + ["id"] = "implicit.stat_485268361", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 250, - ["max"] = 300, + }, + ["1176_SpellAddedPhysicalDamageUniquePresence"] = { + ["Helmet"] = { + ["max"] = 30.5, + ["min"] = 17, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, - }, - ["AnyJewel"] = { - ["min"] = 250, - ["max"] = 300, + ["tradeMod"] = { + ["id"] = "implicit.stat_4272276606", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "implicit", }, }, - ["1752_MaximumSpellBlockChance"] = { + ["1177_SpellAddedFireDamage"] = { + ["Helmet"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", - }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["4047_ManaRegenerationMaven"] = { + ["1177_SpellAddedFireDamagePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 56, + ["min"] = 30.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["id"] = "implicit.stat_3954869480", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", }, + }, + ["1177_SpellAddedFireDamageUniquePresence"] = { ["Helmet"] = { - ["min"] = 20, - ["max"] = 20, + ["max"] = 37.5, + ["min"] = 21.5, }, ["sign"] = "", - }, - ["2921_PoisonDamageAndLocalChanceOnHit"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "implicit.stat_661603414", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1178_SpellAddedColdDamage"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 13, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 50, - }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["specialCaseData"] = { }, - }, - ["2835_VaalSkillDamage"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1178_SpellAddedColdDamagePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 50.5, + ["min"] = 27.5, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 20, - ["max"] = 40, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_3349767748", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", }, }, - ["1400_ColdResistanceAilments"] = { + ["1178_SpellAddedColdDamageUniquePresence"] = { + ["Helmet"] = { + ["max"] = 33.5, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "implicit.stat_1018817416", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1591_GainPowerChargeOnKillingFrozenEnemy"] = { + ["1179_SpellAddedLightningDamage"] = { + ["Helmet"] = { + ["max"] = 32.5, + ["min"] = 18, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3607154250", - ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2033_ReducedPhysicalDamageTakenMaven"] = { + ["1179_SpellAddedLightningDamagePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 65, + ["min"] = 37.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "implicit.stat_3874289", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", }, }, - ["417_SocketedAttacksManaCostMaven"] = { + ["1179_SpellAddedLightningDamageUniquePresence"] = { + ["Helmet"] = { + ["max"] = 43, + ["min"] = 26, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have # to Total Mana Cost", + ["id"] = "implicit.stat_371531651", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 20, - }, - ["sign"] = "-", }, - ["1113_IncreasedSwordDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_83050999", - ["text"] = "#% increased Damage with Swords", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["specialCaseData"] = { + ["1180_SpellAddedChaosDamage"] = { + ["Helmet"] = { + ["max"] = 21, + ["min"] = 11, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", }, }, - ["3115_ColdDamageAvoidance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["1180_SpellAddedChaosDamagePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 43, + ["min"] = 23.5, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 6, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_3206883665", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1180_SpellAddedChaosDamageUniquePresence"] = { + ["Helmet"] = { + ["max"] = 28, + ["min"] = 15.5, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1554912650", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", }, }, - ["923_ChanceToDodgeAndSpellDodge"] = { + ["1183_IncreasedAttackSpeed"] = { ["Gloves"] = { - ["min"] = 4, - ["max"] = 6, + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1183_IncreasedAttackSpeedPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 21, + ["min"] = 18, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["1159_IncreasedChaosDamage"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "implicit.stat_2446980928", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", }, - ["AbyssJewel"] = { + }, + ["1183_IncreasedAttackSpeedUniquePresence"] = { + ["Gloves"] = { + ["max"] = 17, ["min"] = 13, - ["max"] = 19, - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 13, - ["max"] = 19, - }, - }, - ["3043_ChaosResistanceWhileUsingFlask"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_392168009", - ["text"] = "#% to Chaos Resistance during any Flask Effect", - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "implicit.stat_3401410854", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + ["type"] = "implicit", }, }, - ["1180_SpellAddedChaosDamageHybrid"] = { + ["1218_IncreasedCastSpeed"] = { + ["Helmet"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1416_EnemyLifeLeechPermyriad"] = { + ["1218_IncreasedCastSpeedPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2693705594", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["id"] = "implicit.stat_4098747485", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1752_SpellBlockPercentageMaven"] = { + ["1218_IncreasedCastSpeedUniquePresence"] = { + ["Helmet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2016247664", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1870_SpellAddedChaosDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1181129483", - ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["1230_SpellCriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 28, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 28, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", + ["type"] = "implicit", }, }, - ["8369_PrideReservation"] = { - ["specialCaseData"] = { + ["1230_SpellCriticalStrikeChancePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 69, + ["min"] = 58, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["Helmet"] = { + ["max"] = 69, + ["min"] = 58, }, ["sign"] = "", - }, - ["2910_PoisonDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - }, - ["Gloves"] = { - ["min"] = 17, - ["max"] = 20, + ["id"] = "implicit.stat_1412947753", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Spells", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1525_GainLifeOnBlock"] = { - ["specialCaseData"] = { + ["1230_SpellCriticalStrikeChanceUniquePresence"] = { + ["Amulet"] = { + ["max"] = 57, + ["min"] = 43, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_762600725", - ["text"] = "# Life gained when you Block", + ["Helmet"] = { + ["max"] = 57, + ["min"] = 43, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 100, + ["specialCaseData"] = { }, - }, - ["1331_EnergyShieldForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "implicit.stat_4191234472", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Spells", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1262_AttackCriticalStrikeMultiplier"] = { + ["Chest"] = { + ["max"] = 31, + ["min"] = 20, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_3714003708", + ["text"] = "#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", }, }, - ["1349_IncreasedManaAndBaseCost"] = { + ["1262_AttackCriticalStrikeMultiplierPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 43, + ["min"] = 36, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_2825010848", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["8006_AddedLightningDamagePerShockedEnemyKilled"] = { + ["1262_AttackCriticalStrikeMultiplierUniquePresence"] = { + ["Chest"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4222857095", - ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["id"] = "implicit.stat_26879978", + ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1177_SpellAddedFireDamageHybrid"] = { + ["1263_SpellCriticalStrikeMultiplier"] = { + ["Chest"] = { + ["max"] = 31, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "implicit.stat_274716455", + ["text"] = "#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1005_ShieldSpellDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1263_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 43, + ["min"] = 36, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_2955927568", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", }, }, - ["355_SupportedByMeleeSplashDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["1263_SpellCriticalStrikeMultiplierUniquePresence"] = { + ["Chest"] = { + ["max"] = 37, + ["min"] = 28, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_865433929", + ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", }, }, - ["130_PercentageDexterityMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", + ["1288_StunThresholdReduction"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", }, }, - ["1000_WeaponSpellDamageEfficacy"] = { + ["1288_StunThresholdReductionPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["id"] = "implicit.stat_2169620689", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["129_DelveStrengthGemLevel"] = { + ["1288_StunThresholdReductionUniquePresence"] = { ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 23, + ["min"] = 14, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", + ["id"] = "implicit.stat_944211673", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "implicit", }, - ["Helmet"] = { + }, + ["1392_MaximumFireResistanceEldritch"] = { + ["Chest"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + ["type"] = "implicit", }, + }, + ["1392_MaximumFireResistanceEldritchPinnaclePresence"] = { ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 5, + ["min"] = 4, }, - }, - ["1283_ReducedCriticalStrikeDamageTaken"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "implicit.stat_1133929401", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8047_MinionCriticalStrikeChanceIncrease"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Strike Chance", + ["1392_MaximumFireResistanceEldritchUniquePresence"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, - }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["tradeMod"] = { + ["id"] = "implicit.stat_475684070", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", + ["type"] = "implicit", }, }, - ["6268_FreezeChanceAndDurationMaven"] = { + ["1392_MaximumFireResistanceImplicit"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1302208736", - ["text"] = "Freeze Enemies as though dealing #% more Damage", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 50, + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1409_ChaosResistanceDamageOverTime"] = { + ["1392_MaximumFireResistanceImplicitPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "implicit.stat_1133929401", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["598_TriggerOnRareAssassinsMark"] = { + ["1392_MaximumFireResistanceImplicitUniquePresence"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["id"] = "implicit.stat_475684070", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1338_EnergyShieldRecoveryRateMaven"] = { + ["1394_FireResistance"] = { + ["Boots"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4389_AttackAndCastSpeedIfHitRecently"] = { + ["1394_FireResistancePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1483753325", - ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_1299790658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2658_MinionLifeMaven"] = { + ["1394_FireResistanceUniquePresence"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", + ["id"] = "implicit.stat_3521653836", + ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Resistance", + ["type"] = "implicit", }, - ["Helmet"] = { + }, + ["1398_MaximumColdResistanceEldritch"] = { + ["Chest"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 1.5, }, - ["sign"] = "", - }, - ["246_SupportedByMaim"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1647_SupportedBySpellCascadeArea"] = { + ["1398_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["id"] = "implicit.stat_3415855998", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3107_HatredAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", + ["1398_MaximumColdResistanceEldritchUniquePresence"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["tradeMod"] = { + ["id"] = "implicit.stat_3444931985", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Cold Resistance", + ["type"] = "implicit", }, }, - ["1813_AccuracyRatingPerFrenzyChargeUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3700381193", - ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["1398_MaximumColdResistanceImplicit"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + ["type"] = "implicit", }, }, - ["2392_EnergyShieldRegenerationPerMinuteMaven"] = { + ["1398_MaximumColdResistancePinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1.5, + ["id"] = "implicit.stat_3415855998", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2703_GlobalChanceToBlindOnHitMaven"] = { + ["1398_MaximumColdResistanceUniquePresence"] = { ["Gloves"] = { - ["min"] = 12, - ["max"] = 15, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", + ["id"] = "implicit.stat_3444931985", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Cold Resistance", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["1400_ColdResistance"] = { + ["Boots"] = { + ["max"] = 24, + ["min"] = 13, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, }, - ["5505_DisciplineReservationEfficiency"] = { + ["1400_ColdResistancePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 36, + ["min"] = 29, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, + ["id"] = "implicit.stat_3864103630", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1650_ManaCostReduction"] = { + ["1400_ColdResistanceUniquePresence"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "implicit.stat_2240274773", + ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1692_TrapThrowSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["1403_MaximumLightningResistanceEldritch"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - }, - ["1857_AddedColdDamageWithWands"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2383797932", - ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + }, + ["1403_MaximumLightningResistanceEldritchPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 4, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_4136085904", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", + ["type"] = "implicit", }, }, - ["1000_WeaponSpellDamageAndMana"] = { + ["1403_MaximumLightningResistanceEldritchUniquePresence"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 39, + ["id"] = "implicit.stat_789714862", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1905_PowerChargeOnKillChanceMaven"] = { + ["1403_MaximumLightningResistanceImplicit"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + }, + ["1403_MaximumLightningResistanceImplicitPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_4136085904", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", + ["type"] = "implicit", }, + }, + ["1403_MaximumLightningResistanceImplicitUniquePresence"] = { ["Helmet"] = { - ["min"] = 50, - ["max"] = 50, + ["max"] = 3, + ["min"] = 2, }, - }, - ["1612_AvoidFreezeAndChill"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "implicit.stat_789714862", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", + }, + ["1405_LightningResistance"] = { ["Boots"] = { - ["min"] = 100, - ["max"] = 100, + ["max"] = 24, + ["min"] = 13, }, - }, - ["1533_MaximumMinionCountAndMinionLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1398_MaximumColdResist"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 3, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["1405_LightningResistancePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 36, + ["min"] = 29, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, + ["tradeMod"] = { + ["id"] = "implicit.stat_3980173235", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Lightning Resistance", + ["type"] = "implicit", }, }, - ["7190_GlobalMaimOnHit"] = { + ["1405_LightningResistanceUniquePresence"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "implicit.stat_3556129896", + ["text"] = "While a Unique Enemy is in your Presence, #% to Lightning Resistance", + ["type"] = "implicit", }, }, - ["2241_BleedChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["1408_MaximumChaosResistanceImplicit"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + ["type"] = "implicit", }, - ["AnyJewel"] = { - ["min"] = 3, + }, + ["1408_MaximumChaosResistanceImplicitPinnaclePresence"] = { + ["Chest"] = { ["max"] = 5, + ["min"] = 4, }, - }, - ["8186_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["id"] = "implicit.stat_944522962", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Chaos Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1797_SupportedByMeleeSplashDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["1408_MaximumChaosResistanceImplicitUniquePresence"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, - }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["tradeMod"] = { + ["id"] = "implicit.stat_575726461", + ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Chaos Resistance", + ["type"] = "implicit", }, }, - ["3030_ArcaneSurgeEffect"] = { + ["1409_ChaosResistance"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1795_ChanceToShockForJewel"] = { + ["1409_ChaosResistancePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "implicit.stat_74135418", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3286_AdditionalMinesPlacedSupported"] = { + ["1409_ChaosResistanceUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2395088636", - ["text"] = "Throw an additional Mine", + ["id"] = "implicit.stat_744196525", + ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Resistance", + ["type"] = "implicit", }, - ["Helmet"] = { + }, + ["1410_MaximumResistances"] = { + ["Amulet"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, }, - }, - ["1576_MaximumFrenzyCharges"] = { - ["Gloves"] = { + ["Chest"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "implicit", }, }, - ["1132_SelfFireAndLightningDamageTaken"] = { + ["1410_MaximumResistancesPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", + ["id"] = "implicit.stat_673499528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all maximum Resistances", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1339_LifeAndPercentLife"] = { + ["1410_MaximumResistancesUniquePresence"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "implicit.stat_3062531896", + ["text"] = "While a Unique Enemy is in your Presence, #% to all maximum Resistances", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2367_MapExtraInvasionBosses"] = { + ["1533_MinionLife"] = { + ["Helmet"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_279246355", - ["text"] = "Area is inhabited by an additional Invasion Boss", + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", }, }, - ["1580_MinimumPowerCharges"] = { + ["1533_MinionLifePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 41, + ["min"] = 32, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_4057257145", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", }, }, - ["5797_FasterPoisonDamageMaven"] = { + ["1533_MinionLifeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["id"] = "implicit.stat_3044748809", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", + ["type"] = "implicit", }, - ["sign"] = "", - ["Boots"] = { + }, + ["1536_MinionRunSpeed"] = { + ["Helmet"] = { + ["max"] = 22, ["min"] = 11, - ["max"] = 15, }, - }, - ["1140_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1805_AlwaysHits"] = { + ["1536_MinionRunSpeedPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4126210832", - ["text"] = "Hits can't be Evaded", + ["id"] = "implicit.stat_2809900883", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1536_MinionRunSpeedUniquePresence"] = { + ["Helmet"] = { + ["max"] = 28, + ["min"] = 16, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["7918_MaximumEnergyShieldFromBodyArmour"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1195319608", - ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["id"] = "implicit.stat_93625449", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 30, + }, + ["1565_MovementVelocity"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", }, }, - ["1502_MaximumEnergyShieldLeechRate"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["1565_MovementVelocityPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["Boots"] = { + ["max"] = 16, + ["min"] = 13, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702124724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", }, }, - ["1310_ArmourAndEnergyShield"] = { + ["1565_MovementVelocityUniquePresence"] = { + ["Amulet"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, + ["id"] = "implicit.stat_3019083030", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", + ["type"] = "implicit", }, }, - ["970_TotemDamageAttackSupported"] = { + ["1612_AvoidFreeze"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", }, - ["sign"] = "", + }, + ["1612_AvoidFreezePinnaclePresence"] = { ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["max"] = 70, + ["min"] = 57, }, - }, - ["6000_MaximumFrenzyChargesMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2119664154", - ["text"] = "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + ["id"] = "implicit.stat_2661498709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 10, + }, + ["1612_AvoidFreezeUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, }, ["sign"] = "", - }, - ["1176_SpellAddedPhysicalDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "implicit.stat_3887072924", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5048_GainEnduranceChargeOnHittingBleedingEnemy"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1536266147", - ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", - }, - ["specialCaseData"] = { + ["1613_AvoidIgnite"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["1288_StunThresholdReduction"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1613_AvoidIgnitePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 57, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_911929910", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", }, }, - ["1007_SpellAddedPhysicalDamageHybrid"] = { + ["1613_AvoidIgniteUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "implicit.stat_2796083262", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1341_IncreasedLifeAndPercent"] = { + ["1615_AvoidShock"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1641_ReducedFreezeDurationMaven"] = { + ["1615_AvoidShockPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 57, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "implicit.stat_3823702653", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + }, + ["1615_AvoidShockUniquePresence"] = { + ["Boots"] = { + ["max"] = 61, + ["min"] = 45, }, ["sign"] = "", - }, - ["1151_LightningDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_3401199213", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["1618_AvoidStun"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", }, }, - ["1751_BlockPercentMaven"] = { + ["1618_AvoidStunPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_990874979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["6034_GainRandomChargeOnBlock"] = { + ["1618_AvoidStunUniquePresence"] = { + ["Boots"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2199099676", - ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3322913142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "implicit", }, }, - ["5654_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["1647_AreaOfEffect"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 5, + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2207_PercentDamageGoesToMana"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["1647_AreaOfEffectPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 23, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 23, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["tradeMod"] = { + ["id"] = "implicit.stat_568930056", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", }, }, - ["339_AdditionalTrapsThrownSupported"] = { + ["1647_AreaOfEffectUniquePresence"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", + ["id"] = "implicit.stat_1847660463", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", + ["type"] = "implicit", }, + }, + ["1692_TrapThrowSpeed"] = { ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["max"] = 13, + ["min"] = 8, }, ["sign"] = "", - }, - ["3947_ChanceToAvoidBleeding"] = { - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 50, - ["max"] = 50, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, - }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 50, - }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, - }, - ["Chest"] = { - ["min"] = 50, - ["max"] = 50, - }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 50, + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", }, }, - ["3118_UnholyMightOnKillPercentChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3991482957", - ["text"] = "#% chance to gain Unholy Might for 10 seconds on Kill", - }, - ["specialCaseData"] = { + ["1692_TrapThrowSpeedPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 21, + ["min"] = 18, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 25, - }, - }, - ["930_BlockingBlocksSpellsUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["id"] = "implicit.stat_547463927", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["5418_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["1692_TrapThrowSpeedUniquePresence"] = { ["Gloves"] = { - ["min"] = 71, - ["max"] = 80, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1583385065", - ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", - }, - ["specialCaseData"] = { + ["max"] = 17, + ["min"] = 13, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 71, - ["max"] = 80, - }, - }, - ["1447_LightningResistanceLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["id"] = "implicit.stat_2479119864", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1626_IgnitingConfluxMaven"] = { + ["1693_MineLayingSpeed"] = { + ["Gloves"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, + }, + ["1693_MineLayingSpeedPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 21, + ["min"] = 18, }, ["sign"] = "", - }, - ["6315_HitAndAilmentDamageCursedEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_539970476", - ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["id"] = "implicit.stat_3827973062", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["281_SupportedBySpiritStrikeArea"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_696805682", - ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", - }, - ["specialCaseData"] = { + ["1693_MineLayingSpeedUniquePresence"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 13, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 20, - }, - }, - ["5796_FasterBleedDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["id"] = "implicit.stat_1516326076", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "implicit", }, }, - ["955_DexterityForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["1738_MinionDamage"] = { + ["Amulet"] = { + ["max"] = 29, + ["min"] = 14, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 14, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, - }, - }, - ["4462_AttackSpeedIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1585344030", - ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1738_MinionDamagePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 53, + ["min"] = 44, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 53, + ["min"] = 44, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["1879_SpellAddedLightningDamageWhileHoldingAShield"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1801889979", - ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["id"] = "implicit.stat_3141084961", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + }, + ["1738_MinionDamageUniquePresence"] = { + ["Amulet"] = { + ["max"] = 41, + ["min"] = 29, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 41, + ["min"] = 29, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, - }, - }, - ["4532_FasterBleedDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["id"] = "implicit.stat_4189960647", + ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + ["type"] = "implicit", }, }, - ["1179_LightningDamageWeaponPrefixAndFlat"] = { + ["1979_GlobalIgniteProlif"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "implicit.stat_2011785027", + ["text"] = "Ignites you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1349_MinionDamageOnWeaponAndMana"] = { + ["1979_GlobalIgniteProlifPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 45, + ["id"] = "implicit.stat_3343791355", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["564_CurseOnHitPoachersMark"] = { + ["1979_GlobalIgniteProlifUniquePresence"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["id"] = "implicit.stat_1698847655", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1178_SpellAddedColdDamageHybrid"] = { + ["1982_FreezeProliferation"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "implicit.stat_1623640288", + ["text"] = "Freezes you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["200_SupportedByCastWhileChannellingWeapon"] = { + ["1982_FreezeProliferationPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["id"] = "implicit.stat_1436051850", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 18, + }, + ["1982_FreezeProliferationUniquePresence"] = { + ["Gloves"] = { ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["1288_StunDurationAndThresholdUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_2543269407", + ["text"] = "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, }, - ["1206_IncreasedAccuracyPercentSupported"] = { + ["1983_ShockProliferation"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "implicit.stat_424549222", + ["text"] = "Shocks you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, + }, + ["1983_ShockProliferationPinnaclePresence"] = { ["Gloves"] = { - ["min"] = 6, - ["max"] = 20, + ["max"] = 23, + ["min"] = 20, }, ["sign"] = "", - }, - ["1179_SpellAddedLightningDamageTwoHand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "implicit.stat_2218095219", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 3.5, - ["max"] = 145, + }, + ["1983_ShockProliferationUniquePresence"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["1662_SkillEffectDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "implicit.stat_2868404935", + ["text"] = "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within a Radius of #", + ["type"] = "implicit", }, - ["sign"] = "", + }, + ["2330_SummonTotemCastSpeed"] = { ["Boots"] = { - ["min"] = 10, ["max"] = 15, - }, - }, - ["4559_FireExposureOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", - }, - ["specialCaseData"] = { + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["2375_EnduranceChargeOnKillChanceMaven"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + }, + ["2330_SummonTotemCastSpeedPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_100371300", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", }, + }, + ["2330_SummonTotemCastSpeedUniquePresence"] = { ["Boots"] = { - ["min"] = 7, - ["max"] = 10, + ["max"] = 19, + ["min"] = 15, }, - }, - ["1218_IncreasedCastSpeedSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "implicit.stat_2033289503", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + ["type"] = "implicit", }, - ["Gloves"] = { + }, + ["2348_CurseEffectiveness"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Chest"] = { + ["max"] = 12, ["min"] = 7, - ["max"] = 14, }, ["sign"] = "", - }, - ["1183_IncreasedAttackSpeedForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["2348_CurseEffectivenessPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1350472585", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", }, }, - ["1151_LightningDamageWeaponPrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["2348_CurseEffectivenessUniquePresence"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 11, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["tradeMod"] = { + ["id"] = "implicit.stat_2669364207", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + ["type"] = "implicit", }, }, - ["8886_AddedFireBurningEnemies"] = { + ["2445_DamageRemovedFromManaBeforeLife"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", }, + }, + ["2445_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 31.5, - ["max"] = 47, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_699673918", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life", + ["type"] = "implicit", }, }, - ["1231_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 22, + ["2445_DamageRemovedFromManaBeforeLifeUniquePresence"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 22, + ["id"] = "implicit.stat_1749598944", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["2490_FlaskEffect"] = { + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - }, - ["8378_ProjectileAttackDamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2771016039", - ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", }, }, - ["1533_MinionLifeSupported"] = { + ["2490_FlaskEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "implicit.stat_4155771029", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + }, + ["2490_FlaskEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 23, + ["min"] = 14, }, ["sign"] = "", - }, - ["152_IncreaseSocketedCurseGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", + ["id"] = "implicit.stat_3610955422", + ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["6978_LocalChanceToIntimidateOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", - }, - ["specialCaseData"] = { + ["2939_DamagePerEnduranceCharge"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", }, }, - ["3995_DualWieldingCritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2546185479", - ["text"] = "#% to Critical Strike Multiplier while Dual Wielding", + ["2939_DamagePerEnduranceChargePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 7, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, - }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, - }, - }, - ["1179_SpellAddedLightningDamagePenetrationHybrid"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "implicit.stat_740797388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["2939_DamagePerEnduranceChargeUniquePresence"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 41.5, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 16.5, - ["max"] = 62, + ["tradeMod"] = { + ["id"] = "implicit.stat_2193147166", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "implicit", }, }, - ["5594_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["3028_DamagePerFrenzyCharge"] = { ["Gloves"] = { - ["min"] = 27, - ["max"] = 30, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2379781920", - ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", - }, - ["Quiver"] = { - ["min"] = 27, - ["max"] = 30, + ["max"] = 6, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, }, - ["3203_ChancetoGainPhasingOnKill"] = { - ["AbyssJewel"] = { - ["min"] = 3, + ["3028_DamagePerFrenzyChargePinnaclePresence"] = { + ["Gloves"] = { ["max"] = 8, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2918708827", - ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1855179125", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", }, - ["Quiver"] = { + }, + ["3028_DamagePerFrenzyChargeUniquePresence"] = { + ["Gloves"] = { + ["max"] = 7, ["min"] = 5, - ["max"] = 10, - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 25, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["2655_MinionAttackAndCastSpeedOnWeapon"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["id"] = "implicit.stat_2415020123", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3032_OnslaughtEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["tradeMod"] = { + ["id"] = "implicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "implicit", }, }, - ["1697_FireDamageAsPortionOfDamage"] = { + ["3032_OnslaughtEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "implicit.stat_3209267362", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2921_PoisonDamage"] = { + ["3032_OnslaughtEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "implicit.stat_491577732", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1154_LightningDamagePhysConvertedToLightning"] = { + ["3216_FlaskGainPerSecond"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "implicit.stat_1193283913", + ["text"] = "Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1251_MeleeCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1199429645", - ["text"] = "#% increased Melee Critical Strike Chance", - }, - ["specialCaseData"] = { + ["3216_FlaskGainPerSecondPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["specialCaseData"] = { }, - }, - ["1833_PhysicalDamageWithBowsJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["id"] = "implicit.stat_1519845279", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3216_FlaskGainPerSecondUniquePresence"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "implicit.stat_2150799098", + ["text"] = "While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds", + ["type"] = "implicit", }, }, - ["8002_FireDamageToAttacksPerStrength"] = { - ["specialCaseData"] = { + ["3303_AuraEffect"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_68673913", - ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["Chest"] = { + ["max"] = 20, + ["min"] = 9, }, ["sign"] = "", - }, - ["287_TrapSpeedCooldownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["3303_AuraEffectPinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 29, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 29, }, ["sign"] = "", - }, - ["8529_RemoveBleedingOnWarcry"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3936926420", - ["text"] = "Removes Bleeding when you use a Warcry", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3788782813", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", }, }, - ["1151_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["specialCaseData"] = { + ["3303_AuraEffectUniquePresence"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 19, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["Chest"] = { + ["max"] = 28, + ["min"] = 19, }, ["sign"] = "", - }, - ["1382_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skill Gems", + ["id"] = "implicit.stat_2558323947", + ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + }, + ["3740_CurseEffectTemporalChains"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "implicit", }, }, - ["987_DegenerationDamage"] = { + ["3740_CurseEffectTemporalChainsPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["id"] = "implicit.stat_3695602451", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, + }, + ["3740_CurseEffectTemporalChainsUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, ["sign"] = "", - }, - ["1512_ManaGainPerTarget"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 5, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "implicit.stat_485385046", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "implicit", }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 5, + }, + ["3742_CurseEffectConductivity"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 2, - ["max"] = 3, + ["tradeMod"] = { + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", }, }, - ["1569_FrenzyChargeOnHitChanceMaven"] = { + ["3742_CurseEffectConductivityPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1541516339", - ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["id"] = "implicit.stat_2095999895", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["3742_CurseEffectConductivityUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, ["sign"] = "", - }, - ["2547_FireLightningResistanceForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["id"] = "implicit.stat_3547319552", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { + }, + ["3743_CurseEffectElementalWeakness"] = { + ["Helmet"] = { + ["max"] = 15, ["min"] = 10, - ["max"] = 12, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", }, }, - ["379_MinionDamageSupported"] = { + ["3743_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_808939569", - ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["id"] = "implicit.stat_2029969019", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", }, + }, + ["3743_CurseEffectElementalWeaknessUniquePresence"] = { ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 19, + ["min"] = 15, }, ["sign"] = "", - }, - ["1536_MinionRunSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - }, - ["Quiver"] = { - ["min"] = 15, - ["max"] = 30, - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 30, - }, - }, - ["954_StrengthForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "implicit.stat_771845579", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + }, + ["3744_CurseEffectEnfeeble"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "implicit", }, }, - ["4199_AdditionalBlockChancePerEnduranceChargeUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3039589351", - ["text"] = "#% Chance to Block Attack Damage per Endurance Charge", + ["3744_CurseEffectEnfeeblePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1339_IncreasedLife"] = { - ["Shield"] = { - ["min"] = 100, - ["max"] = 109, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 129, + ["id"] = "implicit.stat_38083709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 99, + }, + ["3744_CurseEffectEnfeebleUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 99, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 99, + ["tradeMod"] = { + ["id"] = "implicit.stat_937462392", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "implicit", }, }, - ["1616_AvoidBleedAndPoison"] = { + ["3745_CurseEffectFlammability"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 41, - ["max"] = 70, + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", }, }, - ["9214_ZealotryReservationEfficiency"] = { + ["3745_CurseEffectFlammabilityPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["id"] = "implicit.stat_323292443", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1195_ClawAttackSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", + ["3745_CurseEffectFlammabilityUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_1394267723", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3746_CurseEffectFrostbite"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["1008_CullingStrikeOnBleedingEnemiesUber"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3746_CurseEffectFrostbitePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 49, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 49, + ["tradeMod"] = { + ["id"] = "implicit.stat_2068042138", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", }, }, - ["263_PoisonDurationWeaponSupported"] = { + ["3746_CurseEffectFrostbiteUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2228279620", - ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["id"] = "implicit.stat_3199183447", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["3747_CurseEffectPunishment"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["9273_Solipsism"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_112130960", - ["text"] = "Solipsism", + ["id"] = "implicit.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "implicit", }, }, - ["2659_MinionElementalResistance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["3747_CurseEffectPunishmentPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Ring"] = { - ["min"] = 11, - ["max"] = 30, - }, - ["Shield"] = { - ["min"] = 11, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_40584863", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", }, }, - ["1350_MaximumManaIncreasePercentMaven"] = { + ["3747_CurseEffectPunishmentUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "implicit.stat_4171615823", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "implicit", }, + }, + ["3748_CurseEffectVulnerability"] = { ["Helmet"] = { - ["min"] = 12, ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["5016_SpellBlockChanceIfHitRecently"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1101206134", - ["text"] = "#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + }, + ["3748_CurseEffectVulnerabilityPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_1668340466", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", }, }, - ["1394_FireResistance"] = { - ["Quiver"] = { - ["min"] = 6, - ["max"] = 48, + ["3748_CurseEffectVulnerabilityUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 6, - ["max"] = 48, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 48, + ["id"] = "implicit.stat_2638071469", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 48, + }, + ["3754_ArcticArmourBuffEffect"] = { + ["Chest"] = { + ["max"] = 32, + ["min"] = 15, }, - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 48, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 6, - ["max"] = 48, + ["tradeMod"] = { + ["id"] = "implicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "implicit", }, }, - ["9000_ChilledGroundEffectEffectiveness"] = { + ["3754_ArcticArmourBuffEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3744585764", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", }, }, - ["218_SupportedByEnhance"] = { + ["3754_ArcticArmourBuffEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 41, + ["min"] = 27, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2556436882", - ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["id"] = "implicit.stat_4047779849", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8659_IncreasedManaAndBaseCost"] = { + ["3794_OfferingEffect"] = { + ["Chest"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost # Mana", + ["id"] = "implicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["6553_AbyssJewelShockEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["specialCaseData"] = { + ["3794_OfferingEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 29, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_2526554500", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", }, }, - ["1697_PhysicalAddedAsFire"] = { - ["2HWeapon"] = { - ["min"] = 7, + ["3794_OfferingEffectUniquePresence"] = { + ["Chest"] = { ["max"] = 30, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 20, - }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 15, - }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_1132843482", + ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", + ["type"] = "implicit", }, + }, + ["3827_RockGolemBuffEffect"] = { ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["max"] = 48, + ["min"] = 31, }, - }, - ["7948_StrikeSkillsAdditionalTarget"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1661253443", - ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1706_FireAddedAsChaos"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["3827_RockGolemBuffEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 72, + ["min"] = 61, }, ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_438468314", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", }, }, - ["2391_EnergyShieldRecoveryRateMaven"] = { + ["3827_RockGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", + ["id"] = "implicit.stat_1722486495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 50, - ["max"] = 100, + }, + ["3828_FireGolemBuffEffect"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 31, }, ["sign"] = "", - }, - ["2348_CurseEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "implicit.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", }, }, - ["1985_AuraRadiusForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_895264825", - ["text"] = "#% increased Area of Effect of Aura Skills", + ["3828_FireGolemBuffEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 72, + ["min"] = 61, }, ["sign"] = "", - }, - ["8010_AddedPhysicalDamageIfCritRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2723101291", - ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["id"] = "implicit.stat_783010498", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 14, + }, + ["3828_FireGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, }, ["sign"] = "", - }, - ["6115_HatredReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_3591219299", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4547_ColdDamageESLeech"] = { + ["3829_IceGolemBuffEffect"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1939452467", - ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["id"] = "implicit.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, + }, + ["3829_IceGolemBuffEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 72, + ["min"] = 61, }, ["sign"] = "", - }, - ["4260_GlobalSkillGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4283407333", - ["text"] = "# to Level of all Skill Gems", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_168204696", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1697_ConvertPhysicalToFireMaven"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["3829_IceGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3588695478", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3830_LightningGolemBuffEffect"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 31, }, ["sign"] = "", - }, - ["5492_DeterminationReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5392_DamagePer15Strength"] = { + ["3830_LightningGolemBuffEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 72, + ["min"] = 61, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3948776386", - ["text"] = "#% increased Damage per 15 Strength", + ["id"] = "implicit.stat_2527345629", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["3830_LightningGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, }, ["sign"] = "", - }, - ["1618_AvoidStunAndElementalStatusAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "implicit.stat_1747983672", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 30, - ["max"] = 35, + }, + ["3831_ChaosGolemBuffEffect"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 31, }, ["sign"] = "", - }, - ["2909_BleedDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["3831_ChaosGolemBuffEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 72, + ["min"] = 61, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_510803146", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", }, }, - ["2593_FishingHookType"] = { + ["3831_ChaosGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2054162825", - ["text"] = "Karui Stone Hook", + ["id"] = "implicit.stat_1807607778", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", }, }, - ["3196_IncreasedDamageFromAuras"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3729445224", - ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", - }, - ["specialCaseData"] = { + ["4186_ActionSpeedImplicit"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "implicit", }, }, - ["1507_LifeGainedOnSpellHit"] = { + ["4186_ActionSpeedImplicitPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2018035324", - ["text"] = "Gain # Life per Enemy Hit with Spells", + ["id"] = "implicit.stat_2251857767", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 15, + }, + ["4186_ActionSpeedImplicitUniquePresence"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - }, - ["2378_MinimumFrenzyChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2142803347", - ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["id"] = "implicit.stat_1829486532", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1900_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4193088553", - ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["4416_AttackCriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 19, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 36, + ["min"] = 19, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 18, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, - }, - }, - ["8049_MinionCriticalStrikeMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% to Critical Strike Multiplier", - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 38, + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2909_BleedingDamageSupported"] = { + ["4416_AttackCriticalStrikeChancePinnaclePresence"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 49, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["id"] = "implicit.stat_1840069423", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", + }, + }, + ["4416_AttackCriticalStrikeChanceUniquePresence"] = { + ["Amulet"] = { + ["max"] = 48, + ["min"] = 34, }, ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - }, - ["930_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["id"] = "implicit.stat_3710240762", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1159_SpellAddedChaosDamageHybrid"] = { + ["4438_ReducedAttackManaCost"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "implicit.stat_2859471749", + ["text"] = "#% reduced Mana Cost of Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["7212_ManaGainedOnSpellHit"] = { + ["4438_ReducedAttackManaCostPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 35, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2474196346", - ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["id"] = "implicit.stat_3671920033", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 2, - ["max"] = 3, + }, + ["4438_ReducedAttackManaCostUniquePresence"] = { + ["Helmet"] = { + ["max"] = 36, + ["min"] = 27, }, ["sign"] = "", - }, - ["2375_EnduranceChargeOnKillChance"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["id"] = "implicit.stat_1116269888", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + }, + ["4534_CarrionGolemBuffEffect"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 31, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", }, + }, + ["4534_CarrionGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { - ["min"] = 4, - ["max"] = 10, + ["max"] = 72, + ["min"] = 61, }, - }, - ["8214_AdditionalTrapsThrownSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1220800126", - ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1080711147", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", }, }, - ["1945_BeltIncreasedFlaskChargesGained"] = { + ["4534_CarrionGolemBuffEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 46, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "implicit.stat_2917444195", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + }, + ["4766_EnduranceChargePerSecond"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2555092341", + ["text"] = "Gain an Endurance Charge every # seconds", + ["type"] = "implicit", }, }, - ["5077_ChanceToIntimidateOnHit"] = { + ["4766_EnduranceChargePerSecondPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "implicit.stat_951862199", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", }, - ["Gloves"] = { - ["min"] = 7, + }, + ["4766_EnduranceChargePerSecondUniquePresence"] = { + ["Chest"] = { ["max"] = 10, + ["min"] = 6, }, ["sign"] = "", - }, - ["1331_LifeAndEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "implicit.stat_2441896589", + ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1140_ColdDamageWeaponPrefixAndFlat"] = { + ["4767_FrenzyChargePerSecond"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "implicit.stat_3906868545", + ["text"] = "Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2379_PowerChargeOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["4767_FrenzyChargePerSecondPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 2, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_560848642", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 4, + }, + ["4767_FrenzyChargePerSecondUniquePresence"] = { + ["Chest"] = { ["max"] = 10, + ["min"] = 6, }, - }, - ["4460_AttackSpeedHitRecently"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4137521191", - ["text"] = "#% increased Attack Speed if you've been Hit Recently", - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "implicit.stat_2847070982", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1384_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skill Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["4768_PowerChargePerSecond"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["5403_DamageVSAbyssMonsters"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3257279374", - ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", - }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["id"] = "implicit.stat_3533655459", + ["text"] = "Gain a Power Charge every # seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4768_PowerChargePerSecondPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["specialCaseData"] = { }, - }, - ["5153_AbyssJewelChillEffect"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "implicit.stat_2703923310", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4768_PowerChargePerSecondUniquePresence"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, - }, - ["5267_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["id"] = "implicit.stat_46472075", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + }, + ["4777_BrittleGroundMovingImplicit"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 2, }, ["sign"] = "", - }, - ["1177_FireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "implicit.stat_984148407", + ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1517_MaximumLifeOnKillPercentMaven"] = { + ["4777_BrittleGroundWhileMovingPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["id"] = "implicit.stat_235328972", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["Chest"] = { + }, + ["4777_BrittleGroundWhileMovingUniquePresence"] = { + ["Boots"] = { + ["max"] = 9, ["min"] = 5, - ["max"] = 6, }, ["sign"] = "", - }, - ["180_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1065580342", - ["text"] = "#% to Quality of Socketed Lightning Gems", + ["id"] = "implicit.stat_1771822543", + ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["sign"] = "+", + }, + ["4778_SappedGroundMovingImplicit"] = { ["Boots"] = { - ["min"] = 3, ["max"] = 7, + ["min"] = 2, }, - }, - ["2242_AbyssMinionAttacksBleedOnHitChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3998967779", - ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_1997664024", + ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4778_SappedGroundWhileMovingPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 8, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["specialCaseData"] = { }, - }, - ["5729_FlatEnergyShieldRegeneration"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", - }, - ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 20, + ["id"] = "implicit.stat_1296291315", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["4778_SappedGroundWhileMovingUniquePresence"] = { + ["Boots"] = { + ["max"] = 9, + ["min"] = 5, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 9, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["4228_ReducedPhysicalDamageTakenIfNotHitRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3603666270", - ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["id"] = "implicit.stat_2220831041", + ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["AbyssJewel"] = { + }, + ["4779_ScorchedGroundMovingImplicit"] = { + ["Boots"] = { + ["max"] = 7, ["min"] = 2, - ["max"] = 2, - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, - }, - ["1348_LifeRecoveryRate"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_396238230", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["sign"] = "", - ["Chest"] = { + }, + ["4779_ScorchedGroundWhileMovingPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 11, ["min"] = 8, - ["max"] = 15, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["5762_EvasionRatingWhileMoving"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_734823525", - ["text"] = "#% increased Evasion Rating while moving", + ["id"] = "implicit.stat_4054012096", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 35, + }, + ["4779_ScorchedGroundWhileMovingUniquePresence"] = { + ["Boots"] = { + ["max"] = 9, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_493814995", + ["text"] = "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", }, }, - ["5267_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { + ["5077_ChanceToIntimidateOnHit"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["id"] = "implicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 30, + }, + ["5077_ChanceToIntimidateOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 95, + ["min"] = 85, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_3004272949", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, }, - ["353_IncreasedAttackSpeedSupported"] = { + ["5077_ChanceToIntimidateOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["id"] = "implicit.stat_144453866", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, + }, + ["5085_ChanceToUnnerveOnHit"] = { ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 40, + ["min"] = 15, }, ["sign"] = "", - }, - ["3992_MovementSpeedIfEnemySlainRecently"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_279227559", - ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["id"] = "implicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + }, + ["5085_ChanceToUnnerveOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 95, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_4018420421", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, }, - ["5693_EnchantmentWither"] = { + ["5085_ChanceToUnnerveOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1032614900", - ["text"] = "Enemies Withered by you have #% to all Resistances", + ["id"] = "implicit.stat_1708506642", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + }, + ["5171_ColdDamageTakenGainedAsLife"] = { + ["Helmet"] = { + ["max"] = 18, + ["min"] = 7, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "-", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["2845_VaalSkillDuration"] = { + ["5171_ColdDamageTakenGainedAsLifePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_547412107", - ["text"] = "#% increased Vaal Skill Effect Duration", + ["id"] = "implicit.stat_2181576428", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["Amulet"] = { + }, + ["5171_ColdDamageTakenGainedAsLifeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 24, ["min"] = 15, - ["max"] = 25, }, ["sign"] = "", - }, - ["1349_IncreasedManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_1739741837", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1865_AddedLightningDamageWithWands"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2787733863", - ["text"] = "# to # Added Lightning Damage with Wand Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["specialCaseData"] = { + ["5400_IncreasedDamagePerPowerCharge"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["specialCaseData"] = { }, - }, - ["1625_FreezeChanceAndDurationForJewel"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["5400_IncreasedDamagePerPowerChargePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 7, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["specialCaseData"] = { }, - }, - ["6544_LifeRegenerationRateWhileMoving"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_908516597", - ["text"] = "Regenerate #% of Life per second while moving", + ["id"] = "implicit.stat_2809284200", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 0.5, - ["max"] = 1, + }, + ["5400_IncreasedDamagePerPowerChargeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 7, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.5, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1394771132", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", + ["type"] = "implicit", }, }, - ["1246_TrapCritChanceForJewel"] = { + ["5431_DamageTakenGainedAsLife"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1192661666", - ["text"] = "#% increased Critical Strike Chance with Traps", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8326_ReducedPhysicalReflectTaken"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["5431_DamageTakenGainedAsLifePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 31, + ["min"] = 24, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 31, - ["max"] = 55, + ["tradeMod"] = { + ["id"] = "implicit.stat_2525287976", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", }, + }, + ["5431_DamageTakenGainedAsLifeUniquePresence"] = { ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + ["max"] = 25, + ["min"] = 16, }, - }, - ["1899_DamageOverTimeWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1244360317", - ["text"] = "#% increased Damage over Time while holding a Shield", + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, - }, - ["specialCaseData"] = { + ["tradeMod"] = { + ["id"] = "implicit.stat_2080582538", + ["text"] = "While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["sign"] = "", - ["BaseJewel"] = { + }, + ["5488_CurseEffectDespair"] = { + ["Helmet"] = { + ["max"] = 15, ["min"] = 10, - ["max"] = 18, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1872_SpellAddedColdDamageWhileDualWielding"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3376452528", - ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["id"] = "implicit.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["5488_CurseEffectDespairPinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 20, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["specialCaseData"] = { }, - }, - ["8036_MinionAttacksBlindOnHitChance"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2431643207", - ["text"] = "Minions have #% chance to Blind on Hit with Attacks", + ["id"] = "implicit.stat_2775855429", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + }, + ["5488_CurseEffectDespairUniquePresence"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_2909684383", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + ["type"] = "implicit", }, }, - ["953_AllAttributes"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["5785_ExtinguishOnHitChance"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 35, - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_49183689", + ["text"] = "#% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", }, }, - ["9217_ZeroChaosResistanceDelve"] = { + ["5785_ExtinguishOnHitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 85, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2439129490", - ["text"] = "Chaos Resistance is Zero", + ["id"] = "implicit.stat_3854721949", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", }, }, - ["6553_ShockEffectSupported"] = { + ["5785_ExtinguishOnHitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", + ["id"] = "implicit.stat_4163073767", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", }, + }, + ["5821_FireDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["min"] = 8, - ["max"] = 20, + ["max"] = 18, + ["min"] = 7, }, ["sign"] = "", - }, - ["1231_CritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["5821_FireDamageTakenGainedAsLifePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 23, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1613190388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["5423_DamageRemovedFromManaBeforeLifeWhileFocused"] = { + ["5821_FireDamageTakenGainedAsLifeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1588539856", - ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["id"] = "implicit.stat_2143647966", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "implicit", }, + }, + ["5889_FleshAndStoneAreaOfEffect"] = { ["Chest"] = { - ["min"] = 18, - ["max"] = 22, + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - }, - ["6553_LightningAilmentEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", + ["id"] = "implicit.stat_789978501", + ["text"] = "Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4004_AddedColdDamagePerFrenzyCharge"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", - }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["5889_FleshAndStoneAreaOfEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 39, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 3, - ["max"] = 5.5, + ["specialCaseData"] = { }, - }, - ["1738_MinionDamageAndMinionMaximumLife"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "implicit.stat_3393490212", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["5889_FleshAndStoneAreaOfEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 41, + ["min"] = 27, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 59, - }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 59, + ["specialCaseData"] = { }, - }, - ["4348_IncreasedArmourIfNoEnemySlainRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2424133568", - ["text"] = "#% increased Armour if you haven't Killed Recently", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "implicit.stat_1472965536", + ["text"] = "While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["6076_RageOnHitImplicit"] = { + ["Gloves"] = { + ["max"] = 1.2, + ["min"] = 0.7, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["4878_CastSpeedIfMinionKilledRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3110907148", - ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", - }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 10, + ["id"] = "implicit.stat_2802161115", + ["text"] = "Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["6076_RageOnHitImplicitPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 0.6, + ["min"] = 0.3, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["5690_EnchantmentIntimidate"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1919892065", - ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["id"] = "implicit.stat_1270539481", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + }, + ["6076_RageOnHitImplicitUniquePresence"] = { + ["Gloves"] = { + ["max"] = 0.9, + ["min"] = 0.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_2076129434", + ["text"] = "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["type"] = "implicit", }, }, - ["1856_AddedColdDamageWithSwords"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_972201717", - ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["6079_GolemBuffEffectUnique"] = { + ["Chest"] = { + ["max"] = 36, + ["min"] = 19, }, - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2109043683", + ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["6079_GolemBuffEffectUniquePinnaclePresence"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 49, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["specialCaseData"] = { }, - }, - ["4232_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "implicit.stat_4128294206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["6079_GolemBuffEffectUniqueUniquePresence"] = { + ["Chest"] = { + ["max"] = 48, + ["min"] = 34, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - }, - ["4877_CastSpeedIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1174076861", - ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["id"] = "implicit.stat_2159248495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + }, + ["6273_HeraldBonusAgonyEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["1339_BaseLifeAndManaRegen"] = { + ["6273_HeraldBonusAgonyEffectPinnaclePresence"] = { ["Gloves"] = { - ["min"] = 55, - ["max"] = 60, - }, - ["Quiver"] = { - ["min"] = 55, - ["max"] = 60, + ["max"] = 48, + ["min"] = 39, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 55, - ["max"] = 60, - }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["Helmet"] = { - ["min"] = 55, - ["max"] = 60, + ["id"] = "implicit.stat_3001066983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 55, - ["max"] = 60, + }, + ["6273_HeraldBonusAgonyEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 39, + ["min"] = 27, }, - ["Amulet"] = { - ["min"] = 55, - ["max"] = 60, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 55, - ["max"] = 60, + ["tradeMod"] = { + ["id"] = "implicit.stat_503887731", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["8659_ManaCostBaseNonChannelled"] = { + ["6277_HeraldBonusAshEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost # Mana", + ["id"] = "implicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["1616_MovementVelocitySpellDodge"] = { + ["6277_HeraldBonusAshEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["id"] = "implicit.stat_3045509476", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8068_FlatMinionLifeRegeneration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3062329212", - ["text"] = "Minions Regenerate # Life per second", - }, - ["AbyssJewel"] = { - ["min"] = 22, - ["max"] = 60, - }, - ["specialCaseData"] = { + ["6277_HeraldBonusAshEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 39, + ["min"] = 27, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 22, - ["max"] = 60, + ["specialCaseData"] = { }, - }, - ["1161_AddedChaosSuffix"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 8.5, - ["max"] = 16, + ["id"] = "implicit.stat_109112452", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["6281_HeraldBonusIceEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 8.5, - ["max"] = 16, + ["specialCaseData"] = { }, - }, - ["1850_AddedColdDamageWithAxes"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1782176131", - ["text"] = "# to # Added Cold Damage with Axe Attacks", - }, - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["id"] = "implicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + }, + ["6281_HeraldBonusIceEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 48, + ["min"] = 39, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1609260458", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["5376_DamageIfEnemySlainRecently"] = { + ["6281_HeraldBonusIceEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 39, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1072119541", - ["text"] = "#% increased Damage if you've Killed Recently", + ["id"] = "implicit.stat_3593717239", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { + }, + ["6285_HeraldBonusPurityEffect"] = { + ["Gloves"] = { + ["max"] = 30, ["min"] = 15, - ["max"] = 20, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["1500_MaximumLifeLeechRateOldFix"] = { + ["6285_HeraldBonusPurityEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 48, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["id"] = "implicit.stat_3005679448", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1875_SpellAddedFireDamageWhileDualWielding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_662691280", - ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["6285_HeraldBonusPurityEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 39, + ["min"] = 27, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_4093169696", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["1863_AddedLightningDamageWithStaves"] = { + ["6291_HeraldBonusThunderEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3212481075", - ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["id"] = "implicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + }, + ["6291_HeraldBonusThunderEffectPinnaclePresence"] = { + ["Gloves"] = { + ["max"] = 48, + ["min"] = 39, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1553385903", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["6291_HeraldBonusThunderEffectUniquePresence"] = { + ["Gloves"] = { + ["max"] = 39, + ["min"] = 27, + }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_649027123", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["1843_FireDamageWithBowsJewel"] = { + ["6570_LightningDamageTakenGainedAsLife"] = { + ["Helmet"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["id"] = "implicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + }, + ["6570_LightningDamageTakenGainedAsLifePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 23, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3870554516", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["6570_LightningDamageTakenGainedAsLifeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 24, + ["min"] = 15, + }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1146717028", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["1854_AddedColdDamageWithMaces"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_187418672", - ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["7948_StrikeSkillsAdditionalTarget"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["8319_PhysicalDamageTakenGainedAsLife"] = { + ["Helmet"] = { + ["max"] = 18, + ["min"] = 7, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_4021566756", + ["text"] = "#% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["8319_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["id"] = "implicit.stat_1300694383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1858_AddedLightningDamageWithAxes"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1582068183", - ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["8319_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["Helmet"] = { + ["max"] = 24, + ["min"] = 15, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { + ["tradeMod"] = { + ["id"] = "implicit.stat_3796902731", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["8641_BrandAttachmentRange"] = { + ["Boots"] = { + ["max"] = 15, ["min"] = 10, - ["max"] = 27.5, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["8641_BrandAttachmentRangePinnaclePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 20, + }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2391109128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", }, }, - ["5625_ReducedElementalReflectTakenMaven"] = { + ["8641_BrandAttachmentRangeUniquePresence"] = { + ["Boots"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["id"] = "implicit.stat_636616197", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + ["type"] = "implicit", }, + }, + ["8928_TempestShieldBuffEffect"] = { ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - }, - ["6116_HatredReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["id"] = "implicit.stat_2662416009", + ["text"] = "Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 40, + }, + ["8928_TempestShieldBuffEffectPinnaclePresence"] = { + ["Chest"] = { ["max"] = 50, + ["min"] = 39, }, ["sign"] = "", - }, - ["1134_AddedFireSuffix"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["id"] = "implicit.stat_2601015548", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 21.5, + }, + ["8928_TempestShieldBuffEffectUniquePresence"] = { + ["Chest"] = { + ["max"] = 41, + ["min"] = 27, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 21.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_942478380", + ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "implicit", }, }, - ["5786_LuckyCriticalsDuringFocusCDR"] = { + ["9090_WarcryEffect"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1349659520", - ["text"] = "Your Critical Strike Chance is Lucky while Focused", - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "implicit", }, }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { + ["9090_WarcryEffectPinnaclePresence"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 35, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", + ["id"] = "implicit.stat_794753348", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", }, + }, + ["9090_WarcryEffectUniquePresence"] = { ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 36, + ["min"] = 27, }, - ["sign"] = "+", - }, - ["5253_CritChanceShockedEnemies"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 30, - ["max"] = 45, + ["id"] = "implicit.stat_3611265227", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "implicit", }, }, - ["1738_MinionDamageOnWeaponAndMana"] = { + ["949_BoneOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 39, + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5613_IncreasedWeaponElementalDamagePercent"] = { - ["specialCaseData"] = { + ["949_BoneOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 50, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["id"] = "implicit.stat_3774100463", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 59, + }, + ["949_BoneOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 42, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 19, - ["max"] = 100, + ["tradeMod"] = { + ["id"] = "implicit.stat_2290911895", + ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 50, + }, + ["950_FleshOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Shield"] = { - ["min"] = 26, - ["max"] = 40, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1009_LocalArmourPenetration"] = { ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3579673398", - ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", + ["type"] = "implicit", }, + }, + ["950_FleshOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_862077496", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + }, + ["950_FleshOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, ["sign"] = "", - }, - ["2595_FishingQuantity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", + ["id"] = "implicit.stat_3599488608", + ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1000_WeaponSpellDamageControlledDestruction"] = { + ["951_SpiritOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + }, + ["951_SpiritOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", - }, - ["1512_ManaGainPerTargetForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "implicit.stat_2399066987", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", }, - ["specialCaseData"] = { + }, + ["951_SpiritOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_2814835155", + ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", }, }, - ["1630_StunDurationIncreasePercent"] = { + }, + ["Explicit"] = { + ["1000_SpellDamage"] = { + ["Amulet"] = { + ["max"] = 26, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 35, + }, + ["1000_SpellDamageAndManaRegenerationRate"] = { + ["1HAxe"] = { + ["max"] = 79, + ["min"] = 36, }, - ["Quiver"] = { - ["min"] = 11, - ["max"] = 35, + ["1HMace"] = { + ["max"] = 79, + ["min"] = 36, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 79, + ["min"] = 36, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 35, + ["max"] = 79, + ["min"] = 36, }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 35, + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 60, }, - }, - ["5691_EnchantmentMaim"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2745149002", - ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["2HMace"] = { + ["max"] = 109, + ["min"] = 60, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["2HSword"] = { + ["max"] = 109, + ["min"] = 60, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 60, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, }, - }, - ["8720_SpellsAdditionalUnleashSealMaven"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 79, + ["min"] = 36, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2897207025", - ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", + ["Dagger"] = { + ["max"] = 79, + ["min"] = 36, }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 75, + ["Staff"] = { + ["max"] = 109, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 79, + ["min"] = 36, }, ["sign"] = "", - }, - ["4485_AddedColdDamagePerDexterity"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", }, - ["specialCaseData"] = { + }, + ["1000_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 69, + ["min"] = 38, + }, + ["1HMace"] = { + ["max"] = 69, + ["min"] = 38, + }, + ["1HSword"] = { + ["max"] = 69, + ["min"] = 38, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 3, + ["max"] = 69, + ["min"] = 38, + }, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 53, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 53, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 53, }, ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["max"] = 99, + ["min"] = 53, }, - }, - ["1873_SpellAddedColdDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2671663397", - ["text"] = "# to # Added Spell Cold Damage while holding a Shield", + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Claw"] = { + ["max"] = 69, + ["min"] = 38, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 69, + ["min"] = 38, + }, + ["Staff"] = { + ["max"] = 99, + ["min"] = 53, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 38, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, }, - ["1031_ColdDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["1000_SpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 12, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, + }, + ["1000_TwoHandWeaponSpellDamage"] = { + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 15, }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 38, + ["2HMace"] = { + ["max"] = 144, + ["min"] = 15, }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["2HSword"] = { + ["max"] = 144, + ["min"] = 15, }, - }, - ["2964_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["Bow"] = { + ["max"] = 144, + ["min"] = 15, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 12, + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, }, - }, - ["1350_EnergyShieldAndManaForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", }, - ["sign"] = "", }, - ["1042_SelfPhysicalDamageTaken"] = { - ["specialCaseData"] = { + ["1000_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2093523445", - ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, }, ["sign"] = "", - }, - ["1328_EnergyShieldAndDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", }, - ["sign"] = "+", }, - ["1131_FireDamagePrefixFirePenetration"] = { - ["specialCaseData"] = { + ["1000_WeaponSpellDamage"] = { + ["1HAxe"] = { + ["max"] = 94, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 94, + ["min"] = 10, }, ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["max"] = 109, + ["min"] = 10, }, - ["sign"] = "", - }, - ["5504_DisciplineReservation"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 94, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["Dagger"] = { + ["max"] = 109, + ["min"] = 10, }, - ["sign"] = "", - }, - ["8086_MinionSpellsHinderOnHitChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2323739383", - ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, }, - ["7908_FortifyEffect"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["1000_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_335507772", - ["text"] = "# to maximum Fortification", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["1000_WeaponSpellDamageAndMana"] = { + ["1HMace"] = { + ["max"] = 39, + ["min"] = 5, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 5, }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 3, - ["max"] = 5, + ["Dagger"] = { + ["max"] = 39, + ["min"] = 5, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 5, + ["Wand"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1007_PhysicalDamagePercentPrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - }, - ["specialCaseData"] = { }, + }, + ["1000_WeaponSpellDamageArcaneSurge"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["1450_ChaosDamageLifeLeechPermyriad"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + }, + ["1000_WeaponSpellDamageControlledDestruction"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, }, - }, - ["5035_ChanceWhenHitForArmourToBeDoubled"] = { - ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 30, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", - }, - ["Boots"] = { - ["min"] = 10, - ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 20, + }, + ["1000_WeaponSpellDamageEfficacy"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 20, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, }, - }, - ["4531_ChanceToAvoidProjectilesMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 12, }, }, - ["6974_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { + ["1000_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1560880986", - ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", }, - ["sign"] = "", }, - ["1179_SpellAddedLightningSuffix"] = { + ["1000_WeaponSpellDamageReducedMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25.5, + }, + ["1003_StaffSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25.5, - }, - }, - ["2574_OnslaughtWhenHitForDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", ["type"] = "explicit", - ["id"] = "explicit.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", }, - ["sign"] = "", }, - ["1320_IncreasedEvasionForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - }, - ["AbyssJewel"] = { + ["1005_ShieldSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, ["min"] = 14, - ["max"] = 18, - }, - ["specialCaseData"] = { }, - ["sign"] = "", ["BaseJewel"] = { + ["max"] = 16, ["min"] = 14, - ["max"] = 18, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1409_ChaosResistanceForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 13, }, - ["specialCaseData"] = { + }, + ["1006_DualWieldingSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 7, - ["max"] = 13, + ["max"] = 16, + ["min"] = 14, }, - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 13, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1176_SpellAddedPhysicalSuffix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", }, - ["AbyssJewel"] = { - ["min"] = 4.5, - ["max"] = 19, - }, - ["specialCaseData"] = { + }, + ["1007_IncreasedChaosAndPhysicalDamage"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 11, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["specialCaseData"] = { }, - }, - ["1177_SpellAddedFireSuffix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", }, - ["AbyssJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + }, + ["1007_PhysicalDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, - }, - }, - ["1511_LifeGainOnHitVsIgnitedEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_120895749", - ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", }, - ["sign"] = "", }, - ["1844_AddedFireDamageWithClaws"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2154290807", - ["text"] = "# to # Added Fire Damage with Claw Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["1007_PhysicalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 9, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 16, + ["min"] = 9, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, - }, - }, - ["9015_ShockedGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1473289174", - ["text"] = "Unaffected by Shock", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["4560_LightningExposureOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["1007_PhysicalDamagePercentPrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, }, - ["1727_PhysicalDamageConvertedToChaos"] = { + ["1007_SpellAddedPhysicalDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", }, - ["specialCaseData"] = { + }, + ["1008_CullingStrikeOnBleedingEnemiesUber"] = { + ["1HAxe"] = { + ["max"] = 49, + ["min"] = 30, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 25, + ["max"] = 49, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 49, + ["min"] = 30, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 25, + ["max"] = 49, + ["min"] = 30, }, - }, - ["8038_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_755922799", - ["text"] = "Minions have #% chance to deal Double Damage", }, - ["sign"] = "", }, - ["386_ColdDamagePrefixColdPenetration"] = { - ["specialCaseData"] = { + ["1008_LocalChanceToMaimPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1991958615", - ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, ["1HWeapon"] = { - ["min"] = 16, ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["1722_ConvertPhysicalToCold"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1839_AddedPhysicalDamageWithWands"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_133683091", - ["text"] = "# to # Added Physical Damage with Wand Attacks", }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + }, + ["1008_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 139, + ["min"] = 81, + }, + ["1HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["max"] = 139, + ["min"] = 81, }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["2HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1867_AddedChaosDamageWithClaws"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4191067677", - ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["2HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["2HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["Claw"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["2330_TotemSpeedSpellSupported"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, + }, + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["1188_AttackSpeedWhileDualWieldingForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4249220643", - ["text"] = "#% increased Attack Speed while Dual Wielding", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1008_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["9090_WarcryAreaOfEffectMaven"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["2HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 15, + ["2HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - }, - ["1898_DamageOverTimeWhileDualWielding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_214001793", - ["text"] = "#% increased Damage over Time while Dual Wielding", + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["Dagger"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1230_CriticalStrikeChanceSpellsSupported"] = { + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", - }, - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 82, }, - ["sign"] = "", }, - ["2728_SpellAddedLightningDamagePenetrationHybrid"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["1008_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, + ["1HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["1HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["6005_GainOnslaughtDuringSoulGainPrevention"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1572897579", - ["text"] = "You have Onslaught during Soul Gain Prevention", + ["2HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["2HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1851_AddedColdDamageWithBows"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Claw"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["5894_LuckyCriticalsDuringFocusCDR"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, }, }, - ["8913_TailwindOnCriticalStrikeMaven"] = { - ["specialCaseData"] = { + ["1008_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["1HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["7933_MaximumLifeConvertedToEnergyShield"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2458962764", - ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["2HAxe"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - }, - ["7242_ManaRegenerationRateWhileMoving"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1327522346", - ["text"] = "#% increased Mana Regeneration Rate while moving", + ["2HMace"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["2HSword"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, - ["Boots"] = { - ["min"] = 50, - ["max"] = 70, + ["Claw"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1834_AddedPhysicalDamageWithClaws"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3303015", - ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["Dagger"] = { + ["max"] = 139, + ["min"] = 81, }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["specialCaseData"] = { }, - }, - ["5408_DamageOnFullLife"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_592020238", - ["text"] = "#% increased Damage when on Full Life", }, - ["specialCaseData"] = { + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HAxe"] = { + ["max"] = 79, + ["min"] = 15, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 120, + ["1HMace"] = { + ["max"] = 79, + ["min"] = 15, }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 120, + ["1HSword"] = { + ["max"] = 79, + ["min"] = 15, }, - }, - ["2658_MinionLifeRegeneration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 0.4, - ["max"] = 0.8, + ["2HAxe"] = { + ["max"] = 79, + ["min"] = 15, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 79, + ["min"] = 15, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.4, - ["max"] = 0.8, + ["2HSword"] = { + ["max"] = 79, + ["min"] = 15, }, - }, - ["2823_ChanceToGainUnholyMightOnKillAbyss"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3166317791", - ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["2HWeapon"] = { + ["max"] = 79, + ["min"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 5, + ["Bow"] = { + ["max"] = 79, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 79, + ["min"] = 15, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 5, + ["specialCaseData"] = { }, - }, - ["961_PercentageStrengthMaven"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", }, - ["specialCaseData"] = { + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1HMace"] = { + ["max"] = 69, + ["min"] = 25, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 12, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 12, + ["2HMace"] = { + ["max"] = 69, + ["min"] = 25, }, - }, - ["1349_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + }, + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["1HSword"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HAxe"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 64, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - ["sign"] = "+", - }, - ["1612_AvoidFreeze"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", }, - ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 69, + ["min"] = 25, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["Dagger"] = { + ["max"] = 69, + ["min"] = 25, }, - }, - ["2914_MinionsPoisonEnemiesOnHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", }, - ["sign"] = "", }, - ["1859_AddedLightningDamageWithBows"] = { + ["1008_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1HAxe"] = { + ["max"] = 69, + ["min"] = 25, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HAxe"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 69, + ["min"] = 25, }, - ["sign"] = "", ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["max"] = 69, + ["min"] = 25, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1848_AddedFireDamageWithSwords"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_601249293", - ["text"] = "# to # Added Fire Damage with Sword Attacks", + }, + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndPierce"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["max"] = 69, + ["min"] = 25, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Bow"] = { + ["max"] = 69, + ["min"] = 25, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["1349_IncreasedMana"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 73, + ["1008_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 15, - ["max"] = 68, + ["Bow"] = { + ["max"] = 69, + ["min"] = 25, }, - ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 159, + ["Wand"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 73, + }, + ["1008_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1HMace"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 78, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 73, + ["2HMace"] = { + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 229, + ["max"] = 69, + ["min"] = 25, }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 78, + ["Staff"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Boots"] = { - ["min"] = 15, - ["max"] = 73, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["1647_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["1008_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, }, - ["sign"] = "", }, - ["144_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["1008_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", }, + }, + ["1008_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["1143_AddedColdSuffix"] = { + ["1008_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 19.5, + }, + ["1008_LocalPhysicalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 179, + ["min"] = 40, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 40, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 19.5, + ["1HSword"] = { + ["max"] = 179, + ["min"] = 40, }, - }, - ["1154_LightningDamage"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 23.5, + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 40, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["2HAxe"] = { + ["max"] = 179, + ["min"] = 40, }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 75.5, + ["2HMace"] = { + ["max"] = 179, + ["min"] = 40, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 179, + ["min"] = 40, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 39.5, + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 40, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 39.5, + ["Bow"] = { + ["max"] = 179, + ["min"] = 40, }, - }, - ["1148_AddedColdDamageToSpellsAndAttacks"] = { + ["Claw"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", }, - ["sign"] = "", }, - ["1310_PhysicalDamageReductionRating"] = { + ["1008_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", }, - ["AnyJewel"] = { - ["min"] = 36, - ["max"] = 250, + }, + ["1008_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["1HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["1HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["1HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Belt"] = { - ["min"] = 3, - ["max"] = 540, + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - }, - ["8025_MinionAccuracyRatingFlat"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have # to Accuracy Rating", + ["2HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 95, - ["max"] = 250, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 95, - ["max"] = 250, + ["Claw"] = { + ["max"] = 134, + ["min"] = 101, }, - }, - ["2207_ManaAndDamageTakenGoesToManaPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["Dagger"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 8, - }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 8, - }, - }, - ["363_SupportedByLifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 20, }, }, - ["1180_SpellAddedChaosSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["1008_LocalPhysicalDamagePercentBrutality"] = { + ["1HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["1HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["1HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - }, - ["1832_AddedPhysicalDamageWithAxes"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_311030839", - ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HMace"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 101, }, ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Claw"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["1709_LifeRegenerationAndPercent"] = { + ["1008_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", }, - ["sign"] = "", }, - ["2006_DegenDamageTaken"] = { + ["1008_LocalPhysicalDamagePercentFortify"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 4, - ["max"] = 10, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["959_DexterityAndIntelligence"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["1008_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + ["1HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["1HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, + ["1HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, + ["2HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - }, - ["2580_AllDefences"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Claw"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["1809_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 14, - }, - ["sign"] = "", }, - ["6489_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_497196601", - ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", - }, + ["1008_LocalPhysicalDamagePercentOnslaught"] = { ["sign"] = "", - }, - ["1758_ProjectileDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 25, }, - ["sign"] = "", }, - ["1861_AddedLightningDamageWithDaggers"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3479683016", - ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["1008_LocalPhysicalDamagePercentRuthless"] = { + ["1HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["1HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["max"] = 134, + ["min"] = 101, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - }, - ["264_WeaponSpellDamagePowerChargeOnCrit"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["2HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["sign"] = "", - }, - ["5724_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2238019079", - ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 101, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["Dagger"] = { + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 200, - ["max"] = 200, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 200, - ["max"] = 200, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["954_Strength"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["specialCaseData"] = { + ["1009_LocalArmourPenetration"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 13, }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, }, - ["Belt"] = { - ["min"] = 8, - ["max"] = 60, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 13, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 13, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 55, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 13, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["max"] = 20, + ["min"] = 13, }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["Bow"] = { + ["max"] = 20, + ["min"] = 13, }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, + ["Claw"] = { + ["max"] = 20, + ["min"] = 13, }, - }, - ["1882_SpellAddedPhysicalDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3954157711", - ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 13, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["Staff"] = { + ["max"] = 20, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 13, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, - }, - }, - ["1231_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3579673398", + ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", }, - ["sign"] = "", - ["Quiver"] = { + }, + ["1010_MeleeDamage"] = { + ["Gloves"] = { + ["max"] = 38, ["min"] = 18, - ["max"] = 20, }, - }, - ["1878_SpellAddedLightningDamageWhileDualWielding"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3352373076", - ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + }, + ["1010_MeleeDamageAndMeleeRange"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 13, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["specialCaseData"] = { }, - }, - ["1837_AddedPhysicalDamageWithStaves"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_69898010", - ["text"] = "# to # Added Physical Damage with Staff Attacks", }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + }, + ["1010_MeleeDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - }, - ["6475_LifeRecoveryRateMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", }, - ["1366_ItemFoundRarityIncrease"] = { - ["Gloves"] = { - ["min"] = 6, - ["max"] = 14, + ["1018_GlobalDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 26, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["1HMace"] = { + ["max"] = 26, + ["min"] = 7, }, - ["Helmet"] = { - ["min"] = 6, + ["1HSword"] = { ["max"] = 26, + ["min"] = 7, }, - ["Ring"] = { - ["min"] = 6, + ["1HWeapon"] = { ["max"] = 26, + ["min"] = 7, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 7, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 6, ["max"] = 26, + ["min"] = 7, }, - ["Boots"] = { - ["min"] = 6, - ["max"] = 14, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["1626_FasterIgniteDamageMaven"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["Bow"] = { + ["max"] = 45, + ["min"] = 7, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["Claw"] = { + ["max"] = 26, + ["min"] = 7, }, - }, - ["8510_ReflectsShocks"] = { + ["Dagger"] = { + ["max"] = 26, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 26, + ["min"] = 7, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3988349707", + ["text"] = "#% to Damage over Time Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_3291999509", - ["text"] = "Shock Reflection", }, }, - ["3114_FireDamageAvoidance"] = { + ["1021_GlobalDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 26, + ["min"] = 7, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_693959086", + ["text"] = "#% to Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 10, + }, + ["1022_PhysicalDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 14, }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 10, + ["1HMace"] = { + ["max"] = 48, + ["min"] = 14, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 48, + ["min"] = 14, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 14, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, }, - }, - ["1845_AddedFireDamageWithDaggers"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1910361436", - ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, + ["Amulet"] = { ["max"] = 25, + ["min"] = 11, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, - }, - }, - ["1866_AddedChaosDamageWithBows"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["max"] = 8, + ["min"] = 6, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["Claw"] = { + ["max"] = 48, + ["min"] = 14, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["1709_LifeRegenerationRatePercentage"] = { ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 1, - ["max"] = 2, + ["Wand"] = { + ["max"] = 48, + ["min"] = 14, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", }, - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + }, + ["1025_PhysicalDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["tradeMod"] = { + ["id"] = "explicit.stat_709768359", + ["text"] = "#% to Physical Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", }, - ["Amulet"] = { - ["min"] = 2.1, - ["max"] = 3, + }, + ["1026_FireDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 14, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["max"] = 38, + ["min"] = 14, }, - }, - ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 28, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 14, }, - ["Chest"] = { - ["min"] = 0.5, - ["max"] = 2, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, }, - ["sign"] = "+", - }, - ["1724_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["min"] = 22, + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { ["max"] = 25, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Quiver"] = { - ["min"] = 22, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 14, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 14, + }, + ["Gloves"] = { ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, }, - ["sign"] = "", - }, - ["1231_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["Wand"] = { + ["max"] = 38, + ["min"] = 14, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, }, - ["sign"] = "", }, - ["1000_WeaponSpellDamageArcaneSurge"] = { + ["1028_FireDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2139660169", + ["text"] = "#% to Fire Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", }, - ["sign"] = "", }, - ["1871_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1743759111", - ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["1031_ColdDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 14, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["1HMace"] = { + ["max"] = 38, + ["min"] = 14, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 28, + ["min"] = 14, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 14, }, - }, - ["2548_ColdLightningResistanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 8, + ["min"] = 6, }, - }, - ["1874_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2464689927", - ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 28, + ["min"] = 14, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 14, }, - }, - ["2727_SpellAddedColdDamagePenetrationHybrid"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["Wand"] = { + ["max"] = 38, + ["min"] = 14, }, - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["3506_MinionAddedFireDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_3351784991", - ["text"] = "Minions deal # to # additional Fire Damage", }, - ["AbyssJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + }, + ["1034_ChaosDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 14, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 48, + ["min"] = 14, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + ["1HSword"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["1353_IncreasedManaAndDegenGracePeriod"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, }, - ["sign"] = "", - }, - ["1140_TwoHandColdDamageWeaponPrefix"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, }, ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, - }, - ["sign"] = "", - }, - ["1354_IncreasedManaRegenForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["max"] = 75, + ["min"] = 24, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["max"] = 8, + ["min"] = 6, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["3507_MinionAddedLightningDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2930653471", - ["text"] = "Minions deal # to # additional Lightning Damage", + ["Claw"] = { + ["max"] = 48, + ["min"] = 14, }, - ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 41.5, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, }, + ["Wand"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 41.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", }, }, - ["1758_SupportedByLesserMultipleProjectilesDamage"] = { + ["1036_ChaosDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3913282911", + ["text"] = "#% to Chaos Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + }, + }, + ["1039_LocalPoisonDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HMace"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HSword"] = { + ["max"] = 59, + ["min"] = 37, }, ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 30, + ["max"] = 59, + ["min"] = 37, }, - ["sign"] = "", - }, - ["1352_AddedManaRegeneration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 37, }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 8, + ["2HMace"] = { + ["max"] = 59, + ["min"] = 37, }, - ["AbyssJewel"] = { - ["min"] = 1.1, - ["max"] = 4, + ["2HSword"] = { + ["max"] = 59, + ["min"] = 37, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 37, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1.1, - ["max"] = 4, + ["Bow"] = { + ["max"] = 59, + ["min"] = 37, }, - ["AnyJewel"] = { - ["min"] = 1.1, - ["max"] = 4, + ["Claw"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["1738_MinionDamageSupported"] = { + ["Dagger"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Wand"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4096656097", + ["text"] = "#% to Damage over Time Multiplier for Poison inflicted with this Weapon", ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + }, + ["1040_GlobalAddedPhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 9.5, + ["min"] = 7.5, }, ["sign"] = "", - }, - ["1949_BeltIncreasedFlaskDuration"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, }, + }, + ["1041_AddedPhysicalSuffix"] = { ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["max"] = 6, + ["min"] = 2, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 33, - }, - }, - ["1131_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["sign"] = "", }, - ["1350_MaximumManaIncreasePercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["1041_PhysicalDamage"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 1.5, + }, + ["Gloves"] = { + ["max"] = 9, + ["min"] = 1.5, }, ["Quiver"] = { - ["min"] = 20, - ["max"] = 30, + ["max"] = 31, + ["min"] = 1.5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 14, + ["min"] = 1.5, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 9, - ["max"] = 18, - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 18, + ["specialCaseData"] = { }, - }, - ["1644_BurningDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["specialCaseData"] = { }, + }, + ["1042_SelfPhysicalDamageTaken"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["AnyJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["4465_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", ["type"] = "explicit", - ["id"] = "explicit.stat_314741699", - ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", }, - ["specialCaseData"] = { + }, + ["1050_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["1HAxe"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 27, - ["max"] = 30, - }, - }, - ["1563_SupportedByVolleySpeed"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["1HSword"] = { + ["max"] = 17, + ["min"] = 8.5, }, ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 25, - }, - ["sign"] = "", - }, - ["1315_EvasionRating"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["max"] = 17, + ["min"] = 8.5, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 170, + ["2HAxe"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["AbyssJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["AnyJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["Bow"] = { + ["max"] = 24, + ["min"] = 13.5, }, - }, - ["140_LocalIncreaseSocketedChaosGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", + ["Claw"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["Staff"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["Wand"] = { + ["max"] = 17, + ["min"] = 8.5, }, - }, - ["1218_IncreasedCastSpeedSpellEcho"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, }, - ["sign"] = "", }, - ["9232_Acrobatics"] = { - ["specialCaseData"] = { + ["1050_LocalPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_383557755", - ["text"] = "Acrobatics", + ["1HMace"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - }, - ["1413_ChillEffectivenessOnSelf"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", + ["1HSword"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["1HWeapon"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["Dagger"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["Wand"] = { + ["max"] = 40.5, + ["min"] = 1.5, }, - }, - ["3129_LightningDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", }, - ["sign"] = "", }, - ["168_SocketedGemQuality"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3828613551", - ["text"] = "#% to Quality of Socketed Gems", + ["1050_LocalPhysicalDamageTwoHanded"] = { + ["2HAxe"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 65.5, + ["min"] = 3, }, ["2HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["max"] = 65.5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 65.5, + ["min"] = 3, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["Staff"] = { + ["max"] = 65.5, + ["min"] = 3, }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, - }, - ["1230_SpellCritChanceForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", }, - ["AbyssJewel"] = { - ["min"] = 10, + }, + ["1052_IncreasedDualWieldlingDamageForJewel"] = { + ["AnyJewel"] = { ["max"] = 14, + ["min"] = 12, }, - ["specialCaseData"] = { - }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 10, ["max"] = 14, + ["min"] = 12, }, - }, - ["2280_CurseOnHitDespairMod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["7008_NearbyEnemyChaosDamageResistance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1902595112", - ["text"] = "Nearby Enemies have #% to Chaos Resistance", + ["1053_DualWieldingPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 37, + ["min"] = 23, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["1HMace"] = { + ["max"] = 37, + ["min"] = 23, }, - ["sign"] = "-", - }, - ["8027_MinionAccuracyRatingForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["1HSword"] = { + ["max"] = 37, + ["min"] = 23, }, - ["AbyssJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 23, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 37, + ["min"] = 23, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["2HMace"] = { + ["max"] = 37, + ["min"] = 23, }, - ["AnyJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["2HSword"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["8192_IncreasedAilmentDurationMaven"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["Claw"] = { + ["max"] = 37, + ["min"] = 23, }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["Dagger"] = { + ["max"] = 37, + ["min"] = 23, }, ["sign"] = "", - }, - ["1650_ManaCostReductionForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, }, - ["specialCaseData"] = { + }, + ["1075_IncreasedAxeDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 16, + ["min"] = 14, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1000_SpellDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, }, - ["specialCaseData"] = { + }, + ["1082_IncreasedStaffDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 16, + ["min"] = 14, }, - }, - ["1626_BurnDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", }, - ["sign"] = "", }, - ["5719_MaximumEnergyShieldOnKillPercentMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2698606393", - ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + ["1087_IncreasedClawDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - }, - ["384_ChillEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", ["type"] = "explicit", - ["id"] = "explicit.stat_13669281", - ["text"] = "Socketed Gems are Supported by Level # Hypothermia", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["1093_IncreasedDaggerDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - }, - ["1508_LifeGainPerTarget"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", ["type"] = "explicit", - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 4, + }, + ["1099_IncreasedMaceDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["Ring"] = { - ["min"] = 2, - ["max"] = 20, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - }, - ["1007_IncreasedChaosAndPhysicalDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, + }, + ["1105_IncreasedBowDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - }, - ["9269_Runebinder"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", - ["id"] = "explicit.stat_4080245957", - ["text"] = "Runebinder", }, }, - ["1581_IncreasedMaximumPowerCharges"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", - }, - ["specialCaseData"] = { + ["1113_IncreasedSwordDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["sign"] = "+", - }, - ["1199_SwordAttackSpeedForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_83050999", + ["text"] = "#% increased Damage with Swords", ["type"] = "explicit", - ["id"] = "explicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1131_FireDamageAndChanceToIgnite"] = { + ["1HAxe"] = { + ["max"] = 109, + ["min"] = 36, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 36, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 109, + ["min"] = 36, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 109, + ["min"] = 36, }, - }, - ["1809_IncreasedAttackAndCastSpeedSupported"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 60, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["2HMace"] = { + ["max"] = 109, + ["min"] = 60, }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 14, + ["2HSword"] = { + ["max"] = 109, + ["min"] = 60, }, - ["sign"] = "", - }, - ["8658_ManaCostTotalNonChannelled"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have # to Total Mana Cost", + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 60, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, }, - ["sign"] = "-", - ["Amulet"] = { - ["min"] = 10, - ["max"] = 9, + ["Claw"] = { + ["max"] = 109, + ["min"] = 36, }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 9, + ["Dagger"] = { + ["max"] = 109, + ["min"] = 36, }, - }, - ["3304_AuraEffectOnEnemies"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 109, + ["min"] = 60, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1636209393", - ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["Wand"] = { + ["max"] = 109, + ["min"] = 36, }, ["sign"] = "", - }, - ["1986_CurseAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", }, - ["sign"] = "", }, - ["1797_AreaDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["1131_FireDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - }, - ["1272_OneHandCritMultiplierForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_670153687", - ["text"] = "#% to Critical Strike Multiplier with One Handed Melee Weapons", }, - ["specialCaseData"] = { + }, + ["1131_FireDamagePercentage"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 3, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 9, }, - }, - ["1256_ElementalCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_439950087", - ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 3, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 3, }, - }, - ["2235_LocalChanceToBleed"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 34, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 34, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 3, }, ["sign"] = "", - }, - ["5393_DamagePerBlockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3400437584", - ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + }, + }, + ["1131_FireDamagePercentagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, - }, - ["1278_FireCritMultiplierForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2307547323", - ["text"] = "#% to Critical Strike Multiplier with Fire Skills", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, }, - ["specialCaseData"] = { + }, + ["1131_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, }, - }, - ["1400_ColdResistancePhysTakenAsCold"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", }, - ["sign"] = "+", }, - ["1693_MineLaySpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["1131_FireDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, }, - }, - ["591_SummonWolfOnKillOld"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1468606528", - ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, }, - }, - ["2932_NoExtraDamageFromBleedMoving"] = { + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", }, }, - ["1394_FireResistancePhysTakenAsFire"] = { + ["1131_FireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", }, - ["sign"] = "+", }, - ["983_DamageWhileHoldingAShieldForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1393393937", - ["text"] = "#% increased Attack Damage while holding a Shield", - }, - ["specialCaseData"] = { + ["1131_IncreasedFireAndLightningDamage"] = { + ["Ring"] = { + ["max"] = 20, + ["min"] = 11, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", }, }, - ["1986_CurseRadiusForJewel"] = { + ["1131_LocalFireDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", }, - ["sign"] = "", }, - ["1279_LightningCritMultiplierForJewel"] = { + ["1131_SpellAddedFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2441475928", - ["text"] = "#% to Critical Strike Multiplier with Lightning Skills", }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, + }, + ["1131_TwoHandFireDamageWeaponPrefix"] = { + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, }, - ["sign"] = "+", - ["BaseJewel"] = { + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 164, ["min"] = 15, - ["max"] = 18, }, - ["AnyJewel"] = { + ["Staff"] = { + ["max"] = 164, ["min"] = 15, - ["max"] = 18, }, - }, - ["1283_ReducedExtraDamageFromCrits"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", }, + }, + ["1131_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 21, - ["max"] = 60, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", }, }, - ["8716_SpellBlockIfBlockedSpellRecently"] = { + ["1132_SelfFireAndColdDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_4263513561", - ["text"] = "#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 7, - ["max"] = 12, }, }, - ["925_DualWieldingSpellBlockForJewel"] = { + ["1132_SelfFireAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_138741818", - ["text"] = "#% Chance to Block Spell Damage while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, }, - ["specialCaseData"] = { + }, + ["1133_AddedFireAndColdDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, }, - }, - ["563_CurseOnHitCriticalWeakness"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "", }, - ["1394_FireResistancePrefix"] = { + ["1133_AddedFireAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", }, - ["sign"] = "+", }, - ["1559_AdditionalProjectiles"] = { + ["1133_GlobalAddedFireDamage"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1989_ManaReservationEfficiency"] = { - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["1134_AddedFireSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 7, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 14, + }, + ["1134_FireDamage"] = { + ["Amulet"] = { + ["max"] = 37.5, + ["min"] = 1.5, }, - ["AbyssJewel"] = { + ["Gloves"] = { + ["max"] = 21, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["max"] = 75.5, ["min"] = 2, - ["max"] = 3, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 1.5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["specialCaseData"] = { }, - }, - ["1515_EnergyShieldGainPerTargetForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, - }, - ["specialCaseData"] = { }, + }, + ["1134_FireDamagePhysConvertedToFire"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", }, }, - ["1849_AddedFireDamageWithWands"] = { + ["1135_SelfFireDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", ["type"] = "explicit", - ["id"] = "explicit.stat_87098247", - ["text"] = "# to # Added Fire Damage with Wand Attacks", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + }, + ["1136_LocalFireDamage"] = { + ["1HAxe"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["1HSword"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["1HWeapon"] = { + ["max"] = 165.5, + ["min"] = 2, }, - }, - ["1392_MaximumFireResist"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["2HAxe"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, + ["2HSword"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 3, + ["2HWeapon"] = { + ["max"] = 165.5, + ["min"] = 2, }, - }, - ["1335_EnergyShieldRechargeRateForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["Claw"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Dagger"] = { + ["max"] = 165.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 165.5, + ["min"] = 2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - }, - ["1890_FrenzyChargeDurationForJewel"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", }, - ["sign"] = "", }, - ["8150_MovementSpeedOnBurningChilledShockedGround"] = { + ["1136_LocalFireDamageAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1521863824", - ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", }, - ["sign"] = "", }, - ["369_WeaponSpellDamageReducedMana"] = { + ["1136_LocalFireDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", }, - ["sign"] = "", }, - ["1339_IncreasedLifeForJewel"] = { - ["specialCaseData"] = { + ["1136_LocalFireDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["1HMace"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["sign"] = "+", - }, - ["1905_PowerChargeDurationForJewel"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["sign"] = "", - }, - ["1134_FireDamage"] = { - ["Gloves"] = { - ["min"] = 1.5, - ["max"] = 21, + ["2HAxe"] = { + ["max"] = 89.5, + ["min"] = 11.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["2HMace"] = { + ["max"] = 89.5, + ["min"] = 11.5, }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 68.5, + ["2HSword"] = { + ["max"] = 89.5, + ["min"] = 11.5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 89.5, + ["min"] = 11.5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 35, + ["Bow"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 35, + ["Claw"] = { + ["max"] = 48, + ["min"] = 11.5, }, - }, - ["1052_IncreasedDualWieldlingDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_444174528", - ["text"] = "#% increased Attack Damage while Dual Wielding", + ["Dagger"] = { + ["max"] = 48, + ["min"] = 11.5, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 89.5, + ["min"] = 21.5, + }, + ["Wand"] = { + ["max"] = 48, + ["min"] = 11.5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", }, }, - ["1263_SpellCritMultiplierForJewel"] = { + ["1136_LocalFireDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_274716455", - ["text"] = "#% to Critical Strike Multiplier for Spell Damage", }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["1136_LocalFireDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["1HSword"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - }, - ["1565_MovementVelocity"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["2HAxe"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 3, - ["max"] = 10, + ["2HMace"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 10, + ["max"] = 307.5, + ["min"] = 4.5, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 10, + ["Bow"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - ["Boots"] = { - ["min"] = 10, - ["max"] = 35, + ["Staff"] = { + ["max"] = 307.5, + ["min"] = 4.5, }, - }, - ["7218_RecoverManaPercentOnBlock"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, }, }, - ["8013_AddedPhysicalDamageVsPoisonedEnemies"] = { + ["1136_LocalFireDamageTwoHandAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_424026624", - ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 14.5, + }, + ["1139_FireGemCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["1328_IncreasedEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", }, - ["sign"] = "+", }, - ["1738_MinionDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1140_ColdDamageAndBaseChanceToFreeze"] = { + ["1HAxe"] = { + ["max"] = 109, + ["min"] = 36, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 36, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HSword"] = { + ["max"] = 109, + ["min"] = 36, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 36, }, - }, - ["1252_DualWieldingCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3702513529", - ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 60, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 109, + ["min"] = 60, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["2HSword"] = { + ["max"] = 109, + ["min"] = 60, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 60, }, - }, - ["2728_LightningResistancePenetration"] = { - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["Claw"] = { + ["max"] = 109, + ["min"] = 36, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Dagger"] = { + ["max"] = 109, + ["min"] = 36, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 109, + ["min"] = 60, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 109, + ["min"] = 36, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, - }, - ["5024_DoubleDamageChance"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", }, - ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 14, + }, + ["1140_ColdDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 7, - }, - ["Shield"] = { - ["min"] = 6, - ["max"] = 7, + ["specialCaseData"] = { }, - }, - ["963_PercentageIntelligenceMaven"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", }, - ["specialCaseData"] = { + }, + ["1140_ColdDamagePercentage"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - ["Amulet"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 16, ["min"] = 9, - ["max"] = 12, }, - ["Chest"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 16, ["min"] = 9, - ["max"] = 12, }, - }, - ["1140_ColdDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, }, - ["AbyssJewel"] = { - ["min"] = 14, + ["2HSword"] = { ["max"] = 16, + ["min"] = 9, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 3, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 3, + }, + ["Bow"] = { ["max"] = 16, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 14, + ["Claw"] = { ["max"] = 16, + ["min"] = 9, }, - }, - ["5988_FrenzyChargeOnHittingRareOrUnique"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4179663748", - ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["Ring"] = { + ["max"] = 34, + ["min"] = 3, }, - ["sign"] = "", - ["Quiver"] = { + ["Staff"] = { + ["max"] = 30, ["min"] = 3, - ["max"] = 5, }, - }, - ["5265_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["Wand"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + }, + ["1140_ColdDamagePercentagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", - }, - ["5338_CurseDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", }, - ["sign"] = "", }, - ["1975_CurseCastSpeedForJewel"] = { + ["1140_ColdDamagePrefixColdPenetration"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2378065031", - ["text"] = "Curse Skills have #% increased Cast Speed", }, - ["sign"] = "", }, - ["1533_MinionDamageAndMinionMaximumLife"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["1140_ColdDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 59, + ["max"] = 109, + ["min"] = 10, }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 59, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, }, - }, - ["1995_PhysicalAttackDamageTaken"] = { + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", - }, - ["sign"] = "-", - ["Belt"] = { - ["min"] = 35, - ["max"] = 36, }, }, - ["2241_BleedOnHitAndDamage"] = { + ["1140_ColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 15, }, }, - ["1580_MinimumPowerChargesAndOnKillLose"] = { + ["1140_LocalColdDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", }, - ["sign"] = "+", }, - ["959_DexterityIntelligenceForJewel"] = { + ["1140_SpellAddedColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + }, + ["1140_TwoHandColdDamageWeaponPrefix"] = { + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, }, - }, - ["416_SocketedAttackCriticalMultiplier"] = { + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_356456977", - ["text"] = "Socketed Attacks have #% to Critical Strike Multiplier", - }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 90, }, - ["sign"] = "+", }, - ["1320_EvasionEnergyShieldForJewel"] = { + ["1140_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", }, - ["sign"] = "", }, - ["1255_ColdCritChanceForJewel"] = { + ["1141_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_3337344042", - ["text"] = "#% increased Critical Strike Chance with Cold Skills", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, }, }, - ["2549_ChanceToFreezeShockIgniteProliferation"] = { + ["1141_SelfFireAndColdDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["1142_AddedColdAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, }, ["sign"] = "", - }, - ["1331_EvasionEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "", }, - ["1624_ShockDurationForJewel"] = { - ["specialCaseData"] = { + ["1142_AddedFireAndColdDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, }, ["sign"] = "", - }, - ["1205_IncreasedAccuracyForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", }, - ["sign"] = "+", }, - ["1403_MaximumLightningResistance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["1142_GlobalAddedColdDamage"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 23, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 3, - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, - }, - }, - ["2689_IncreasedWandDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_379328644", - ["text"] = "#% increased Damage with Wands", - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, }, + }, + ["1143_AddedColdSuffix"] = { ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 19.5, + ["min"] = 6, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 19.5, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - }, - ["1541_TotemLifeForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, + }, + ["1143_ColdDamage"] = { + ["Amulet"] = { + ["max"] = 34, + ["min"] = 1.5, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 18.5, + ["min"] = 1.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["Quiver"] = { + ["max"] = 68, + ["min"] = 1.5, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["Ring"] = { + ["max"] = 34, + ["min"] = 1.5, }, - }, - ["1320_ArmourEvasionForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", }, - ["sign"] = "", }, - ["1516_LifeGainedFromEnemyDeath"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 14, + ["1143_ColdDamagePhysConvertedToCold"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", }, + }, + ["1144_SelfColdDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", ["tradeMod"] = { + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", ["type"] = "explicit", - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 14, + }, + ["1145_LocalColdDamage"] = { + ["1HAxe"] = { + ["max"] = 150, + ["min"] = 2, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 14, + ["1HMace"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 150, + ["min"] = 2, }, ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 14, + ["max"] = 150, + ["min"] = 2, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 14, + ["2HAxe"] = { + ["max"] = 150, + ["min"] = 2, }, - }, - ["146_LocalIncreaseSocketedBowGemLevel"] = { + ["2HMace"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2027269580", - ["text"] = "# to Level of Socketed Bow Gems", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, }, - ["sign"] = "+", }, - ["1350_PercentageLifeAndManaForJewel"] = { + ["1145_LocalColdDamageAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", }, - ["sign"] = "", }, - ["1131_FireDamageForJewel"] = { + ["1145_LocalColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + }, + ["1145_LocalColdDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HSword"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HWeapon"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - }, - ["581_FireBurstOnHit"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 80.5, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1621470436", - ["text"] = "Cast Level 20 Fire Burst on Hit", + ["2HMace"] = { + ["max"] = 80.5, + ["min"] = 10.5, }, - }, - ["1350_PercentIncreasedManaForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["2HSword"] = { + ["max"] = 80.5, + ["min"] = 10.5, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["2HWeapon"] = { + ["max"] = 80.5, + ["min"] = 10.5, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["Claw"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["Dagger"] = { + ["max"] = 43.5, + ["min"] = 10.5, }, - }, - ["1349_IncreasedManaAndCostNew"] = { + ["Staff"] = { + ["max"] = 80.5, + ["min"] = 19.5, + }, + ["Wand"] = { + ["max"] = 43.5, + ["min"] = 10.5, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["8719_SpellsDoubleDamageChance"] = { + ["1145_LocalColdDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", }, - ["specialCaseData"] = { + }, + ["1145_LocalColdDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 276, + ["min"] = 4, }, - ["sign"] = "", - ["1HWeapon"] = { + ["1HMace"] = { + ["max"] = 276, ["min"] = 4, - ["max"] = 7, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 14, + ["1HSword"] = { + ["max"] = 276, + ["min"] = 4, }, - }, - ["2659_MinionElementalResistancesForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["1HWeapon"] = { + ["max"] = 276, + ["min"] = 4, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 15, + ["2HAxe"] = { + ["max"] = 276, + ["min"] = 4, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 276, + ["min"] = 4, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 11, - ["max"] = 15, + ["2HSword"] = { + ["max"] = 276, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 15, + ["2HWeapon"] = { + ["max"] = 276, + ["min"] = 4, }, - }, - ["1394_FireDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["Bow"] = { + ["max"] = 276, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 276, + ["min"] = 4, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", }, }, - ["5356_DamageWithBowSkills"] = { + ["1145_LocalColdDamageTwoHandAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 5, - ["max"] = 50, }, }, - ["1791_FreezeChanceAndDuration"] = { + ["1147_AddedFireDamageSpellsAndAttacks"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, }, - ["sign"] = "", }, - ["1618_AvoidStunForJewel"] = { + ["1148_AddedColdDamageToSpellsAndAttacks"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", }, - ["sign"] = "", }, - ["1312_ArmourEvasionForJewel"] = { + ["1150_ColdGemCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", }, - ["sign"] = "", }, - ["2909_BleedingDamageChance"] = { + ["1151_IncreasedFireAndLightningDamage"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", }, - ["sign"] = "", }, - ["1615_AvoidShockForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["1151_LightningDamageAndChanceToShock"] = { + ["1HAxe"] = { + ["max"] = 109, + ["min"] = 36, }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 36, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 109, + ["min"] = 36, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 36, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 60, }, - }, - ["1131_TwoHandFireDamageWeaponPrefix"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 109, + ["min"] = 60, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["2HSword"] = { + ["max"] = 109, + ["min"] = 60, }, ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, + ["max"] = 109, + ["min"] = 60, }, - ["sign"] = "", - }, - ["1366_ItemRarityForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Claw"] = { + ["max"] = 109, + ["min"] = 36, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 109, + ["min"] = 36, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Staff"] = { + ["max"] = 109, + ["min"] = 60, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Wand"] = { + ["max"] = 109, + ["min"] = 36, }, - }, - ["6995_PowerChargeOnManaSpent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3269060224", - ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1193_AxeAttackSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["1151_LightningDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", }, }, - ["1797_AreaDamageSupported"] = { - ["specialCaseData"] = { + ["1151_LightningDamagePercentage"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["1HMace"] = { + ["max"] = 30, + ["min"] = 3, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - }, - ["1250_OneHandedCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2381842786", - ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 3, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, }, - }, - ["1315_EvasionRatingAndEnergyShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 3, }, - ["Quiver"] = { - ["min"] = 365, - ["max"] = 400, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, + ["Claw"] = { + ["max"] = 16, + ["min"] = 9, }, - }, - ["350_ChanceToFreezeShockIgniteProliferation"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["Ring"] = { + ["max"] = 34, + ["min"] = 3, }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["Staff"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 3, }, ["sign"] = "", - }, - ["4583_DesecratedGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1953432004", - ["text"] = "Unaffected by Poison", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["8326_ReducedPhysicalReflectTakenMaven"] = { + ["1151_LightningDamagePercentagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", - }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, }, - ["sign"] = "", }, - ["1665_AvoidInterruptionWhileCasting"] = { - ["Gloves"] = { - ["min"] = 15, + ["1151_LightningDamagePrefixLightningPenetration"] = { + ["1HMace"] = { ["max"] = 60, + ["min"] = 45, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, - }, - }, - ["1409_ChaosResistance"] = { - ["Quiver"] = { - ["min"] = 5, - ["max"] = 35, - }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 5, - ["max"] = 35, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 35, + }, + ["1151_LightningDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 35, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 35, + ["max"] = 109, + ["min"] = 10, }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 35, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, }, - }, - ["8025_MinionFlatAccuracyRating"] = { + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have # to Accuracy Rating", - }, - ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 624, }, - ["sign"] = "+", }, - ["1273_MeleeCritMultiplierForJewel"] = { + ["1151_LightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4237442815", - ["text"] = "#% to Melee Critical Strike Multiplier", }, + }, + ["1151_LocalLightningDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", }, }, - ["1847_AddedFireDamageWithStaves"] = { + ["1151_SpellAddedLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3220927448", - ["text"] = "# to # Added Fire Damage with Staff Attacks", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + }, + ["1151_TwoHandLightningDamageWeaponPrefix"] = { + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, }, - ["sign"] = "", ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["max"] = 164, + ["min"] = 15, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, }, - }, - ["1151_IncreasedFireAndLightningDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", ["id"] = "explicit.stat_2231156303", ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, - }, - ["sign"] = "", }, - ["256_SupportedByOnslaughtWeapon"] = { + ["1151_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, }, - ["sign"] = "", }, - ["4247_MaximumManaIncreasePercentMaven"] = { + ["1152_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_2571899044", - ["text"] = "Transfiguration of Mind", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["5026_DoubleDamageStunnedRecently"] = { + ["1152_SelfFireAndLightningDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", ["type"] = "explicit", - ["id"] = "explicit.stat_4224978303", - ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["sign"] = "", }, - ["1010_MeleeDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["1153_AddedColdAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["5400_IncreasedDamagePerPowerCharge"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + }, + ["1153_AddedFireAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 17, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["4459_AttackSpeedIfEnemyKilledRecently"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1507059769", - ["text"] = "#% increased Attack Speed if you've Killed Recently", }, - ["specialCaseData"] = { + }, + ["1153_GlobalAddedLightningDamage"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 24.5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["1200_WandAttackSpeedForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", - }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, }, + }, + ["1154_AddedLightningSuffix"] = { ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 26, + ["min"] = 10, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 26, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["1707_ElementalDamagePercentAddedAsChaos"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3495544060", - ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + }, + ["1154_LightningDamage"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Gloves"] = { + ["max"] = 23.5, + ["min"] = 3, }, - }, - ["1007_PhysicalDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["Quiver"] = { + ["max"] = 84, + ["min"] = 2, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Ring"] = { + ["max"] = 42, + ["min"] = 3, }, + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1154_LightningDamagePhysConvertedToLightning"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", }, }, - ["1642_ReducedIgniteDurationOnSelf"] = { + ["1155_SelfLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 35, + }, + ["1156_LocalLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 182.5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 182.5, + ["min"] = 3, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["1HSword"] = { + ["max"] = 182.5, + ["min"] = 3, }, - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["1HWeapon"] = { + ["max"] = 182.5, + ["min"] = 3, }, - }, - ["1795_ShockChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["2HAxe"] = { + ["max"] = 182.5, + ["min"] = 3, }, - ["AbyssJewel"] = { + ["2HMace"] = { + ["max"] = 182.5, ["min"] = 3, - ["max"] = 5, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 182.5, + ["min"] = 3, }, - ["sign"] = "", - ["BaseJewel"] = { + ["2HWeapon"] = { + ["max"] = 182.5, ["min"] = 3, - ["max"] = 5, }, - ["AnyJewel"] = { + ["Claw"] = { + ["max"] = 182.5, ["min"] = 3, - ["max"] = 5, }, - }, - ["605_TriggerOnRareWarlordsMark"] = { + ["Dagger"] = { + ["max"] = 182.5, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 182.5, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2049471530", - ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "", }, - ["1237_CritChanceWithBowForJewel"] = { + ["1156_LocalLightningDamageAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", }, - ["sign"] = "", }, - ["1759_ProjectileAttackDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, + ["1156_LocalLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", }, - ["specialCaseData"] = { + }, + ["1156_LocalLightningDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["1HMace"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - }, - ["8611_ShockNearbyEnemiesOnFocusCDR"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3031766858", - ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["1HWeapon"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 4, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 13.5, }, - ["sign"] = "", - }, - ["1630_StunDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["2HMace"] = { + ["max"] = 99, + ["min"] = 13.5, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 13.5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 13.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["Bow"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["Claw"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - }, - ["1344_LifeRegenerationAndPercent"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", + ["Staff"] = { + ["max"] = 99, + ["min"] = 24.5, + }, + ["Wand"] = { + ["max"] = 53.5, + ["min"] = 13.5, }, ["sign"] = "", - }, - ["1394_FireResistanceForJewel"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, }, + }, + ["1156_LocalLightningDamageRanged"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - }, - ["1075_IncreasedAxeDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3314142259", - ["text"] = "#% increased Damage with Axes", }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + }, + ["1156_LocalLightningDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 338, + ["min"] = 6, }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HMace"] = { + ["max"] = 338, + ["min"] = 6, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 338, + ["min"] = 6, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 338, + ["min"] = 6, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["2HAxe"] = { + ["max"] = 338, + ["min"] = 6, }, - }, - ["4039_IncreaseProjectileAttackDamagePerAccuracy"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 338, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4157767905", - ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["2HSword"] = { + ["max"] = 338, + ["min"] = 6, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 338, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 338, + ["min"] = 6, }, ["sign"] = "", - }, - ["1153_GlobalAddedLightningDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", }, - ["Gloves"] = { - ["min"] = 24.5, - ["max"] = 30.5, - }, - ["sign"] = "", }, - ["8427_Quiver2AdditionalPierceOld"] = { + ["1156_LocalLightningDamageTwoHandAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", }, - ["sign"] = "", }, - ["958_StrengthIntelligenceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["1158_LightningGemCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["max"] = 5, + ["min"] = 3, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["2535_TotemElementalResistancesForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, }, - ["specialCaseData"] = { + }, + ["1159_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 99, + ["min"] = 35, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["1HMace"] = { + ["max"] = 99, + ["min"] = 35, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["1HSword"] = { + ["max"] = 99, + ["min"] = 35, }, - }, - ["956_IntelligenceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["1HWeapon"] = { + ["max"] = 99, + ["min"] = 35, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 53, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 99, + ["min"] = 53, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 53, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 53, }, - }, - ["1381_GlobalIncreaseColdSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skill Gems", + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["Claw"] = { + ["max"] = 99, + ["min"] = 35, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 99, + ["min"] = 35, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 99, + ["min"] = 53, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["max"] = 99, + ["min"] = 35, }, - }, - ["971_TrapDamageCooldownSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["1159_ChaosDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 9, }, ["sign"] = "", - }, - ["1198_BowAttackSpeedForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1159_ChaosDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["max"] = 54, + ["min"] = 25, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HWeapon"] = { + ["max"] = 54, + ["min"] = 25, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, }, - }, - ["2219_RecoverEnergyShieldPercentOnBlock"] = { + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1606263610", - ["text"] = "Recover #% of Energy Shield when you Block", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, }, }, - ["958_StrengthAndIntelligence"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["1159_IncreasedChaosAndPhysicalDamage"] = { + ["Ring"] = { + ["max"] = 20, + ["min"] = 11, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + }, + ["1159_IncreasedChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, }, - }, - ["1082_IncreasedStaffDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4087089130", - ["text"] = "#% increased Damage with Staves", + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, }, ["2HWeapon"] = { - ["min"] = 14, ["max"] = 16, + ["min"] = 9, }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 19, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 34, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 19, + ["min"] = 13, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, + ["max"] = 19, + ["min"] = 13, + }, + ["Bow"] = { ["max"] = 16, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 14, + ["Claw"] = { ["max"] = 16, + ["min"] = 9, }, - }, - ["1144_SelfColdDamageTaken"] = { + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 34, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_617462123", - ["text"] = "Adds # to # Cold Damage to Attacks against you", }, - ["sign"] = "", }, - ["2913_PoisonOnHitAndDamage"] = { + ["1159_IncreasedChaosDamagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 20, }, }, - ["1408_MaximumChaosResistance"] = { + ["1159_LocalChanceToPoisonOnHitChaosDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, }, }, - ["9264_PointBlank"] = { + ["1159_LocalChaosDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2896346114", - ["text"] = "Point Blank", }, }, - ["5036_AdditionalChanceToEvadeMaven"] = { + ["1159_PoisonDurationChaosDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, }, - ["sign"] = "+", }, - ["1438_FireResistanceLeech"] = { + ["1159_SpellAddedChaosDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", }, - ["sign"] = "", }, - ["3077_IncreasedOneHandedMeleeDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1010549321", - ["text"] = "#% increased Damage with One Handed Weapons", + ["1159_TwoHandChaosDamageWeaponPrefix"] = { + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["2HWeapon"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["5121_ChanceToChillAttackersOnBlock"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_864879045", - ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", }, - ["specialCaseData"] = { + }, + ["1160_GlobalAddedChaosDamage"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 50, - }, - ["Shield"] = { - ["min"] = 25, - ["max"] = 50, - }, - }, - ["9011_BurningGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2635869389", - ["text"] = "Unaffected by Ignite", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1565_MovementVelocityAndCannotBeChilled"] = { - ["specialCaseData"] = { + ["1161_AddedChaosSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 8.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 8.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 25, - ["max"] = 30, - }, - }, - ["1140_SpellAddedColdDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", }, - ["sign"] = "", }, - ["1220_CastSpeedWithAShieldForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["1161_ChaosDamage"] = { + ["Amulet"] = { + ["max"] = 21, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 13, + ["min"] = 10, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Quiver"] = { + ["max"] = 55, + ["min"] = 10, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Ring"] = { + ["max"] = 21, + ["min"] = 10, }, - }, - ["1612_AvoidFreezeForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", }, - ["sign"] = "", }, - ["1388_AllResistances"] = { - ["Chest"] = { - ["min"] = 10, - ["max"] = 18, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["1163_LocalChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["Belt"] = { - ["min"] = 10, - ["max"] = 18, + ["1HMace"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 16, + ["1HSword"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 18, + ["2HAxe"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["Shield"] = { - ["min"] = 3, - ["max"] = 18, + ["2HMace"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - }, - ["1159_PoisonDurationChaosDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["2HWeapon"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["sign"] = "", - }, - ["1757_KnockbackChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", + ["Claw"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Dagger"] = { + ["max"] = 123.5, + ["min"] = 58, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 123.5, + ["min"] = 58, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["1353_BaseLifeAndManaDegenGracePeriod"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", }, - ["sign"] = "", }, - ["2377_MinimumFrenzyChargesAndOnKillChance"] = { + ["1163_LocalChaosDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + }, + ["1163_LocalChaosDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 34.5, + ["min"] = 8, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, + ["1HMace"] = { + ["max"] = 34.5, + ["min"] = 8, }, - }, - ["4482_ImpaleChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["1HSword"] = { + ["max"] = 34.5, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["1HWeapon"] = { + ["max"] = 34.5, + ["min"] = 8, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 64.5, + ["min"] = 8, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["2HMace"] = { + ["max"] = 64.5, + ["min"] = 8, }, - ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["2HSword"] = { + ["max"] = 64.5, + ["min"] = 8, }, - }, - ["2654_MinionAttackAndCastSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["2HWeapon"] = { + ["max"] = 64.5, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Bow"] = { + ["max"] = 34.5, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 34.5, + ["min"] = 8, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Dagger"] = { + ["max"] = 34.5, + ["min"] = 8, }, - }, - ["1191_TwoHandedMeleeAttackSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1917910910", - ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["Staff"] = { + ["max"] = 64.5, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 34.5, + ["min"] = 8, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, - }, - ["2660_MinionChaosResistance"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 11, + }, + ["1163_LocalChaosDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 214.5, + ["min"] = 140.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 214.5, + ["min"] = 140.5, }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 11, + ["1HSword"] = { + ["max"] = 214.5, + ["min"] = 140.5, }, - }, - ["1435_EnemyPhysicalDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 214.5, + ["min"] = 140.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3423022686", - ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["2HAxe"] = { + ["max"] = 214.5, + ["min"] = 105, }, - ["sign"] = "", - }, - ["1417_LifeLeechPermyriadForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["2HMace"] = { + ["max"] = 214.5, + ["min"] = 105, }, - ["AbyssJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["2HSword"] = { + ["max"] = 214.5, + ["min"] = 105, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 214.5, + ["min"] = 105, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Bow"] = { + ["max"] = 214.5, + ["min"] = 105, }, - ["AnyJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Staff"] = { + ["max"] = 214.5, + ["min"] = 105, }, - }, - ["1788_IgniteChanceAndDamage"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, }, - ["sign"] = "", }, - ["1349_LifeAndManaForJewel"] = { + ["1163_LocalIncreasedAttackSpeedAddedChaos"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["1339_LifeAndManaForJewel"] = { + ["1163_PoisonDamageAddedChaosToAttacks"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", }, - ["sign"] = "+", }, - ["2737_ChanceToGainOnslaughtOnKill"] = { - ["Shield"] = { - ["min"] = 10, - ["max"] = 10, + ["1176_SpellAddedPhysicalDamage"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 34, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 34, }, ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["max"] = 97.5, + ["min"] = 56, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 34, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 25, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Staff"] = { + ["max"] = 97.5, + ["min"] = 56, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["Wand"] = { + ["max"] = 60, + ["min"] = 34, }, - }, - ["1267_CritMultiplierWithBowForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", }, - ["sign"] = "+", }, - ["9237_BloodMagic"] = { + ["1176_SpellAddedPhysicalDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2801937280", - ["text"] = "Blood Magic", }, }, - ["1190_AttackSpeedWithAShieldForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3805075944", - ["text"] = "#% increased Attack Speed while holding a Shield", - }, + ["1176_SpellAddedPhysicalSuffix"] = { ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["max"] = 19, + ["min"] = 4.5, }, ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["max"] = 19, + ["min"] = 4.5, }, - }, - ["404_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3984519770", - ["text"] = "Socketed Gems have #% chance to Ignite", }, - ["sign"] = "", }, - ["1254_LightningCritChanceForJewel"] = { + ["1177_FireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1186596295", - ["text"] = "#% increased Critical Strike Chance with Lightning Skills", }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + }, + ["1177_SpellAddedFireDamage"] = { + ["1HAxe"] = { + ["max"] = 90.5, + ["min"] = 17.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 90.5, + ["min"] = 2, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["1HSword"] = { + ["max"] = 90.5, + ["min"] = 17.5, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["1HWeapon"] = { + ["max"] = 90.5, + ["min"] = 2, }, - }, - ["1006_DualWieldingSpellDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", + ["Claw"] = { + ["max"] = 90.5, + ["min"] = 17.5, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Dagger"] = { + ["max"] = 90.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 90.5, + ["min"] = 2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", }, }, - ["1206_LightRadiusAndAccuracyPercent"] = { + ["1177_SpellAddedFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", }, - ["specialCaseData"] = { + }, + ["1177_SpellAddedFireDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 38.5, + ["min"] = 9, }, - ["sign"] = "", - ["Ring"] = { + ["1HWeapon"] = { + ["max"] = 38.5, ["min"] = 9, - ["max"] = 20, }, - ["Helmet"] = { + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 12.5, + }, + ["Dagger"] = { + ["max"] = 38.5, ["min"] = 9, - ["max"] = 20, }, - }, - ["4011_ElusiveOnCriticalStrikeMaven"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 52, + ["min"] = 12.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", + ["Wand"] = { + ["max"] = 38.5, + ["min"] = 9, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["2252_LightRadiusAndAccuracyPercent"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", }, - ["specialCaseData"] = { + }, + ["1177_SpellAddedFireDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 121.5, + ["min"] = 23.5, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 5, - ["max"] = 15, + ["2HMace"] = { + ["max"] = 121.5, + ["min"] = 23.5, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 15, + ["2HSword"] = { + ["max"] = 121.5, + ["min"] = 23.5, }, - }, - ["1155_SelfLightningDamageTaken"] = { + ["2HWeapon"] = { + ["max"] = 121.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 121.5, + ["min"] = 48.5, + }, + ["Staff"] = { + ["max"] = 121.5, + ["min"] = 2.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2491363440", - ["text"] = "Adds # to # Lightning Damage to Attacks against you", }, - ["sign"] = "", }, - ["1499_MaximumLifeLeechRate"] = { - ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, + ["1177_SpellAddedFireDamageUber"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", }, - ["specialCaseData"] = { + }, + ["1177_SpellAddedFireSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 25, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - }, - ["1408_PhysicalDamageTakenAsChaosUberMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "+", }, - ["9256_Impaler"] = { + ["1177_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1441799693", - ["text"] = "The Impaler", }, }, - ["1332_EnergyShieldDelay"] = { - ["Gloves"] = { - ["min"] = 27, - ["max"] = 66, + ["1178_ColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 66, + }, + ["1178_SpellAddedColdDamage"] = { + ["1HAxe"] = { + ["max"] = 73.5, + ["min"] = 14.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 73.5, + ["min"] = 1.5, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 27, - ["max"] = 66, + ["1HSword"] = { + ["max"] = 73.5, + ["min"] = 14.5, }, - ["Boots"] = { - ["min"] = 27, - ["max"] = 66, + ["1HWeapon"] = { + ["max"] = 73.5, + ["min"] = 1.5, }, - }, - ["1345_LifeDegenerationGracePeriod"] = { + ["Claw"] = { + ["max"] = 73.5, + ["min"] = 14.5, + }, + ["Dagger"] = { + ["max"] = 73.5, + ["min"] = 1.5, + }, + ["Wand"] = { + ["max"] = 73.5, + ["min"] = 1.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", }, - ["sign"] = "", }, - ["5041_GainFortifyOnStunChance"] = { + ["1178_SpellAddedColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", }, - ["specialCaseData"] = { + }, + ["1178_SpellAddedColdDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 31.5, + ["min"] = 7.5, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 31.5, + ["min"] = 7.5, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 47, + ["min"] = 11.5, + }, + ["Dagger"] = { + ["max"] = 31.5, + ["min"] = 7.5, + }, + ["Staff"] = { + ["max"] = 47, + ["min"] = 11.5, + }, + ["Wand"] = { + ["max"] = 31.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["4876_CastSpeedIfEnemyKilledRecently"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", }, - ["specialCaseData"] = { + }, + ["1178_SpellAddedColdDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 110.5, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 110.5, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 110.5, + ["min"] = 21, }, ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["max"] = 110.5, + ["min"] = 2, }, - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + ["Bow"] = { + ["max"] = 110.5, + ["min"] = 24.5, + }, + ["Staff"] = { + ["max"] = 110.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["1099_IncreasedMaceDamageForJewel"] = { - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces or Sceptres", }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + }, + ["1178_SpellAddedColdDamageUber"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", }, + }, + ["1178_SpellAddedColdSuffix"] = { ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 27.5, + ["min"] = 7.5, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", }, }, - ["5400_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["1178_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 3, - }, - ["sign"] = "", }, - ["5431_DamageTakenGainedAsLife"] = { + ["1179_LightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 15, + }, + ["1179_SpellAddedLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 96.5, + ["min"] = 11, + }, + ["1HMace"] = { + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["1HSword"] = { + ["max"] = 96.5, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["Claw"] = { + ["max"] = 96.5, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["Wand"] = { + ["max"] = 96.5, + ["min"] = 2.5, }, ["sign"] = "", - }, - ["4558_ColdExposureOnHit"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", }, + }, + ["1179_SpellAddedLightningDamageHybrid"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1179_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 41.5, + ["min"] = 11, + }, ["1HWeapon"] = { + ["max"] = 41.5, ["min"] = 11, - ["max"] = 20, }, ["2HWeapon"] = { + ["max"] = 62, + ["min"] = 16.5, + }, + ["Dagger"] = { + ["max"] = 41.5, ["min"] = 11, - ["max"] = 20, }, - }, - ["2375_MinimumEnduranceChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["Staff"] = { + ["max"] = 62, + ["min"] = 16.5, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 41.5, + ["min"] = 11, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, - }, - }, - ["1611_MovementVelocityAndCannotBeChilled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 100, - ["max"] = 100, }, }, - ["6269_ShockChanceAndEffectMaven"] = { + ["1179_SpellAddedLightningDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 145, + ["min"] = 16.5, + }, + ["2HMace"] = { + ["max"] = 145, + ["min"] = 16.5, + }, + ["2HSword"] = { + ["max"] = 145, + ["min"] = 16.5, + }, + ["2HWeapon"] = { + ["max"] = 145, + ["min"] = 3.5, + }, + ["Bow"] = { + ["max"] = 145, + ["min"] = 16.5, + }, + ["Staff"] = { + ["max"] = 145, + ["min"] = 3.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2206792089", - ["text"] = "Shock Enemies as though dealing #% more Damage", }, + }, + ["1179_SpellAddedLightningDamageUber"] = { ["Helmet"] = { + ["max"] = 64.5, ["min"] = 30, - ["max"] = 50, }, ["sign"] = "", - }, - ["9244_DivineShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2048995720", - ["text"] = "Divine Shield", }, }, - ["1159_IncreasedChaosAndPhysicalDamage"] = { + ["1179_SpellAddedLightningSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 25.5, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 25.5, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 20, }, - ["sign"] = "", }, - ["1626_IgniteChanceAndDurationForJewel"] = { + ["1179_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { }, + }, + ["1180_IncreasedCastSpeedAddedChaos"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", }, }, - ["1667_StunRecoveryForJewel"] = { + ["1180_PoisonDamageAddedChaosToSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", }, - ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 35, + }, + ["1180_SpellAddedChaosDamage"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 34, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 97.5, + ["min"] = 56, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 20.5, + }, + ["Staff"] = { + ["max"] = 97.5, + ["min"] = 56, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 34, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", }, }, - ["1467_ManaLeechPermyriadForJewel"] = { + ["1180_SpellAddedChaosDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, + }, + ["1180_SpellAddedChaosSuffix"] = { ["AbyssJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["max"] = 19, + ["min"] = 4.5, }, ["AnyJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["max"] = 19, + ["min"] = 4.5, }, - }, - ["8913_TailwindOnCriticalStrike"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["6553_ShockChanceAndEffect"] = { + ["1182_AddedLightningDamageSpellsAndAttacks"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 15, }, - ["sign"] = "", }, - ["1352_BaseLifeAndManaRegen"] = { + ["1183_IncreasedAttackSpeed"] = { + ["Amulet"] = { + ["max"] = 13, + ["min"] = 7, + }, ["Gloves"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["max"] = 18, + ["min"] = 5, }, ["Quiver"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["max"] = 16, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 5, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", }, - ["Helmet"] = { - ["min"] = 5.3, - ["max"] = 5.3, + }, + ["1183_IncreasedAttackSpeedForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Ring"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Amulet"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Boots"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1933_CurseEffectOnYouJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - }, - ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 30, }, - ["specialCaseData"] = { + }, + ["1183_IncreasedAttackSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 25, - ["max"] = 30, - }, - ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["1536_MinionMovementSpeed"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + }, + ["1186_AttackSpeedDoubleDamage"] = { + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 6, - ["max"] = 30, + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 8, }, - }, - ["939_BlockDualWieldingForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 21, + ["min"] = 17, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", }, }, - ["1197_MaceAttackSpeedForJewel"] = { + ["1186_AttackSpeedKilledRecently"] = { + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, + }, ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 21, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1186_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 22, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["max"] = 22, + ["min"] = 8, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 22, + ["min"] = 8, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["2HAxe"] = { + ["max"] = 22, + ["min"] = 8, }, - }, - ["1405_LightningResistanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["2HMace"] = { + ["max"] = 22, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["2HSword"] = { + ["max"] = 22, + ["min"] = 8, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Bow"] = { + ["max"] = 22, + ["min"] = 8, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Claw"] = { + ["max"] = 22, + ["min"] = 8, }, - }, - ["1341_PercentageLifeAndMana"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 22, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["Staff"] = { + ["max"] = 22, + ["min"] = 8, }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 10, + ["Wand"] = { + ["max"] = 22, + ["min"] = 8, }, ["sign"] = "", - }, - ["2921_PoisonDamageAddedChaosToSpells"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["sign"] = "", }, - ["1448_LightningResistanceEnemyLeech"] = { + ["1186_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", }, - ["sign"] = "", }, - ["8053_MinionDamageVSAbyssMonsters"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086057912", - ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", - }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["1186_LocalAttackSpeedDexterityIntelligence"] = { + ["1HAxe"] = { + ["max"] = 22, + ["min"] = 8, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["1HSword"] = { + ["max"] = 22, + ["min"] = 8, }, - }, - ["7011_NearbyEnemyFireDamageResistance"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 22, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3914021960", - ["text"] = "Nearby Enemies have #% to Fire Resistance", + ["2HAxe"] = { + ["max"] = 22, + ["min"] = 8, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["2HMace"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "-", - }, - ["1105_IncreasedBowDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["2HSword"] = { + ["max"] = 22, + ["min"] = 8, }, ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 22, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Claw"] = { + ["max"] = 22, + ["min"] = 8, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Dagger"] = { + ["max"] = 22, + ["min"] = 8, }, - }, - ["1331_EnergyShieldAndPercent"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 22, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["Wand"] = { + ["max"] = 22, + ["min"] = 8, }, ["sign"] = "", - }, - ["1328_ArmourAndEnergyShield"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, }, }, - ["1341_PercentIncreasedLifeForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["1186_LocalIncreasedAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 5, }, - ["AbyssJewel"] = { + ["1HMace"] = { + ["max"] = 30, ["min"] = 5, - ["max"] = 7, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 5, }, - ["sign"] = "", - ["BaseJewel"] = { + ["1HWeapon"] = { + ["max"] = 30, ["min"] = 5, - ["max"] = 7, }, - ["AnyJewel"] = { + ["2HAxe"] = { + ["max"] = 30, ["min"] = 5, - ["max"] = 7, }, - }, - ["5450_FasterAilmentDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["2HMace"] = { + ["max"] = 30, + ["min"] = 5, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Bow"] = { + ["max"] = 27, + ["min"] = 5, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Claw"] = { + ["max"] = 30, + ["min"] = 5, }, - }, - ["971_TrapDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 27, + ["min"] = 5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", }, }, - ["5431_LifeRecoupForJewel"] = { + ["1186_LocalIncreasedAttackSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1186_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["1HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HSword"] = { + ["max"] = 21, + ["min"] = 17, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HWeapon"] = { + ["max"] = 21, + ["min"] = 8, }, - }, - ["2913_PoisonChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 17, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Claw"] = { + ["max"] = 21, + ["min"] = 17, }, - }, - ["1405_LightningResistancePhysTakenAsLightning"] = { + ["Dagger"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", }, - ["sign"] = "+", }, - ["2910_PoisonChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { + ["1186_LocalIncreasedAttackSpeedMultistrike"] = { + ["1HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HSword"] = { + ["max"] = 21, + ["min"] = 17, }, - }, - ["4550_LightningDamageESLeech"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 21, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_308127151", - ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - }, - ["1003_StaffSpellDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, }, ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 21, + ["min"] = 17, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Claw"] = { + ["max"] = 21, + ["min"] = 17, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 21, + ["min"] = 17, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, - }, - ["9233_PerfectAgony"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3884934810", - ["text"] = "Perfect Agony", }, }, - ["219_SupportedByEnlighten"] = { + ["1186_LocalIncreasedAttackSpeedOnslaught"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2065361612", - ["text"] = "Socketed Gems are Supported by Level # Enlighten", }, - ["sign"] = "", }, - ["348_TotemSpeedSpellSupported"] = { - ["specialCaseData"] = { + ["1186_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 4, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["1HSword"] = { + ["max"] = 4, + ["min"] = 3, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 3, }, - }, - ["8886_FireResistanceAilments"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", + ["2HSword"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - }, - ["1388_AllResistancesForJewel"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, }, - ["specialCaseData"] = { + }, + ["1188_AttackSpeedWhileDualWieldingForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["max"] = 6, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1253_FireCritChanceForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_1104796138", - ["text"] = "#% increased Critical Strike Chance with Fire Skills", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, }, - ["specialCaseData"] = { + }, + ["1190_AttackSpeedWithAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["max"] = 6, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["987_DamageOverTimeForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, }, - ["specialCaseData"] = { + }, + ["1191_TwoHandedMeleeAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 6, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1248_TwoHandedCritChanceForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_764295120", - ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", }, - ["specialCaseData"] = { + }, + ["1192_OneHandedMeleeAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["max"] = 6, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1133_AddedFireAndColdDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + }, + ["1193_AxeAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, - }, - }, - ["2921_PoisonDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["1194_StaffAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["2393_EnergyShieldAndDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", ["type"] = "explicit", - ["id"] = "explicit.stat_761102773", - ["text"] = "Lose #% of Energy Shield per second", }, - ["sign"] = "", }, - ["9213_ZealotryReservation"] = { - ["specialCaseData"] = { + ["1195_ClawAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["145_ProjectilePierceAndProjectileGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", ["type"] = "explicit", - ["id"] = "explicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", }, - ["specialCaseData"] = { + }, + ["1196_DaggerAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["2880_ChillEnemiesWhenHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", ["type"] = "explicit", - ["id"] = "explicit.stat_2459809121", - ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", }, - ["sign"] = "", }, - ["1158_LightningGemCastSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1788635023", - ["text"] = "#% increased Cast Speed with Lightning Skills", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["specialCaseData"] = { + ["1197_MaceAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 8, + ["min"] = 6, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1280_ColdCritMultiplierForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", ["type"] = "explicit", - ["id"] = "explicit.stat_915908446", - ["text"] = "#% to Critical Strike Multiplier with Cold Skills", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, }, - ["specialCaseData"] = { + }, + ["1198_BowAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["max"] = 8, + ["min"] = 6, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1855_AddedColdDamageWithStaves"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", - ["id"] = "explicit.stat_1261958804", - ["text"] = "# to # Added Cold Damage with Staff Attacks", }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + }, + ["1199_SwordAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["specialCaseData"] = { }, - }, - ["1178_SpellAddedColdDamagePenetrationHybrid"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, - ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 11.5, - ["max"] = 47, + }, + ["1200_WandAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["1HWeapon"] = { - ["min"] = 7.5, - ["max"] = 31.5, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["4750_AttackBlockIfBlockedAttackRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", ["type"] = "explicit", - ["id"] = "explicit.stat_3789765926", - ["text"] = "#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, }, }, - ["1801_CullingStrike"] = { - ["specialCaseData"] = { + ["1205_IncreasedAccuracy"] = { + ["AbyssJewel"] = { + ["max"] = 300, + ["min"] = 31, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", + ["Amulet"] = { + ["max"] = 480, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 300, + ["min"] = 31, }, ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 600, + ["min"] = 50, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["max"] = 600, + ["min"] = 50, }, - }, - ["1838_AddedPhysicalDamageWithSwords"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1040189894", - ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["Quiver"] = { + ["max"] = 600, + ["min"] = 50, }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Ring"] = { + ["max"] = 480, + ["min"] = 50, }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Shield"] = { + ["max"] = 480, + ["min"] = 50, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", }, }, - ["1331_EnergyShieldAndManaForJewel"] = { + ["1205_IncreasedAccuracyForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "", }, - ["1533_MinionLifeForJewel"] = { + ["1205_LightRadiusAndAccuracy"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, }, - ["specialCaseData"] = { + }, + ["1206_AccuracyAndCritsForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 6, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["max"] = 10, + ["min"] = 6, }, - }, - ["8104_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_3500359417", - ["text"] = "Minions Recover #% of their Life when you Focus", }, + }, + ["1206_IncreasedAccuracyPercent"] = { ["Gloves"] = { - ["min"] = 100, - ["max"] = 100, + ["max"] = 30, + ["min"] = 12, }, - ["sign"] = "", - }, - ["7079_LocalChanceToPoisonOnHit"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["Ring"] = { + ["max"] = 30, + ["min"] = 6, }, ["sign"] = "", - }, - ["5390_DamagePer15Dexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2062174346", - ["text"] = "#% increased Damage per 15 Dexterity", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", }, - ["7079_PoisonDamageAndLocalChanceOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["1206_IncreasedAccuracyPercentForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", }, }, - ["2277_CurseOnHitLevelElementalWeaknessMod"] = { + ["1206_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["5265_CriticalStrikeChanceIfKilledRecently"] = { + ["1206_LightRadiusAndAccuracyPercent"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", }, - ["specialCaseData"] = { + }, + ["1206_LocalLightRadiusAndAccuracyPercent"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 9, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 31, - ["max"] = 100, + ["max"] = 20, + ["min"] = 9, }, - ["2HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 9, }, - }, - ["970_TotemDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 9, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 9, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 9, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Bow"] = { + ["max"] = 20, + ["min"] = 9, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Claw"] = { + ["max"] = 20, + ["min"] = 9, }, - }, - ["961_PercentageStrength"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 12, + ["Staff"] = { + ["max"] = 20, + ["min"] = 9, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 9, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 12, - }, - ["Boots"] = { - ["min"] = 6, - ["max"] = 12, + ["specialCaseData"] = { }, - }, - ["968_DamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", }, - ["AbyssJewel"] = { + }, + ["1218_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 22, ["min"] = 8, - ["max"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "", - ["BaseJewel"] = { + ["1HSword"] = { + ["max"] = 22, ["min"] = 8, - ["max"] = 10, }, - ["AnyJewel"] = { + ["1HWeapon"] = { + ["max"] = 22, ["min"] = 8, - ["max"] = 10, }, - }, - ["3997_ArmourAndEvasionRating"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2316658489", - ["text"] = "# to Armour and Evasion Rating", + ["2HAxe"] = { + ["max"] = 31, + ["min"] = 12, }, - ["Quiver"] = { - ["min"] = 365, - ["max"] = 400, + ["2HMace"] = { + ["max"] = 31, + ["min"] = 12, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 31, + ["min"] = 12, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, + ["2HWeapon"] = { + ["max"] = 31, + ["min"] = 12, }, - }, - ["435_SocketedSpellCriticalMultiplier"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 31, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2828710986", - ["text"] = "Socketed Spells have #% to Critical Strike Multiplier", + ["Claw"] = { + ["max"] = 22, + ["min"] = 8, }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 90, + ["Dagger"] = { + ["max"] = 22, + ["min"] = 8, }, - ["sign"] = "+", - }, - ["8641_BrandAttachmentRange"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 28, + ["Staff"] = { + ["max"] = 31, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["Wand"] = { + ["max"] = 22, + ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 28, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", }, }, - ["5800_FireAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, + ["1218_IncreasedCastSpeed"] = { + ["1HAxe"] = { + ["max"] = 32, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 32, + ["min"] = 5, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["1HSword"] = { + ["max"] = 32, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", + ["1HWeapon"] = { + ["max"] = 32, + ["min"] = 5, }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, + ["2HAxe"] = { + ["max"] = 49, + ["min"] = 15, }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, + ["2HMace"] = { + ["max"] = 49, + ["min"] = 15, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, + ["2HSword"] = { + ["max"] = 49, + ["min"] = 15, }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["max"] = 49, + ["min"] = 8, }, ["Amulet"] = { - ["min"] = 16, ["max"] = 20, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 49, + ["min"] = 32, + }, + ["Claw"] = { + ["max"] = 32, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 32, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 5, }, ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["max"] = 9, + ["min"] = 6, }, - }, - ["957_StrengthAndDexterity"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, + ["Staff"] = { + ["max"] = 49, + ["min"] = 8, }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["Wand"] = { + ["max"] = 32, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1218_IncreasedCastSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + }, + ["1218_IncreasedCastSpeedFasterCasting"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", }, }, - ["1260_CritMultiplierForJewel"] = { + ["1218_IncreasedCastSpeedFishing"] = { + ["FishingRod"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", }, + }, + ["1218_IncreasedCastSpeedForJewel"] = { ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 12, + ["max"] = 4, + ["min"] = 2, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 9, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 9, - ["max"] = 12, + ["max"] = 4, + ["min"] = 2, }, - }, - ["1743_ElementalDamagePrefixElementalFocus"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + }, + }, + ["1218_IncreasedCastSpeedSpellEcho"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, }, ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["max"] = 20, + ["min"] = 15, }, - ["sign"] = "", - }, - ["5894_FocusCooldownRecovery"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, - }, - }, - ["272_SupportedByLessDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2487643588", - ["text"] = "Socketed Gems are Supported by Level # Less Duration", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 25, + }, + ["1218_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, }, ["sign"] = "", - }, - ["1135_SelfFireDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2127433866", - ["text"] = "Adds # to # Fire Damage to Attacks against you", }, - ["sign"] = "", }, - ["9142_WrathReservation"] = { - ["specialCaseData"] = { + ["1218_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["342_TrapDamageMineSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["1218_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1890_FrenzyChargeOnKillChanceMaven"] = { - ["Gloves"] = { - ["min"] = 50, - ["max"] = 50, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", }, - ["Quiver"] = { - ["min"] = 50, - ["max"] = 50, + }, + ["1219_CastSpeedWhileDualWieldingForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, - }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, - }, - }, - ["1335_EnergyShieldRegeneration"] = { - ["Gloves"] = { - ["min"] = 24, - ["max"] = 38, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 38, + }, + ["1220_CastSpeedWithAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 24, - ["max"] = 38, - }, - ["Boots"] = { - ["min"] = 24, - ["max"] = 38, - }, - }, - ["2286_MeleeRangeAndMeleeGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", }, - ["specialCaseData"] = { + }, + ["1221_CastSpeedWithAStaffForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["149_LocalIncreaseSocketedAuraLevel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", ["type"] = "explicit", - ["id"] = "explicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", }, - ["sign"] = "+", }, - ["1378_GlobalIncreaseSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skill Gems", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["1230_CriticalStrikeChanceSpellsSupported"] = { + ["1HMace"] = { + ["max"] = 82, + ["min"] = 60, }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", - }, - ["1860_AddedLightningDamageWithClaws"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4231842891", - ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["max"] = 82, + ["min"] = 60, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Dagger"] = { + ["max"] = 82, + ["min"] = 60, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 82, + ["min"] = 60, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - }, - ["174_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_2062835769", - ["text"] = "#% to Quality of Socketed Chaos Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, }, }, - ["1565_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { - ["specialCaseData"] = { + ["1230_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["2HWeapon"] = { + ["max"] = 82, + ["min"] = 60, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["Staff"] = { + ["max"] = 82, + ["min"] = 60, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 25, - ["max"] = 30, - }, - }, - ["1563_ProjectileDamageAndProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", }, - ["Amulet"] = { - ["min"] = 23, - ["max"] = 25, - }, - ["sign"] = "", }, - ["6583_GlobalLightningGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1147690586", - ["text"] = "# to Level of all Lightning Skill Gems", + ["1230_SpellCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["6488_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_3324747104", - ["text"] = "#% of Damage Leeched as Life while Focused", - }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 15, }, - ["sign"] = "", }, - ["7065_LifeGainPerBlindedEnemyHit"] = { - ["specialCaseData"] = { + ["1230_SpellCriticalStrikeChance"] = { + ["1HAxe"] = { + ["max"] = 119, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1649099067", - ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["1HMace"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 119, + ["min"] = 30, }, ["1HWeapon"] = { - ["min"] = 35, - ["max"] = 50, + ["max"] = 119, + ["min"] = 10, }, - ["sign"] = "", - }, - ["6045_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 119, + ["min"] = 45, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", + ["2HMace"] = { + ["max"] = 119, + ["min"] = 45, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["2HSword"] = { + ["max"] = 119, + ["min"] = 45, }, - }, - ["2201_PhysicalDamageTakenAsFireAndLightningPercent"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 119, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["Bow"] = { + ["max"] = 119, + ["min"] = 80, }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 9, + ["Claw"] = { + ["max"] = 119, + ["min"] = 30, }, - ["sign"] = "", - }, - ["8735_SpellDamagePer16Intelligence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 119, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["Shield"] = { + ["max"] = 119, + ["min"] = 10, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 10, }, ["sign"] = "", - }, - ["2490_FlaskEffectAndFlaskChargesGained"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 15, - ["max"] = 18, }, }, - ["1328_EvasionRatingAndEnergyShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["1231_AccuracyAndCritsForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, - }, - }, - ["3496_LocalAttackReduceEnemyElementalResistance"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", }, - ["specialCaseData"] = { + }, + ["1231_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - }, - ["2590_FishingLineStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_1842038569", - ["text"] = "#% increased Fishing Line Strength", }, - ["sign"] = "", }, - ["1139_FireGemCastSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1476643878", - ["text"] = "#% increased Cast Speed with Fire Skills", - }, + ["1231_CritChanceForJewel"] = { ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 12, + ["min"] = 8, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 12, + ["min"] = 8, }, - }, - ["178_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_3422008440", - ["text"] = "#% to Quality of Socketed Fire Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, }, }, - ["4412_ChanceToGainOnslaughtOnKillMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_879520319", - ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", + ["1231_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 11, }, ["Quiver"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["max"] = 22, + ["min"] = 11, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 3, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["8030_MinionAttackSpeedAndCastSpeed"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 16, }, }, - ["189_WeaponSpellDamageArcaneSurge"] = { - ["specialCaseData"] = { + ["1231_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["Quiver"] = { + ["max"] = 22, + ["min"] = 11, }, ["sign"] = "", - }, - ["5894_TriggerSocketedSpellWhenYouFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 8, + }, + ["1231_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 9, }, ["sign"] = "", - }, - ["2376_MinimumEnduranceChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_627015097", - ["text"] = "#% chance to lose an Endurance Charge on Kill", }, - ["sign"] = "", }, - ["1328_EnergyShieldAndRegen"] = { - ["specialCaseData"] = { + ["1231_CriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["Gloves"] = { + ["max"] = 60, + ["min"] = 15, }, - ["sign"] = "+", - }, - ["1205_LightRadiusAndAccuracy"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 42, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["Ring"] = { + ["max"] = 26, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["926_SpellBlockPercentageOnLowLife"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_2253286128", - ["text"] = "#% Chance to Block Spell Damage while on Low Life", }, - ["sign"] = "+", }, - ["968_AllDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["1236_CriticalStrikeChanceSupported"] = { + ["1HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 20, - ["max"] = 23, + ["1HSword"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 25, + ["1HWeapon"] = { + ["max"] = 29, + ["min"] = 22, }, - }, - ["2377_FrenzyChargeOnKillChance"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["2HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["2HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Quiver"] = { - ["min"] = 4, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 29, + ["min"] = 22, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["Claw"] = { + ["max"] = 29, + ["min"] = 22, }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["Dagger"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Wand"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["157_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + }, + ["1236_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["2HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["2HSword"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Shield"] = { - ["min"] = 2, - ["max"] = 2, + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, }, - }, - ["2618_AllColdDamageCanIgnite"] = { + ["Bow"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Staff"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_3573591118", - ["text"] = "Your Cold Damage can Ignite", }, }, - ["6570_PhysicalDamageTakenAsLightningUberMaven"] = { - ["specialCaseData"] = { + ["1236_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["2HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["2HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Bow"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Staff"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", - }, - ["1178_ColdDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", }, - ["sign"] = "", }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["1236_GainEnduranceChargeOnCritUber"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["8135_MovementSpeedIfHitRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3178542354", - ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["1236_LocalCriticalStrikeChance"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["1HMace"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["5366_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_455556407", - ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["1HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["2HMace"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["956_IntelligenceAndAvoidShock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["2HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["Bow"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["1665_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", + ["Staff"] = { + ["max"] = 38, + ["min"] = 10, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 35, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, }, ["sign"] = "", - }, - ["3132_FlaskChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_1546046884", - ["text"] = "Gain a Flask Charge when you deal a Critical Strike", - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2316_IgniteChanceAndDamageMaven"] = { + ["1236_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, }, - ["sign"] = "", }, - ["1354_SpellDamageAndManaRegenerationRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["1236_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HAxe"] = { + ["max"] = 32, + ["min"] = 15, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 32, + ["min"] = 15, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 40, + ["1HSword"] = { + ["max"] = 32, + ["min"] = 15, }, ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["max"] = 32, + ["min"] = 15, }, - ["sign"] = "", - }, - ["1000_SpellDamageAndManaRegenerationRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["2HAxe"] = { + ["max"] = 32, + ["min"] = 15, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 32, + ["min"] = 15, }, ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["max"] = 32, + ["min"] = 15, }, - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 79, + ["Bow"] = { + ["max"] = 32, + ["min"] = 15, }, - ["sign"] = "", - }, - ["1344_BaseManaAndLifeRegen"] = { - ["Gloves"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Claw"] = { + ["max"] = 32, + ["min"] = 15, }, - ["Quiver"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Dagger"] = { + ["max"] = 32, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["Helmet"] = { - ["min"] = 33.3, - ["max"] = 33.3, }, - ["Ring"] = { - ["min"] = 33.3, - ["max"] = 33.3, + }, + ["1236_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Amulet"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Claw"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Boots"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 8, }, - }, - ["6045_GainVaalPactWhileFocused"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", }, }, - ["1611_AvoidFreezeAndChill"] = { + ["1237_CritChanceWithBowForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, }, }, - ["1788_IgniteChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["specialCaseData"] = { + ["1237_CriticalStrikeChanceWithBows"] = { + ["Quiver"] = { + ["max"] = 44, + ["min"] = 10, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - }, - ["1341_LifeAndEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", }, - ["sign"] = "", }, - ["1131_IncreasedFireAndLightningDamage"] = { + ["1246_TrapCritChanceForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["1248_TwoHandedCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", - }, - ["1131_FireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["sign"] = "", }, - ["1575_MinimumFrenzyChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["1249_TwoHandCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["6546_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_252507949", + ["text"] = "#% to Critical Strike Multiplier with Two Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_3500911418", - ["text"] = "Regenerate #% of Life per second during any Flask Effect", }, - ["sign"] = "", }, - ["1612_DexterityAndAvoidFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["1250_OneHandedCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 21, - ["max"] = 25, - }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, - }, - }, - ["6513_MaximumLifeOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_3353368340", - ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["1251_MeleeCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", - }, - ["5694_EnemiesHaveReducedEvasionIfHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", ["type"] = "explicit", - ["id"] = "explicit.stat_1773891268", - ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", - }, - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 20, }, - ["sign"] = "", }, - ["955_DexterityAndAvoidFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["1252_DualWieldingCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - }, - ["2737_MovementVelocityAndOnslaughtOnKill"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, }, }, - ["246_ChanceToMaimSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["1253_FireCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["5030_ChanceToDealDoubleDamageWhileFocused"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2908886986", - ["text"] = "#% chance to deal Double Damage while Focused", + }, + }, + ["1254_LightningCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 36, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["1255_ColdCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Shield"] = { - ["min"] = 18, - ["max"] = 20, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - }, - ["372_AdditionalMinesPlacedSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 25, + }, + ["1256_ElementalCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", - }, - ["8661_SkillsCostNoManaWhileFocusedCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_849152640", - ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", }, }, - ["5894_SkillsCostNoManaWhileFocusedCDR"] = { + ["1260_CritMultiplierForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - ["sign"] = "", }, - ["9005_DesecratedGroundEffectEffectiveness"] = { + ["1260_CriticalMultiplierSupportedTwoHanded"] = { + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Bow"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_4004298002", - ["text"] = "Unaffected by Desecrated Ground", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2723_ArmourPenetration"] = { + ["1260_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + }, + ["1260_CriticalStrikeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["max"] = 38, + ["min"] = 10, }, - ["Belt"] = { - ["min"] = 8, - ["max"] = 15, + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["1218_CastSpeedAndGainArcaneSurgeOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["2HMace"] = { + ["max"] = 38, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 38, + ["min"] = 10, }, ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 31, + ["max"] = 38, + ["min"] = 10, }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 22, + ["Amulet"] = { + ["max"] = 41, + ["min"] = 8, }, - ["sign"] = "", - }, - ["1925_MaximumMinionCountAndMinionLife"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 10, }, ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 24, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 41, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, }, ["sign"] = "+", - }, - ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 30, }, - ["sign"] = "", }, - ["1508_LifeGainPerTargetForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["1260_CriticalStrikeMultiplierSupported"] = { + ["1HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["1HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 29, + ["min"] = 22, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["1HWeapon"] = { + ["max"] = 29, + ["min"] = 22, }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["2HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - }, - ["6555_LightningAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["2HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, + ["2HSword"] = { + ["max"] = 29, + ["min"] = 22, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Claw"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Dagger"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Wand"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "explicit", - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1260_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Amulet"] = { - ["min"] = 16, - ["max"] = 20, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", + ["type"] = "explicit", }, }, - ["1328_EnergyShield"] = { + ["1263_SpellCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["max"] = 15, + ["min"] = 12, }, + ["sign"] = "+", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + }, + }, + ["1267_CritMultiplierWithBowForJewel"] = { ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 47, + }, + ["1267_CriticalStrikeMultiplierWithBows"] = { + ["Quiver"] = { + ["max"] = 38, + ["min"] = 8, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 51, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 51, + ["tradeMod"] = { + ["id"] = "explicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", }, }, - ["5155_ColdAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, + ["1272_OneHandCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_670153687", + ["text"] = "#% to Critical Strike Multiplier with One Handed Melee Weapons", ["type"] = "explicit", - ["id"] = "explicit.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1273_MeleeCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_4237442815", + ["text"] = "#% to Melee Critical Strike Multiplier", + ["type"] = "explicit", }, - ["Amulet"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1278_FireCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["1842_AddedFireDamageWithAxes"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2307547323", + ["text"] = "#% to Critical Strike Multiplier with Fire Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2461965653", - ["text"] = "# to # Added Fire Damage with Axe Attacks", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + }, + ["1279_LightningCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_2441475928", + ["text"] = "#% to Critical Strike Multiplier with Lightning Skills", + ["type"] = "explicit", }, + }, + ["1280_ColdCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["max"] = 18, + ["min"] = 15, }, - }, - ["5983_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_915908446", + ["text"] = "#% to Critical Strike Multiplier with Cold Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_3032585258", - ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 6, - ["max"] = 7, }, }, - ["1869_SpellAddedChaosDamageWhileDualWielding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1865428306", - ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["1281_ElementalCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569407745", + ["text"] = "#% to Critical Strike Multiplier with Elemental Skills", + ["type"] = "explicit", }, }, - ["5050_GainEnduranceChargeOnTauntingEnemies"] = { + ["1283_ReducedCriticalStrikeDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "explicit", - ["id"] = "explicit.stat_1657549833", - ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 30, + }, + ["1283_ReducedExtraDamageFromCrits"] = { + ["Shield"] = { + ["max"] = 60, + ["min"] = 21, }, ["sign"] = "", - }, - ["1795_LightningDamageAndChanceToShock"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", }, - ["specialCaseData"] = { + }, + ["1288_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["max"] = 8, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 6, }, ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["max"] = 8, + ["min"] = 6, }, - }, - ["1236_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, }, - ["sign"] = "", }, - ["7988_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 28.5, + ["1288_StunDurationAndThresholdUber"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2523334466", - ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, }, - ["Quiver"] = { - ["min"] = 25, - ["max"] = 28.5, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, }, ["sign"] = "", - }, - ["3349_PowerFrenzyOrEnduranceChargeOnKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", - ["id"] = "explicit.stat_498214257", - ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 10, }, - ["sign"] = "", }, - ["5297_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { - ["specialCaseData"] = { + ["1288_StunThresholdReduction"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_536929014", - ["text"] = "#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Ring"] = { - ["min"] = 27, - ["max"] = 30, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "+", - }, - ["5746_DodgeChanceDuringFocus"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3839620417", - ["text"] = "#% increased Evasion Rating while Focused", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 30, - ["max"] = 32, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Boots"] = { - ["min"] = 30, - ["max"] = 32, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1153_AddedColdAndLightningDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["Belt"] = { + ["max"] = 17, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["specialCaseData"] = { }, - }, - ["1151_LightningDamagePercentagePrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", }, + }, + ["1299_LocalBaseWardAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "# to Ward", + ["type"] = "explicit", }, }, - ["8307_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["1299_LocalWard"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "# to Ward", ["type"] = "explicit", - ["id"] = "explicit.stat_1539825365", - ["text"] = "# to Armour during Soul Gain Prevention", }, - ["specialCaseData"] = { + }, + ["129_DelveStrengthGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 3201, - ["max"] = 4000, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["min"] = 3201, - ["max"] = 4000, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["5207_ConsecratedGroundStationary"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { + ["max"] = 1, ["min"] = 1, + }, + ["Claw"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["4301_ArcticArmourReservationCost"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1152_SelfFireAndLightningDamageTaken"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", }, - ["sign"] = "", }, - ["2957_ChanceToBlockIfDamagedRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_852195286", - ["text"] = "#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["specialCaseData"] = { + ["129_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, - }, - ["1663_ChaosDamageAndChaosSkillDuration"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_289885185", - ["text"] = "Chaos Skills have #% increased Skill Effect Duration", - }, - ["specialCaseData"] = { }, + }, + ["1301_LocalWardAndStunRecoveryPercent"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", }, }, - ["9276_SupremeEgo"] = { + ["1301_LocalWardPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", ["type"] = "explicit", - ["id"] = "explicit.stat_1421267186", - ["text"] = "Supreme Ego", }, }, - ["1159_ChaosDamageAndChaosSkillDuration"] = { + ["1302_WardDelayRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", }, - ["specialCaseData"] = { + }, + ["130_DelveDexterityGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", ["2HWeapon"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 2, }, ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1444_ColdResistanceEnemyLeech"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["237_SkillEffectDurationSupported"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_407317553", - ["text"] = "Socketed Gems are Supported by Level # Increased Duration", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 20, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1605_CannotBeFrozen"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_876831634", - ["text"] = "Cannot be Frozen", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1610_AvoidStunAndElementalStatusAilments"] = { + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + }, + }, + ["130_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["min"] = 30, - ["max"] = 35, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1141_SelfFireAndColdDamageTaken"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", }, - ["sign"] = "", }, - ["8370_PrideReservationEfficiency"] = { + ["1310_ArmourAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, }, - ["sign"] = "", }, - ["5943_GainAccuracyEqualToStrengthMaven"] = { + ["1310_PhysicalDamageReductionRating"] = { + ["AbyssJewel"] = { + ["max"] = 250, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 250, + ["min"] = 36, + }, + ["Belt"] = { + ["max"] = 540, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 300, + ["min"] = 80, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", + }, + }, + ["1311_LocalBaseArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, }, ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 375, + ["min"] = 5, }, - }, - ["6087_GraceReservationEfficiency"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, }, - ["sign"] = "", }, - ["269_TotemDamageAttackSupported"] = { + ["1311_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", }, - ["sign"] = "", + }, + ["1311_LocalBaseArmourAndLife"] = { ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["max"] = 144, + ["min"] = 20, }, - }, - ["1152_SelfColdAndLightningDamageTaken"] = { + ["Chest"] = { + ["max"] = 144, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 144, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 144, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", }, - ["sign"] = "", }, - ["254_IncreasedCastSpeedSpellEcho"] = { + ["1311_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_725896422", - ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["4343_ArmourIncreasedByUncappedFireResistance"] = { + ["1311_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2129352930", - ["text"] = "Armour is increased by Overcapped Fire Resistance", }, }, - ["6045_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["1311_LocalPhysicalDamageReductionRating"] = { + ["Boots"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 375, + ["min"] = 50, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", }, }, - ["4467_IncreasedAttackSpeedPerDexterity"] = { + ["1312_ArmourEnergyShieldForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_889691035", - ["text"] = "#% increased Attack Speed per 10 Dexterity", }, - ["sign"] = "", }, - ["9246_ElementalEquilibrium"] = { + ["1312_ArmourEvasionForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", }, }, - ["1644_IgniteChanceAndDamage"] = { - ["specialCaseData"] = { + ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["Belt"] = { + ["max"] = 15, + ["min"] = 7, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 20, + ["Ring"] = { + ["max"] = 15, + ["min"] = 7, }, ["sign"] = "", - }, - ["428_DisplayMovementSkillsCostNoMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_3263216405", - ["text"] = "Socketed Movement Skills Cost no Mana", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1312_IncreasedArmourForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - }, - ["2921_PoisonOnHitAndDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["sign"] = "", - ["Quiver"] = { + }, + ["1312_ReducedPhysicalDamageTakenMaven"] = { + ["Boots"] = { + ["max"] = 20, ["min"] = 15, - ["max"] = 30, }, - }, - ["1183_IncreasedAttackSpeedSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 14, }, - ["sign"] = "", }, - ["3116_LightningDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["1313_LocalIncreasedArmourAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, }, - ["sign"] = "", ["Shield"] = { - ["min"] = 8, - ["max"] = 10, + ["max"] = 21, + ["min"] = 12, }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, - }, - ["3028_DamagePerFrenzyCharge"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 8, + }, + ["1313_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, }, - }, - ["8549_RestoreManaAndEnergyShieldOnFocus"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2992263716", - ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + }, + }, + ["1313_LocalPhysicalDamageReductionRatingPercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, ["Chest"] = { - ["min"] = 37, - ["max"] = 40, + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 26, }, ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, }, - ["1349_BaseLifeAndMana"] = { + ["1313_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["1133_AddedFireAndLightningDamage"] = { + ["1313_LocalPhysicalDamageReductionRatingPercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + }, + ["1315_EvasionRating"] = { + ["AbyssJewel"] = { + ["max"] = 250, + ["min"] = 36, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 250, + ["min"] = 36, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["Belt"] = { + ["max"] = 180, + ["min"] = 36, }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["Ring"] = { + ["max"] = 180, + ["min"] = 3, }, - }, - ["8542_RemoveShockOnFlaskUse"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", }, + }, + ["1315_EvasionRatingAndEnergyShield"] = { ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 400, + ["min"] = 105, + }, + ["Quiver"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["1093_IncreasedDaggerDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_3586984690", - ["text"] = "#% increased Damage with Daggers", - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + }, + ["1319_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, }, - }, - ["9247_ElementalOverload"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3574189159", - ["text"] = "Elemental Overload", }, }, - ["1852_AddedColdDamageWithClaws"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2848646243", - ["text"] = "# to # Added Cold Damage with Claw Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, + ["1319_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - }, - ["5300_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3992439283", - ["text"] = "#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", }, - ["specialCaseData"] = { + }, + ["1319_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, }, - ["2HWeapon"] = { - ["min"] = 54, - ["max"] = 60, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, }, - ["1HWeapon"] = { - ["min"] = 36, - ["max"] = 40, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, }, ["sign"] = "+", - }, - ["6979_LocalChaosPenetration"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3762412853", - ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", }, - ["specialCaseData"] = { + }, + ["1319_LocalBaseEvasionRatingAndLife"] = { + ["Boots"] = { + ["max"] = 120, + ["min"] = 14, }, - ["sign"] = "", - ["1HWeapon"] = { + ["Chest"] = { + ["max"] = 120, ["min"] = 14, - ["max"] = 16, }, - ["2HWeapon"] = { + ["Gloves"] = { + ["max"] = 120, ["min"] = 14, - ["max"] = 16, }, - }, - ["170_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Helmet"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1325783255", - ["text"] = "#% to Quality of Socketed Active Skill Gems", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, }, - ["sign"] = "+", }, - ["7015_NearbyEnemyPhysicalDamageTaken"] = { + ["1319_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_415837237", - ["text"] = "Nearby Enemies take #% increased Physical Damage", + }, + }, + ["1319_LocalEvasionRating"] = { + ["Boots"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 500, + ["min"] = 6, }, ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["max"] = 500, + ["min"] = 6, }, - ["sign"] = "", - }, - ["398_DisplaySocketedGemsGetReducedReservation"] = { + ["Shield"] = { + ["max"] = 375, + ["min"] = 50, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, }, }, - ["1788_FireDamageAndChanceToIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["131_DelveIntelligenceGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1131_FireDamageAndChanceToIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["5391_DamagePer15Intelligence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3801128794", - ["text"] = "#% increased Damage per 15 Intelligence", + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Amulet"] = { + ["Helmet"] = { + ["max"] = 1, ["min"] = 1, + }, + ["Staff"] = { ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["2910_PoisonDuration"] = { + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", }, - ["sign"] = "", }, - ["1467_ManaLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["131_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.8, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["tradeMod"] = { + ["id"] = "explicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", }, }, - ["2380_MinimumPowerChargesAndOnKillLose"] = { + ["1320_ArmourEvasionForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2939195168", - ["text"] = "#% chance to lose a Power Charge on Kill", }, - ["sign"] = "", }, - ["4315_AreaOfEffectPer50Strength"] = { + ["1320_EvasionEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_2611023406", - ["text"] = "#% increased Area of Effect per 50 Strength", }, - ["specialCaseData"] = { + }, + ["1320_GlobalEvasionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 4, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 3, + ["Belt"] = { + ["max"] = 15, + ["min"] = 7, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 3, + ["Ring"] = { + ["max"] = 15, + ["min"] = 7, }, - }, - ["1943_IgnoreArmourMovementPenalties"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_1311723478", - ["text"] = "Ignore all Movement Penalties from Armour", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["264_SupportedByPowerChargeOnCritWeapon"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["1320_IncreasedEvasionForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", - }, - ["1345_BaseManaAndLifeDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", }, - ["sign"] = "", }, - ["1563_IncreasedProjectileSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - }, - ["AbyssJewel"] = { + ["1321_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Boots"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 8, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, }, - ["sign"] = "", - ["BaseJewel"] = { + ["Gloves"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 8, }, - ["AnyJewel"] = { + ["Helmet"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 8, }, - }, - ["287_TrapDamageCooldownSupported"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, - }, - ["sign"] = "", }, - ["198_SupportedByCastOnDamageTaken"] = { - ["specialCaseData"] = { + ["1321_LocalEvasionRatingIncreasePercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3036440332", - ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, }, - ["sign"] = "", ["Shield"] = { - ["min"] = 5, - ["max"] = 5, + ["max"] = 110, + ["min"] = 26, }, - }, - ["8012_AttackImpaleChanceMaven"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1455766505", - ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 3.5, - }, - ["sign"] = "", }, - ["1218_IncreasedCastSpeedFasterCasting"] = { + ["1321_LocalEvasionRatingIncreasePercentSuffix"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, }, - ["sign"] = "", }, - ["1693_MineLayingSpeedOnWeapon"] = { - ["specialCaseData"] = { + ["1321_LocalIncreasedEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, }, ["sign"] = "", - }, - ["5302_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3527458221", - ["text"] = "#% to Critical Strike Multiplier if you have Blocked Recently", - }, - ["2HWeapon"] = { - ["min"] = 35, - ["max"] = 45, }, - ["sign"] = "+", }, - ["1142_AddedFireAndColdDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["1323_LocalArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, }, ["Shield"] = { - ["min"] = 17, - ["max"] = 19, - }, - }, - ["1791_ChanceToFreezeForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["max"] = 110, + ["min"] = 26, }, ["sign"] = "", - }, - ["1924_MaximumMinionCount"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_125218179", - ["text"] = "# to maximum number of Spectres", }, - ["sign"] = "+", }, - ["1400_ColdResistanceLeech"] = { - ["specialCaseData"] = { + ["1323_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, }, - ["sign"] = "+", - }, - ["3950_AreaOfEffectIfKilledRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3481736410", - ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, - }, - ["2HWeapon"] = { - ["min"] = 17, - ["max"] = 35, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, - }, - ["2452_EnemiesExplodeOnDeath"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3457687358", - ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", - }, - ["specialCaseData"] = { }, + }, + ["1323_LocalArmourAndEnergyShieldSuffix"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, - }, - ["1153_AddedFireAndLightningDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + }, + ["1323_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, }, ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["max"] = 21, + ["min"] = 12, }, - }, - ["1339_BaseLifeAndMana"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", }, - ["sign"] = "+", }, - ["1692_TrapThrowSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["1324_LocalArmourAndEvasion"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["Belt"] = { - ["min"] = 14, - ["max"] = 16, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, }, - }, - ["4496_EnchantmentElusive"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2662268382", - ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 110, + ["min"] = 26, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, - }, - ["4498_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_720398262", - ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", }, - ["specialCaseData"] = { + }, + ["1324_LocalArmourAndEvasionAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, }, - ["sign"] = "", ["Chest"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, }, ["Helmet"] = { - ["min"] = 10, - ["max"] = 12, + ["max"] = 42, + ["min"] = 6, }, - }, - ["6388_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1766730250", - ["text"] = "You are Immune to Ailments while Focused", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["6391_ImpaleEffect"] = { + ["1324_LocalArmourAndEvasionSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_298173317", - ["text"] = "#% increased Impale Effect", }, - ["2HWeapon"] = { + }, + ["1324_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 28, ["min"] = 12, - ["max"] = 38, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, }, - ["sign"] = "", - ["1HWeapon"] = { + ["Helmet"] = { + ["max"] = 28, ["min"] = 12, - ["max"] = 25, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, }, - }, - ["971_TrapDamageMineSupported"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + }, + }, + ["1325_LocalEvasionAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 26, }, ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["max"] = 74, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 26, }, ["sign"] = "", - }, - ["938_SpellBlockAndBlockUber"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 12, - }, - ["sign"] = "", }, - ["7984_MineDetonationSpeedAndDuration"] = { + ["1325_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3085465082", - ["text"] = "Mines have #% increased Detonation Speed", }, - ["sign"] = "", }, - ["1134_FireDamagePhysConvertedToFire"] = { + ["1325_LocalEvasionAndEnergyShieldSuffix"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", }, - ["sign"] = "", }, - ["7035_LocalItemQuality"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2016708976", - ["text"] = "#% to Quality", - }, - ["specialCaseData"] = { + ["1325_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 21, + ["min"] = 12, }, - ["sign"] = "+", ["Chest"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 21, + ["min"] = 12, }, - }, - ["1219_CastSpeedWhileDualWieldingForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", + ["Gloves"] = { + ["max"] = 21, + ["min"] = 12, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Helmet"] = { + ["max"] = 21, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - }, - ["1000_TwoHandWeaponSpellDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, }, - ["sign"] = "", }, - ["1791_ColdDamageAndBaseChanceToFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["1326_LocalArmourAndEvasionAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 27, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 110, + ["min"] = 27, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 27, }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 27, }, - }, - ["2200_PhysicalDamageTakenAsColdUberMaven"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, }, - ["sign"] = "", }, - ["7079_ChanceToPoisonSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["1326_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, }, - }, - ["2703_BlindOnHitSupported"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, }, - ["sign"] = "", }, - ["1466_EnemyManaLeechPermyriad"] = { + ["1326_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_407390981", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", }, - ["sign"] = "", }, - ["1140_ColdDamageAndBaseChanceToFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["1326_LocalIncreasedDefencesAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, }, - ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, }, - }, - ["4165_GainArmourIfBlockedRecently"] = { + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_4091848539", - ["text"] = "# Armour if you've Blocked Recently", + }, + }, + ["1328_ArmourAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 11, }, ["sign"] = "+", - ["Shield"] = { - ["min"] = 500, - ["max"] = 800, + ["specialCaseData"] = { }, - }, - ["8656_ManaCostTotalChannelled"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2421446548", - ["text"] = "Channelling Skills have # to Total Mana Cost", }, - ["specialCaseData"] = { + }, + ["1328_EnergyShield"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 21, }, - ["sign"] = "-", ["Amulet"] = { - ["min"] = 4, - ["max"] = 4, + ["max"] = 51, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["Belt"] = { + ["max"] = 51, + ["min"] = 1, }, ["Ring"] = { - ["min"] = 4, - ["max"] = 4, + ["max"] = 47, + ["min"] = 1, }, - }, - ["1180_PoisonDamageAddedChaosToSpells"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", }, - ["sign"] = "", }, - ["2985_MovementVelocitySpeed"] = { + ["1328_EnergyShieldAndDegenGracePeriod"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", }, - ["sign"] = "", }, - ["956_Intelligence"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["specialCaseData"] = { - }, + ["1328_EnergyShieldAndPercent"] = { ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 60, - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, }, }, - ["2379_MinimumPowerChargesAndOnKillChance"] = { + ["1328_EnergyShieldAndRegen"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + }, + ["1328_EvasionRatingAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 11, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 11, }, - }, - ["3970_MaximumEnduranceChargesMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2713233613", - ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 10, }, }, - ["8415_PurityOfIceReservation"] = { + ["1328_IncreasedEnergyShieldForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["2768_MinionAreaOfEffect"] = { + ["1329_LocalBaseArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", }, - ["sign"] = "", }, - ["2910_PoisonDamageAndDuration"] = { + ["1329_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["sign"] = "", }, - ["1160_GlobalAddedChaosDamage"] = { - ["specialCaseData"] = { + ["1329_LocalBaseEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["Chest"] = { + ["max"] = 30, + ["min"] = 8, }, ["Gloves"] = { - ["min"] = 18, - ["max"] = 25, + ["max"] = 30, + ["min"] = 8, }, - ["sign"] = "", - }, - ["3213_ChanceToRecoverManaOnSkillUse"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_308309328", - ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", }, - ["sign"] = "", }, - ["1236_GainEnduranceChargeOnCritUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["1329_LocalBaseEnergyShieldAndMana"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 8, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 8, }, - }, - ["1000_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", }, - ["sign"] = "", }, - ["2235_LocalAddedPhysicalDamageAndCausesBleeding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["1329_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 80, + ["min"] = 3, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 40, - ["max"] = 40, + ["Gloves"] = { + ["max"] = 80, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 40, + ["Helmet"] = { + ["max"] = 80, + ["min"] = 3, }, - }, - ["2203_PhysicalDamageTakenAsChaosUberMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, }, - ["sign"] = "", }, - ["938_SpellBlockPercentage"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, - }, + ["1329_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 3, - ["max"] = 4, + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, - ["Helmet"] = { + }, + ["1329_LocalEnergyShield"] = { + ["Boots"] = { + ["max"] = 100, ["min"] = 3, - ["max"] = 6, }, ["Chest"] = { + ["max"] = 100, ["min"] = 3, - ["max"] = 10, }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 3, }, ["Shield"] = { - ["min"] = 4, - ["max"] = 15, + ["max"] = 85, + ["min"] = 3, }, - }, - ["342_MineDamageTrapSupported"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, }, - ["sign"] = "", }, - ["5760_GlobalEvasionRatingPercentOnFullLife"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 50, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_88817332", - ["text"] = "#% increased Global Evasion Rating when on Full Life", + ["132_LocalIncreaseSocketedGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 50, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 25, - ["max"] = 50, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Boots"] = { - ["min"] = 25, - ["max"] = 50, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1597_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, - }, - ["sign"] = "", - }, - ["1000_SpellDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1405_LightningResistance"] = { - ["Quiver"] = { - ["min"] = 6, - ["max"] = 48, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 6, - ["max"] = 48, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", }, - ["Ring"] = { + }, + ["1330_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["Boots"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 48, }, - ["2HWeapon"] = { + ["Chest"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 48, }, - ["1HWeapon"] = { + ["Gloves"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 48, }, - ["Amulet"] = { + ["Helmet"] = { + ["max"] = 42, ["min"] = 6, - ["max"] = 48, }, - }, - ["9097_WarcryAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", + }, + }, + ["1330_LocalEnergyShieldPercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 11, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 11, }, ["Helmet"] = { - ["min"] = 21, - ["max"] = 30, + ["max"] = 100, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 26, }, ["sign"] = "", - }, - ["8412_PurityOfFireReservation"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["1987_LifeReservationEfficiency"] = { + ["1330_LocalEnergyShieldPercentSuffix"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_635485889", - ["text"] = "#% increased Life Reservation Efficiency of Skills", }, - ["sign"] = "", }, - ["339_TrapDamageSupported"] = { - ["specialCaseData"] = { + ["1330_LocalIncreasedEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, }, ["Gloves"] = { - ["min"] = 18, - ["max"] = 25, + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, }, ["sign"] = "", - }, - ["1501_DisplaySupportedByManaLeechMaven"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 30, }, - ["sign"] = "", }, - ["387_DisplaySupportedByManaLeechMaven"] = { + ["1331_ArmourEnergyShieldForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 20, }, - ["sign"] = "", }, - ["5332_OLDAdditionalCurseOnEnemiesMaven"] = { + ["1331_EnergyShieldAndManaForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", - }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 20, }, - ["sign"] = "", }, - ["2926_MovementSpeedDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["1331_EnergyShieldAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", }, - ["sign"] = "", - ["Belt"] = { + }, + ["1331_EnergyShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, ["min"] = 6, - ["max"] = 10, }, - }, - ["1448_EnemyLightningDamageLifeLeechPermyriad"] = { + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", }, - ["sign"] = "", }, - ["258_SupportedByVolleySpeed"] = { + ["1331_EvasionEnergyShieldForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2696557965", - ["text"] = "Socketed Gems are Supported by Level # Volley", }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1331_GlobalEnergyShieldPercent"] = { + ["Amulet"] = { + ["max"] = 22, + ["min"] = 2, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 7, }, ["sign"] = "", - }, - ["1394_FireResistanceAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", }, - ["sign"] = "+", }, - ["1179_SpellAddedLightningDamageHybrid"] = { + ["1331_LifeAndEnergyShieldForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", }, - ["sign"] = "", }, - ["4482_AttackImpaleChanceMaven"] = { - ["specialCaseData"] = { + ["1332_EnergyShieldDelay"] = { + ["Boots"] = { + ["max"] = 66, + ["min"] = 27, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["Chest"] = { + ["max"] = 66, + ["min"] = 16, }, ["Gloves"] = { - ["min"] = 21, + ["max"] = 66, + ["min"] = 27, + }, + ["Helmet"] = { + ["max"] = 66, + ["min"] = 27, + }, + ["Shield"] = { ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["3998_ElementalPenetrationDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", - ["id"] = "explicit.stat_3392890360", - ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", }, - ["sign"] = "", }, - ["4006_AddedFireDamageIfBlockedRecently"] = { + ["1332_EnergyShieldDelayForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", - ["id"] = "explicit.stat_3623716321", - ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", }, - ["sign"] = "", }, - ["1267_CriticalStrikeMultiplierWithBows"] = { + ["1335_EnergyShieldRechargeRateForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 8, + }, + ["1335_EnergyShieldRegeneration"] = { + ["Boots"] = { ["max"] = 38, + ["min"] = 9, }, - }, - ["1788_IgniteChanceAndDamageMaven"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 38, + ["min"] = 24, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["Gloves"] = { + ["max"] = 38, + ["min"] = 9, }, ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["max"] = 38, + ["min"] = 9, }, ["sign"] = "", - }, - ["356_SupportedByCastOnCritWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["1335_EnergyShieldRegenerationPerMinuteMaven"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - }, - ["5299_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1478247313", - ["text"] = "#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", - }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, }, - ["sign"] = "+", }, - ["1533_MinionLifeMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["1338_EnergyShieldRecoveryRate"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 7, }, - ["Helmet"] = { - ["min"] = 36, - ["max"] = 40, + ["Chest"] = { + ["max"] = 15, + ["min"] = 8, }, ["sign"] = "", - }, - ["1352_IncreasedManaAndRegen"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", }, - ["specialCaseData"] = { + }, + ["1338_EnergyShieldRecoveryRateMaven"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5.3, - ["max"] = 5.3, - }, - ["Ring"] = { - ["min"] = 5.3, - ["max"] = 5.3, - }, - }, - ["1581_IncreasedMaximumPowerChargesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "+", }, - ["1795_ChanceToShock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["1339_AbyssJewelLife"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 21, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 21, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", }, }, - ["1354_ManaRegenerationMaven"] = { + ["1339_BaseLifeAndMana"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - }, - ["Helmet"] = { - ["min"] = 56, - ["max"] = 70, }, - ["sign"] = "", }, - ["4814_CannotBeChilledOrFrozenWhileMoving"] = { + ["1339_BaseLifeAndManaDegenGracePeriod"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_628032624", - ["text"] = "Cannot be Chilled or Frozen while moving", }, + }, + ["1339_BaseLifeAndManaRegen"] = { ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 60, + ["min"] = 28, }, - }, - ["1351_BaseManaRegeneration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", + ["Belt"] = { + ["max"] = 60, + ["min"] = 28, }, - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["Boots"] = { + ["max"] = 60, + ["min"] = 28, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 60, + ["min"] = 28, }, - ["2HWeapon"] = { - ["min"] = 0.7, - ["max"] = 0.8, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 28, }, - ["1HWeapon"] = { - ["min"] = 0.3, - ["max"] = 0.4, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 28, }, - ["sign"] = "", - }, - ["5404_ColdResistanceAilments"] = { + ["Ring"] = { + ["max"] = 60, + ["min"] = 28, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", }, - ["sign"] = "", }, - ["7954_MovementSkillsFortifyOnHitChance"] = { - ["specialCaseData"] = { + ["1339_IncreasedLife"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_59547568", - ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["Belt"] = { + ["max"] = 55, + ["min"] = 15, }, - ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 50, + ["Boots"] = { + ["max"] = 96, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 129, + ["min"] = 5, }, - ["sign"] = "", - }, - ["4226_PhysicalDamageReductionDuringFocus"] = { ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["max"] = 96, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3753650187", - ["text"] = "#% additional Physical Damage Reduction while Focused", + ["Helmet"] = { + ["max"] = 106, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 55, + ["min"] = 15, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 13, - ["max"] = 15, + ["Ring"] = { + ["max"] = 55, + ["min"] = 15, }, - }, - ["1795_ShockChanceAndEffectMaven"] = { + ["Shield"] = { + ["max"] = 116, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, }, - ["sign"] = "", }, - ["5111_GlobalChaosGemLevel"] = { + ["1339_IncreasedLifeAndPercent"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_67169579", - ["text"] = "# to Level of all Chaos Skill Gems", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", }, - ["1000_WeaponSpellDamageReducedMana"] = { + ["1339_IncreasedLifeForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", }, - ["sign"] = "", }, - ["1791_FreezeChanceAndDurationMaven"] = { + ["1339_LifeAndManaForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, }, - ["sign"] = "", }, - ["2719_NearbyEnemiesAreBlindedMaven"] = { + ["1339_LifeAndPercentLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", + }, + }, + ["1339_LocalBaseArmourAndLife"] = { + ["Boots"] = { + ["max"] = 38, + ["min"] = 18, }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 38, + ["min"] = 18, }, - }, - ["4043_ElementalDamageTakenWhileStationary"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Helmet"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3859593448", - ["text"] = "#% reduced Elemental Damage Taken while stationary", }, - ["sign"] = "", }, - ["432_DisplaySocketedSkillsFork"] = { + ["1339_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1519665289", - ["text"] = "Projectiles from Socketed Gems Fork", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["3217_TrapAreaOfEffect"] = { + ["1339_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_4050593908", - ["text"] = "Skills used by Traps have #% increased Area of Effect", }, - ["sign"] = "", }, - ["429_SocketedSkillsAttackSpeed"] = { + ["1339_LocalBaseEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Chest"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Helmet"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2881124988", - ["text"] = "Socketed Skills have #% increased Attack Speed", + }, + }, + ["1339_LocalBaseEvasionRatingAndLife"] = { + ["Boots"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Chest"] = { + ["max"] = 38, + ["min"] = 18, }, ["Gloves"] = { + ["max"] = 38, ["min"] = 18, - ["max"] = 18, }, - ["sign"] = "", - }, - ["1644_BurningDamageSupported"] = { + ["Helmet"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, }, - ["sign"] = "", }, - ["1667_StunRecovery"] = { + ["1339_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 28, }, }, - ["1565_MovementVelocityDodge"] = { + ["1339_LocalBaseWardAndLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", }, - ["sign"] = "", }, - ["1443_ColdResistanceLeech"] = { - ["specialCaseData"] = { + ["1339_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["Chest"] = { + ["max"] = 26, + ["min"] = 13, }, - ["sign"] = "", - }, - ["1575_MinimumFrenzyCharges"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["sign"] = "+", ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["max"] = 16, + ["min"] = 10, }, - }, - ["5894_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 8, }, - ["sign"] = "", }, - ["5751_LifeRegenerationPerEvasionDuringFocus"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3244118730", - ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["1339_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, }, ["Chest"] = { - ["min"] = 1.5, - ["max"] = 1.5, - }, - ["sign"] = "", - }, - ["4044_PhysicalDamageReductionWhileNotMoving"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", + ["max"] = 26, + ["min"] = 13, }, - ["sign"] = "", - }, - ["1151_LightningDamagePrefixLightningPenetration"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, }, - ["sign"] = "", - }, - ["4238_AdditionalPhysicalDamageReductionWhileMoving"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2713357573", - ["text"] = "#% additional Physical Damage Reduction while moving", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 3, - ["max"] = 5, }, }, - ["1612_ChanceToAvoidFreezeAndChill"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["1339_LocalIncreasedArmourAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Chest"] = { + ["max"] = 26, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 26, + ["min"] = 8, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, }, - }, - ["1451_EnemyChaosDamageLifeLeechPermyriad"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_334180828", - ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", }, - ["sign"] = "", }, - ["1698_ConvertPhysicalToColdMaven"] = { + ["1339_LocalIncreasedDefencesAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 26, + ["min"] = 13, + }, ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1196_DaggerAttackSpeedForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + }, + ["1339_LocalIncreasedEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Chest"] = { + ["max"] = 26, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 26, + ["min"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["1177_SpellAddedFireDamagePenetrationHybrid"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", }, - ["specialCaseData"] = { + }, + ["1339_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 38.5, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, }, - ["2HWeapon"] = { - ["min"] = 12.5, - ["max"] = 52, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, }, - }, - ["2737_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, }, - ["sign"] = "", }, - ["1151_LightningDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["1339_LocalIncreasedEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 26, + ["min"] = 8, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["Chest"] = { + ["max"] = 26, + ["min"] = 13, }, - ["Amulet"] = { - ["min"] = 3, + ["Gloves"] = { ["max"] = 26, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 26, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["1349_ManaAndManaCostPercent"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, + }, + ["1341_IncreasedLifeAndPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, - }, - ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", }, }, - ["5458_DecayOnHit"] = { + ["1341_LifeAndEnergyShieldForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3322709337", - ["text"] = "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", }, }, - ["4442_AddedLightningDamagePerIntelligence"] = { + ["1341_LifeAndPercentLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", }, - ["specialCaseData"] = { + }, + ["1341_MaximumLifeIncreasePercent"] = { + ["Belt"] = { + ["max"] = 10, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 4.5, + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, }, - ["1HWeapon"] = { + ["Shield"] = { + ["max"] = 10, ["min"] = 3, - ["max"] = 3.5, }, ["sign"] = "", - }, - ["7995_ColdDamageToAttacksPerDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_769783486", - ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", }, - ["sign"] = "", }, - ["1178_SpellAddedColdDamage"] = { + ["1341_PercentIncreasedLifeForJewel"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", }, - ["1HWeapon"] = { - ["min"] = 1.5, - ["max"] = 73.5, + }, + ["1341_PercentageLifeAndMana"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["1366_ItemFoundRarityIncreasePrefix"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 18, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 24, - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 28, }, + }, + ["1341_PercentageLifeAndManaForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1344_BaseManaAndLifeRegen"] = { ["Amulet"] = { - ["min"] = 8, - ["max"] = 28, + ["max"] = 33.3, + ["min"] = 15, + }, + ["Belt"] = { + ["max"] = 33.3, + ["min"] = 15, }, ["Boots"] = { - ["min"] = 8, - ["max"] = 18, + ["max"] = 33.3, + ["min"] = 15, }, - }, - ["2286_MeleeDamageAndMeleeRange"] = { ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, + ["max"] = 33.3, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", + ["Helmet"] = { + ["max"] = 33.3, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 33.3, + ["min"] = 15, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["Ring"] = { + ["max"] = 33.3, + ["min"] = 15, }, - }, - ["7909_FortifyEffectWhileFocused"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_922014346", - ["text"] = "# to maximum Fortification while Focused", + }, + }, + ["1344_LifeRegeneration"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 64, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 9, }, ["Chest"] = { - ["min"] = 10, - ["max"] = 10, + ["max"] = 176, + ["min"] = 128.1, }, - ["sign"] = "+", - }, - ["2200_PhysicalDamageTakenAsColdUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["Ring"] = { + ["max"] = 64, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 152, + ["min"] = 128.1, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", }, }, - ["2591_FishingPoolConsumption"] = { + ["1344_LifeRegenerationAndPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_1550221644", - ["text"] = "#% reduced Fishing Pool Consumption", }, - ["sign"] = "", }, - ["1647_AreaOfEffectSupported"] = { + ["1345_BaseManaAndLifeDegenGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 15, }, - ["sign"] = "", }, - ["1699_PhysicalAddedAsLightning"] = { - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 20, + ["1345_LifeDegenerationAndPercentGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 30, + }, + ["1345_LifeDegenerationGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { + ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, + ["1347_LifeRegenerationRate"] = { + ["Boots"] = { + ["max"] = 21, ["min"] = 5, - ["max"] = 15, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 21, + ["min"] = 9, }, - ["sign"] = "", - ["Amulet"] = { + ["Gloves"] = { + ["max"] = 21, ["min"] = 5, - ["max"] = 15, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["Helmet"] = { + ["max"] = 21, + ["min"] = 5, }, - }, - ["5020_CrushOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", - ["id"] = "explicit.stat_2228892313", - ["text"] = "#% chance to Crush on Hit", }, - ["sign"] = "", }, - ["6987_CullingStrikeOnBleedingEnemiesUber"] = { + ["1348_LifeRecoveryRate"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_2558253923", - ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1348_LifeRecoveryRateMaven"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 12, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["147_LocalIncreaseSocketedMeleeGemLevel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + }, + ["1349_AbyssJewelMana"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 21, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 21, }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 2, - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, - }, - }, - ["2252_LightRadiusAndAccuracy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", }, - ["sign"] = "", }, - ["4549_FireDamageESLeech"] = { + ["1349_BaseLifeAndMana"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_3885409671", - ["text"] = "#% of Fire Damage Leeched as Energy Shield", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, }, - ["sign"] = "", }, - ["9238_CallToArms"] = { + ["1349_BaseManaAndLifeDegenGracePeriod"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_3292262540", - ["text"] = "Call to Arms", }, }, - ["1627_IncreasedAilmentDurationMaven"] = { - ["specialCaseData"] = { + ["1349_BaseManaAndLifeRegen"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", + ["Belt"] = { + ["max"] = 60, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 60, + ["min"] = 28, }, ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["max"] = 60, + ["min"] = 28, }, - ["sign"] = "", - }, - ["371_SupportedByFortifyWeapon"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 28, + }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 28, + }, + ["Ring"] = { + ["max"] = 60, + ["min"] = 28, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + }, + }, + ["1349_IncreasedMana"] = { + ["1HAxe"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["1HMace"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["1HWeapon"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["2HMace"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["2HSword"] = { + ["max"] = 94, + ["min"] = 55, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 229, + ["min"] = 40, }, - ["sign"] = "", - }, - ["953_AllAttributesForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["Amulet"] = { + ["max"] = 78, + ["min"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Belt"] = { + ["max"] = 68, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 77, + ["min"] = 15, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Bow"] = { + ["max"] = 74, + ["min"] = 35, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Chest"] = { + ["max"] = 77, + ["min"] = 15, }, - }, - ["1349_IncreasedManaAndOnHit"] = { + ["Claw"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["Dagger"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 77, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 77, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 78, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 229, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", ["id"] = "explicit.stat_1050105434", ["text"] = "# to maximum Mana", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["420_DisplaySupportedSkillsDealDamageOnLowLife"] = { + ["1349_IncreasedManaAndBaseCost"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1235873320", - ["text"] = "Socketed Gems deal #% more Damage while on Low Life", }, - ["sign"] = "", }, - ["6975_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["1349_IncreasedManaAndCost"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_768124628", - ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", }, - ["sign"] = "", }, - ["1218_IncreasedCastSpeedForJewel"] = { + ["1349_IncreasedManaAndCostNew"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, }, + }, + ["1349_IncreasedManaAndDegenGracePeriod"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 4, - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", }, }, - ["2490_FlaskEffect"] = { + ["1349_IncreasedManaAndOnHit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 4, - ["max"] = 12, }, }, - ["169_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["1349_IncreasedManaAndPercent"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["1349_IncreasedManaAndRegen"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 26, }, ["sign"] = "+", - }, - ["4317_AreaOfEffectPerEnduranceCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, }, - ["sign"] = "", }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["1349_IncreasedManaAndReservation"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_150668988", - ["text"] = "# to Level of Socketed Trap or Mine Gems", }, - ["sign"] = "+", }, - ["279_SupportedBySpellCascadeArea"] = { + ["1349_IncreasedManaForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_503990161", - ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, }, - ["sign"] = "", }, - ["1862_AddedLightningDamageWithMaces"] = { + ["1349_LifeAndManaForJewel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2096159630", - ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + }, + ["1349_LocalBaseEnergyShieldAndMana"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 11, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Chest"] = { + ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 11, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", }, }, - ["1600_FrenzyChargeOnHitChanceMaven"] = { + ["1349_ManaAndDamageTakenGoesToManaPercent"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", - }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 10, }, - ["sign"] = "", }, - ["1010_MeleeDamageAndMeleeRange"] = { - ["Gloves"] = { - ["min"] = 13, - ["max"] = 16, + ["1349_ManaAndManaCostPercent"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", }, - ["specialCaseData"] = { + }, + ["1349_MinionDamageOnWeaponAndMana"] = { + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 17, }, - ["sign"] = "", - ["Amulet"] = { + ["Wand"] = { + ["max"] = 45, ["min"] = 17, - ["max"] = 20, }, - }, - ["2592_FishingLureType"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_3360430812", - ["text"] = "Rhoa Feather Lure", }, }, - ["5259_CriticalChanceIncreasedByUncappedLightningResistance"] = { + ["1349_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 64, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 64, + ["min"] = 26, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2478752719", - ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", }, }, - ["4309_CullingStrikeMaven"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 25, + ["1349_WeaponSpellDamageAndMana"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1785568076", - ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 17, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 45, + ["min"] = 17, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["Wand"] = { + ["max"] = 45, + ["min"] = 17, }, - }, - ["1801_CullingStrikeMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1580_MinimumPowerChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1439_FireResistanceEnemyLeech"] = { + ["1350_EnergyShieldAndManaForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", }, - ["sign"] = "", }, - ["1571_MaximumEnduranceChargesMaven"] = { + ["1350_IncreasedManaAndPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1010_MeleeDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, + ["1350_MaximumManaIncreasePercent"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["Helmet"] = { + ["max"] = 18, + ["min"] = 9, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, - }, - }, - ["3296_ElementalDamagePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_697807915", - ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", }, + }, + ["1350_MaximumManaIncreasePercentMaven"] = { ["Helmet"] = { - ["min"] = 2, - ["max"] = 3, + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - }, - ["1236_CriticalStrikeChanceSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", }, - ["specialCaseData"] = { + }, + ["1350_MaximumManaIncreaseShaper"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 9, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 22, - ["max"] = 29, - }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, - }, - }, - ["1331_ArmourEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "", }, - ["8186_NonChaosAddedAsChaos"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["1350_PercentIncreasedManaForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["1177_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", }, - ["sign"] = "", }, - ["2015_AdditionalTotems"] = { + ["1350_PercentageLifeAndMana"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_429867172", - ["text"] = "# to maximum number of Summoned Totems", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["9258_LetheShade"] = { + ["1350_PercentageLifeAndManaForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1678358883", - ["text"] = "Lethe Shade", }, }, - ["1400_ColdResistancePrefix"] = { + ["1351_BaseManaRegeneration"] = { + ["1HMace"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["1HWeapon"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["2HWeapon"] = { + ["max"] = 0.8, + ["min"] = 0.7, + }, + ["Dagger"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["Helmet"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Staff"] = { + ["max"] = 0.8, + ["min"] = 0.7, + }, + ["Wand"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", }, - ["sign"] = "+", }, - ["1132_SelfFireAndColdDamageTaken"] = { - ["specialCaseData"] = { + ["1352_AddedManaRegeneration"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 1.1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 1.1, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 3, }, ["sign"] = "", - }, - ["430_SocketedSkillsCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3425934849", - ["text"] = "Socketed Skills have #% increased Cast Speed", }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 18, + }, + ["1352_AddedManaRegenerationMaven"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - }, - ["7971_MeleeWeaponRangeIfKilledRecently"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3255961830", - ["text"] = "# to Melee Strike Range if you have Killed Recently", - }, - ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { + }, + ["1352_BaseLifeAndManaRegen"] = { + ["Amulet"] = { + ["max"] = 5.3, ["min"] = 2, - ["max"] = 3, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["Belt"] = { + ["max"] = 5.3, + ["min"] = 2, }, - }, - ["2316_FasterIgniteDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["Boots"] = { + ["max"] = 5.3, + ["min"] = 2, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 5.3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 25, + ["Helmet"] = { + ["max"] = 5.3, + ["min"] = 2, }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, + ["Quiver"] = { + ["max"] = 5.3, + ["min"] = 2, }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["Ring"] = { + ["max"] = 5.3, + ["min"] = 2, }, - }, - ["923_ChanceToSuppressSpellsMavenOld"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 16, - ["max"] = 18, }, }, - ["2758_IncreasedDamagePerCurse"] = { - ["specialCaseData"] = { + ["1352_IncreasedManaAndRegen"] = { + ["Amulet"] = { + ["max"] = 5.3, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1818773442", - ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["Ring"] = { + ["max"] = 5.3, + ["min"] = 2, }, ["sign"] = "", - }, - ["1563_ProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 46, }, }, - ["2803_RecoverLifePercentOnBlock"] = { + ["1353_BaseLifeAndManaDegenGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, }, }, - ["1260_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["1353_IncreasedManaAndDegenGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, }, - ["sign"] = "+", }, - ["245_LightningDamagePrefixLightningPenetration"] = { + ["1353_ManaDegenerationGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3354027870", - ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["sign"] = "", }, - ["360_IncreasedAccuracyPercentSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["1354_IncreasedManaRegenForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - }, - ["2233_CausesBleeding25PercentChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", }, - ["sign"] = "", }, - ["3115_ColdDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["1354_ManaRegeneration"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 69, + ["min"] = 10, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 10, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 10, }, - }, - ["2246_AddedPhysicalDamageVsBleedingEnemies"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1244003614", - ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", + ["2HMace"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 14.5, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 20, }, - ["sign"] = "", - }, - ["1993_IncreasedManaAndReservation"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["Amulet"] = { + ["max"] = 76, + ["min"] = 10, }, - ["sign"] = "", - }, - ["4279_AngerReservation"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 40, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["Claw"] = { + ["max"] = 69, + ["min"] = 10, }, - ["sign"] = "", - }, - ["3301_ChanceForDoubleStunDuration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", + ["Dagger"] = { + ["max"] = 69, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 70, + ["min"] = 41, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 25, + ["Ring"] = { + ["max"] = 76, + ["min"] = 10, }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Shield"] = { + ["max"] = 76, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 10, }, ["sign"] = "", - }, - ["1349_BaseManaAndLifeDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["3032_OnslaughtEffect"] = { + ["1354_ManaRegenerationMaven"] = { + ["Helmet"] = { + ["max"] = 70, + ["min"] = 56, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", }, - ["sign"] = "", }, - ["4532_BleedChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["1354_SpellDamageAndManaRegenerationRate"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 7, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 7, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["919_BlockPercentMaven"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["2HMace"] = { + ["max"] = 40, + ["min"] = 16, }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 7, }, ["sign"] = "", - }, - ["424_SocketedGemsDealAdditionalFireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1289910726", - ["text"] = "Socketed Gems deal # to # Added Fire Damage", }, - ["sign"] = "", }, - ["1321_LocalEvasionRatingIncreasePercentSuffix"] = { - ["specialCaseData"] = { + ["1356_ManaRecoveryRate"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["Belt"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 8, }, ["sign"] = "", - }, - ["1140_ColdDamagePrefixColdPenetration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + }, + ["1356_ManaRecoveryRateMaven"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - }, - ["214_ElementalDamagePrefixElementalFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", ["type"] = "explicit", - ["id"] = "explicit.stat_1169422227", - ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1362_ItemFoundQuantityIncrease"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 4, }, ["sign"] = "", - }, - ["1159_LocalChanceToPoisonOnHitChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", }, - ["sign"] = "", }, - ["1352_AddedManaRegenerationMaven"] = { - ["specialCaseData"] = { + ["1366_ItemFoundRarityIncrease"] = { + ["Amulet"] = { + ["max"] = 26, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", + ["Boots"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 6, }, ["Helmet"] = { + ["max"] = 26, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 26, ["min"] = 6, - ["max"] = 8, }, ["sign"] = "", - }, - ["1708_LifeDegenerationAndPercentGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", - ["id"] = "explicit.stat_1661347488", - ["text"] = "Lose #% of Life per second", }, - ["sign"] = "", }, - ["1888_EnduranceChargeOnKillChanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["1366_ItemFoundRarityIncreasePrefix"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 8, }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["Boots"] = { + ["max"] = 18, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 8, }, - ["Boots"] = { - ["min"] = 50, - ["max"] = 50, + ["Ring"] = { + ["max"] = 28, + ["min"] = 8, }, - }, - ["1141_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", }, - ["sign"] = "", }, - ["3147_CriticalChanceAgainstBlindedEnemies"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1939202111", - ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", + ["1366_ItemRarityForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["3114_FireDamageAvoidanceMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", }, - ["specialCaseData"] = { + }, + ["1373_ExperienceIncrease"] = { + ["Ring"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 10, - }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, - }, - }, - ["1313_LocalPhysicalDamageReductionRatingPercentSuffix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", }, - ["sign"] = "", }, - ["1644_BurnDamagePrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["specialCaseData"] = { + ["1378_GlobalIncreaseSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 100, - ["max"] = 134, + ["max"] = 2, + ["min"] = 1, }, - }, - ["8829_GlobalStrengthGemLevel"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2339012908", - ["text"] = "# to Level of all Strength Skill Gems", }, - ["sign"] = "+", }, - ["1443_ColdDamageLifeLeechPermyriad"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["1379_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["3813_DamageDuringFlaskEffect"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", - }, - ["Gloves"] = { - ["min"] = 36, - ["max"] = 40, }, - ["sign"] = "", }, - ["2921_PoisonDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["137_LocalIncreaseSocketedFireGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, }, - ["AnyJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["1925_MaximumMinionCount"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["137_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "+", - }, - ["9279_VersatileCombatant"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_593845252", - ["text"] = "Versatile Combatant", }, }, - ["2203_PhysicalDamageTakenAsChaosUber"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["1380_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 0.5, - ["max"] = 2, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - }, - ["1530_ManaGainedFromEnemyDeath"] = { - ["Gloves"] = { + ["Staff"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 6, }, - ["Quiver"] = { + ["Wand"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 6, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", }, - ["Ring"] = { + }, + ["1381_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 6, }, ["2HWeapon"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 6, }, - ["1HWeapon"] = { + ["Dagger"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 6, }, - ["Amulet"] = { + ["Shield"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 6, }, - }, - ["1642_ReducedBurnDuration"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1131_FireDamageWeaponPrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["specialCaseData"] = { + }, + ["1382_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1339_BaseLifeAndManaDegenGracePeriod"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - }, - ["1180_IncreasedCastSpeedAddedChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", }, - ["sign"] = "", }, - ["1405_LightningResistanceAilments"] = { - ["specialCaseData"] = { + ["1383_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - }, - ["425_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1859937391", - ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", }, - ["sign"] = "", }, - ["1140_ColdDamageWeaponPrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["1384_GlobalIncreaseMinionSpellSkillGemLevel"] = { ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1888_EnduranceChargeDurationForJewel"] = { + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", }, - ["sign"] = "", }, - ["2682_PhysicalDamageAddedAsRandomElement"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["1386_MinionGlobalSkillLevel"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["8530_RemoveFreezeOnFlaskUse"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3235814433", + ["text"] = "# to Level of all Raise Spectre Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", + }, + }, + ["1388_AllResistances"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, }, ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 18, + ["min"] = 10, }, - }, - ["1320_GlobalEvasionRatingPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["Chest"] = { + ["max"] = 18, + ["min"] = 10, }, ["Ring"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["specialCaseData"] = { + ["max"] = 16, + ["min"] = 3, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 36, + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 15, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["1281_ElementalCritMultiplierForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_1569407745", - ["text"] = "#% to Critical Strike Multiplier with Elemental Skills", }, + }, + ["1388_AllResistancesForJewel"] = { ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["max"] = 10, + ["min"] = 8, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["max"] = 10, + ["min"] = 8, }, - }, - ["7999_AddedFireDamageIfCritRecently"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_3144358296", - ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", }, - ["Gloves"] = { + }, + ["1388_AllResistancesMaven"] = { + ["Belt"] = { + ["max"] = 22, ["min"] = 19, - ["max"] = 37.5, }, - ["sign"] = "", - }, - ["4002_NearbyEnemiesChilledOnBlock"] = { + ["Chest"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_583277599", - ["text"] = "Chill Nearby Enemies when you Block", }, }, - ["139_LocalIncreaseSocketedLightningGemLevelMaven"] = { - ["specialCaseData"] = { + ["1388_AllResistancesMinionResistances"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["Ring"] = { + ["max"] = 9, + ["min"] = 4, }, ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, - }, - }, - ["2392_EnergyShieldRegenerationPerMinute"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", }, - ["Chest"] = { + }, + ["138_LocalIncreaseSocketedColdGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { + ["2HWeapon"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, }, ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 2, + ["min"] = 2, }, - }, - ["1394_FireResistanceEnemyLeech"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, }, ["sign"] = "+", - }, - ["8007_LightningDamageToAttacksPerIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3168149399", - ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", }, - ["sign"] = "", }, - ["4347_FortifyEffectMaven"] = { + ["138_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_153004860", - ["text"] = "# to Armour while Fortified", - }, - ["Helmet"] = { - ["min"] = 500, - ["max"] = 500, }, - ["sign"] = "+", }, - ["1560_AdditionalArrows"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", - }, - ["Quiver"] = { + ["1392_MaximumFireResist"] = { + ["Boots"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, - ["2HWeapon"] = { + ["Shield"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 2, }, - ["sign"] = "", - }, - ["1218_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, }, - ["sign"] = "", }, - ["8275_SpiritAndPhantasmRefreshOnUnique"] = { + ["1394_FireDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_1146215018", - ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Unique Enemy", }, - ["sign"] = "", }, - ["1570_MinimumEnduranceChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["1394_FireResistance"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 6, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["max"] = 48, + ["min"] = 6, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 6, }, - }, - ["365_CriticalStrikeMultiplierSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 6, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 6, }, ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["max"] = 48, + ["min"] = 6, }, - }, - ["9234_AncestralBond"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 48, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2648570028", - ["text"] = "Ancestral Bond", + ["Belt"] = { + ["max"] = 48, + ["min"] = 6, }, - }, - ["1025_PhysicalDamageOverTimeMultiplierWithAttacks"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_709768359", - ["text"] = "#% to Physical Damage over Time Multiplier with Attack Skills", + ["Bow"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 48, + ["min"] = 12, + }, + ["Claw"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 48, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 48, + ["min"] = 12, }, - ["sign"] = "+", ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 48, + ["min"] = 6, }, - }, - ["1405_LightningResistancePrefix"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 48, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["Shield"] = { + ["max"] = 48, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 48, + ["min"] = 6, }, ["sign"] = "+", - }, - ["5253_LightningResistanceAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", }, - ["sign"] = "", }, - ["1996_FlatPhysicalDamageTaken"] = { + ["1394_FireResistanceAilments"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_321765853", - ["text"] = "# Physical Damage taken from Hits", - }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 50, }, - ["sign"] = "-", }, - ["3137_NearbyEnemiesAreBlinded"] = { + ["1394_FireResistanceEnemyLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["3212_ChanceToLoseManaOnSkillUse"] = { + ["1394_FireResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2858930612", - ["text"] = "#% chance to lose 10% of Mana when you use a Skill", }, - ["sign"] = "", }, - ["4003_SelfColdDamageTakenPerFrenzy"] = { + ["1394_FireResistanceLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_178386603", - ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", }, - ["sign"] = "", }, - ["235_BurningDamageSupported"] = { + ["1394_FireResistancePhysTakenAsFire"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2680613507", - ["text"] = "Socketed Gems are Supported by Level # Burning Damage", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, }, - ["sign"] = "", }, - ["2956_AttackSpeedWithFortify"] = { + ["1394_FireResistancePrefix"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_122450405", - ["text"] = "#% increased Attack Speed while Fortified", }, - ["specialCaseData"] = { + }, + ["1398_MaximumColdResist"] = { + ["Gloves"] = { + ["max"] = 3, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 25, + ["sign"] = "+", + ["specialCaseData"] = { }, - }, - ["4439_AddedFireDamagePerStrength"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", }, - ["specialCaseData"] = { + }, + ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["max"] = 2, + ["min"] = 1, }, - ["1HWeapon"] = { + ["Boots"] = { + ["max"] = 2, ["min"] = 2, - ["max"] = 3, }, - ["sign"] = "", - }, - ["9050_VaalSoulCost"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_678245679", - ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 40, - }, - }, - ["7994_AddedColdDamageIfCritRecently"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3370223014", - ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", - }, - ["Gloves"] = { - ["min"] = 19, - ["max"] = 37.5, }, - ["sign"] = "", }, - ["1161_ChaosDamage"] = { + ["139_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 41, - ["max"] = 55, }, }, - ["158_LocalIncreaseSocketedActiveSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_524797741", - ["text"] = "# to Level of Socketed Active Skill Gems", + ["1400_ColdDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "+", - }, - ["3961_FlaskChanceToNotConsumeCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", }, - ["sign"] = "", }, - ["1853_AddedColdDamageWithDaggers"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1263342750", - ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["1400_ColdResistance"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 6, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["1HMace"] = { + ["max"] = 48, + ["min"] = 6, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["max"] = 48, + ["min"] = 6, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 6, }, - }, - ["6070_ChanceToFreezeAddedDamage"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 48, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2233361223", - ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["2HSword"] = { + ["max"] = 48, + ["min"] = 6, }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 37, + ["2HWeapon"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", - }, - ["1000_WeaponSpellDamageAddedAsChaos"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 48, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["Belt"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", - }, - ["3999_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 48, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2693266036", - ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["Bow"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", - }, - ["3102_WrathAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", + ["Chest"] = { + ["max"] = 48, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 48, + ["min"] = 6, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 6, }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["Gloves"] = { + ["max"] = 48, + ["min"] = 6, }, - }, - ["1143_ColdDamagePhysConvertedToCold"] = { + ["Helmet"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", }, - ["sign"] = "", }, - ["1623_ChillingConfluxMaven"] = { + ["1400_ColdResistanceAilments"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, }, - ["sign"] = "", }, - ["9090_WarcryEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - }, + ["1400_ColdResistanceEnemyLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 25, - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 18, - ["max"] = 25, - }, - }, - ["3505_MinionAddedColdDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3152982863", - ["text"] = "Minions deal # to # additional Cold Damage", }, + }, + ["1400_ColdResistanceForJewel"] = { ["AbyssJewel"] = { - ["min"] = 5.5, - ["max"] = 43, - }, - ["specialCaseData"] = { + ["max"] = 15, + ["min"] = 12, }, - ["sign"] = "", ["AnyJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + ["max"] = 15, + ["min"] = 12, }, - }, - ["1923_MaximumMinionCount"] = { + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", }, - ["9263_PainAttunement"] = { + ["1400_ColdResistanceLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_98977150", - ["text"] = "Pain Attunement", }, }, - ["4532_BleedDuration"] = { + ["1400_ColdResistancePhysTakenAsCold"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", }, - ["sign"] = "", }, - ["1823_ManaRecoveryRateMaven"] = { + ["1400_ColdResistancePrefix"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, }, - ["sign"] = "", }, - ["922_SpellDamageSuppressed"] = { + ["1403_MaximumLightningResistance"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_4116705863", - ["text"] = "Prevent #% of Suppressed Spell Damage", }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + }, + ["1405_LightningDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "+", - }, - ["1354_ManaRegeneration"] = { ["specialCaseData"] = { }, - ["sign"] = "", ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + }, + }, + ["1405_LightningResistance"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 48, + ["min"] = 6, }, ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 69, + ["max"] = 48, + ["min"] = 6, }, - ["Helmet"] = { - ["min"] = 41, - ["max"] = 70, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 6, }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 69, + ["2HMace"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 6, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 69, + ["max"] = 48, + ["min"] = 6, }, ["Amulet"] = { - ["min"] = 10, - ["max"] = 69, + ["max"] = 48, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 48, + ["min"] = 16, + }, + ["Bow"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 48, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 48, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 48, + ["min"] = 16, + }, + ["Quiver"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 48, + ["min"] = 6, }, ["Shield"] = { - ["min"] = 10, - ["max"] = 69, + ["max"] = 48, + ["min"] = 16, }, - }, - ["199_SupportedByCastOnMeleeKillWeapon"] = { + ["Staff"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3312593243", - ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, }, - ["sign"] = "", }, - ["5270_GainAccuracyEqualToStrengthMaven"] = { + ["1405_LightningResistanceAilments"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2511370818", - ["text"] = "#% increased Critical Strike Chance per 10 Strength", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "", }, - ["1439_EnemyFireDamageLifeLeechPermyriad"] = { + ["1405_LightningResistanceEnemyLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", }, - ["sign"] = "", }, - ["1260_CriticalMultiplierSupportedTwoHanded"] = { - ["specialCaseData"] = { + ["1405_LightningResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "+", - }, - ["5151_ColdAilmentDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3571964448", - ["text"] = "#% increased Duration of Cold Ailments", }, - ["sign"] = "", }, - ["7069_ChanceToMaimSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - }, + ["1405_LightningResistanceLeech"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", }, }, - ["973_MineDamageSupported"] = { + ["1405_LightningResistancePhysTakenAsLightning"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, }, - ["sign"] = "", }, - ["4829_CannotBeShockedOrIgnitedWhileMoving"] = { + ["1405_LightningResistancePrefix"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3592330380", - ["text"] = "Cannot be Shocked or Ignited while moving", }, - ["Ring"] = { + }, + ["1408_MaximumChaosResistance"] = { + ["Shield"] = { + ["max"] = 3, ["min"] = 1, - ["max"] = 1, }, - }, - ["963_PercentageIntelligence"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 12, + }, + ["1408_PhysicalDamageTakenAsChaosUberMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1409_ChaosResistance"] = { + ["1HAxe"] = { + ["max"] = 35, ["min"] = 5, - ["max"] = 12, }, - ["Chest"] = { + ["1HMace"] = { + ["max"] = 35, ["min"] = 5, - ["max"] = 12, }, - }, - ["4504_ChanceToAvoidProjectilesMaven"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 35, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3114696875", - ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 5, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["max"] = 35, + ["min"] = 21, }, - }, - ["1613_AvoidIgnite"] = { - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Bow"] = { + ["max"] = 35, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["Chest"] = { + ["max"] = 35, + ["min"] = 21, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Claw"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 21, }, ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + ["max"] = 35, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 35, + ["min"] = 5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Shield"] = { + ["max"] = 35, + ["min"] = 21, }, - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["Staff"] = { + ["max"] = 35, + ["min"] = 5, }, - }, - ["2216_BlockVsProjectiles"] = { + ["Wand"] = { + ["max"] = 35, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3416410609", - ["text"] = "#% chance to Block Projectile Attack Damage", }, - ["sign"] = "+", }, - ["9212_ZealotryAuraEffect"] = { + ["1409_ChaosResistanceDamageOverTime"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", }, - ["specialCaseData"] = { + }, + ["1409_ChaosResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - }, - ["5266_ReducedShockEffectOnSelfMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_1434381067", - ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", - }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 75, }, - ["sign"] = "", }, - ["8043_AbyssMinionIgniteOnHitChance"] = { + ["1409_ChaosResistancePrefix"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", - ["id"] = "explicit.stat_3945908658", - ["text"] = "Minions have #% chance to Ignite", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + }, + ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["269_TotemSpeedAttackSupported"] = { + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", }, - ["sign"] = "", + }, + ["140_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["max"] = 2, + ["min"] = 2, }, - }, - ["1565_MovementVelocityAndOnslaughtOnKill"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 25, - ["max"] = 30, }, }, - ["2260_ManaRegenerationWhileShocked"] = { + ["1410_MaximumResistances"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_2076519255", - ["text"] = "#% increased Mana Regeneration Rate while Shocked", }, - ["sign"] = "", }, - ["1597_CriticalMultiplierSupportedTwoHanded"] = { + ["1411_AllResistancesMaven"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all maximum Elemental Resistances", ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + }, + ["1413_ChillEffectivenessOnSelf"] = { + ["AnyJewel"] = { + ["max"] = 35, + ["min"] = 30, + }, + ["BaseJewel"] = { + ["max"] = 35, + ["min"] = 30, + }, + ["Ring"] = { + ["max"] = 60, + ["min"] = 41, }, ["sign"] = "", - }, - ["1151_LightningDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", }, - ["sign"] = "", }, - ["1331_GlobalEnergyShieldPercent"] = { + ["1415_LifeLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, }, + }, + ["1416_EnemyLifeLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1417_LifeLeechPermyriad"] = { ["Amulet"] = { - ["min"] = 2, - ["max"] = 22, + ["max"] = 1.2, + ["min"] = 0.2, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 15, + ["Gloves"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["Quiver"] = { + ["max"] = 1.3, + ["min"] = 0.2, + }, + ["Ring"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", }, - ["specialCaseData"] = { + }, + ["1417_LifeLeechPermyriadForJewel"] = { + ["AnyJewel"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["BaseJewel"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1758_ProjectileDamageForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + }, + ["1419_LifeLeechLocalPermyriad"] = { + ["1HAxe"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["1HSword"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["1HWeapon"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - }, - ["4541_GlobalCooldownRecovery"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["2HAxe"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["2HMace"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["2HSword"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, + ["Bow"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - ["Boots"] = { - ["min"] = 6, - ["max"] = 20, + ["Claw"] = { + ["max"] = 1.3, + ["min"] = 0.2, }, - }, - ["603_TriggerOnRarePoachersMark"] = { + ["Dagger"] = { + ["max"] = 1.3, + ["min"] = 0.2, + }, + ["Staff"] = { + ["max"] = 1.3, + ["min"] = 0.2, + }, + ["Wand"] = { + ["max"] = 1.3, + ["min"] = 0.2, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", }, ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "", }, - ["415_SocketedAttackCriticalStrikeChance"] = { + ["1419_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1HAxe"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["1HSword"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["1HWeapon"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HAxe"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HSword"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HWeapon"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", }, ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_2867348718", - ["text"] = "Socketed Attacks have #% to Critical Strike Chance", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 4, }, - ["sign"] = "+", }, - ["5821_PhysicalDamageTakenAsFireUberMaven"] = { + ["142_LocalIncreaseSocketedSpellGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_446733281", + ["text"] = "# to Level of Socketed Spell Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 10, + }, + ["1432_LifeLeechFromAttacksPermyriad"] = { + ["AbyssJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["AnyJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["BaseJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, ["sign"] = "", - }, - ["4317_EnduranceChargeIfHitRecentlyMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 3, + }, + ["1434_PhysicalDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.3, + }, + ["Ring"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1349_IncreasedManaAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", }, - ["sign"] = "+", }, - ["4573_PhysicalDamageOverTimeTaken"] = { + ["1435_EnemyPhysicalDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_511024200", - ["text"] = "#% reduced Physical Damage taken over time", }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 2, + }, + ["1438_FireDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 2, - }, - }, - ["5041_FortifyOnMeleeStun"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, }, }, - ["6430_GlobalIntelligenceGemLevel"] = { + ["1438_FireResistanceLeech"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_493812998", - ["text"] = "# to Level of all Intelligence Skill Gems", }, - ["sign"] = "+", }, - ["1647_SupportedBySpiritStrikeArea"] = { + ["1439_EnemyFireDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 15, }, }, - ["5404_DamageChilledEnemies"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", - }, + ["1439_FireResistanceEnemyLeech"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 26, - ["max"] = 40, - }, - }, - ["2914_AbyssMinionPoisonOnHitChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, - }, - ["2379_PowerChargeOnKillChanceMaven"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 15, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 15, - }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 15, }, }, - ["2033_ReducedPhysicalDamageTaken"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 8, - }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["1443_ColdDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 8, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 8, - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 8, - }, - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, - }, - }, - ["9190_ConsecratedGroundStationaryMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_4113372195", - ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2330_SummonTotemCastSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - }, - ["specialCaseData"] = { - }, + ["1443_ColdResistanceLeech"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 36, - ["max"] = 40, - }, - ["Boots"] = { - ["min"] = 36, - ["max"] = 40, + ["specialCaseData"] = { }, - }, - ["2939_DamagePerEnduranceCharge"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 17, }, }, - ["1751_MaximumBlockChance"] = { + ["1444_ColdResistanceEnemyLeech"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", - }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, }, - ["sign"] = "+", }, - ["1931_AdditionalCurseOnEnemies"] = { + ["1444_EnemyColdDamageLifeLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", }, - ["1260_CriticalStrikeMultiplierSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["1447_LightningDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["Ring"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, - }, - ["9275_IronGrip"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_573347393", - ["text"] = "Iron Grip", }, }, - ["2275_CurseOnHitLevelVulnerabilityMod"] = { + ["1447_LightningResistanceLeech"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["188_SupportedByIncreasedAreaOfEffectDamage"] = { + ["1448_EnemyLightningDamageLifeLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, }, - ["sign"] = "", }, - ["1179_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["1448_LightningResistanceEnemyLeech"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", }, - ["sign"] = "", }, - ["188_AreaOfEffectSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["144_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["8419_PurityOfLightningReservationEfficiency"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, }, - ["sign"] = "", }, - ["1724_LightningDamagePhysConvertedToLightning"] = { - ["specialCaseData"] = { + ["1450_ChaosDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["Ring"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["7079_LocalChanceToPoisonOnHitChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", }, - ["sign"] = "", }, - ["8962_TrapAndMineThrowSpeed"] = { + ["1451_EnemyChaosDamageLifeLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", ["type"] = "explicit", - ["id"] = "explicit.stat_464535071", - ["text"] = "#% increased Trap and Mine Throwing Speed", }, - ["sign"] = "", }, - ["5943_GainAccuracyEqualToStrength"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", + ["145_ProjectilePierceAndProjectileGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, ["Helmet"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, }, - }, - ["3046_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, }, - ["sign"] = "", }, - ["2921_PoisonDamageAddedChaosToAttacks"] = { + ["1465_ManaLeech"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["sign"] = "", }, - ["3078_IncreasedTwoHandedMeleeDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1836374041", - ["text"] = "#% increased Damage with Two Handed Weapons", - }, - ["specialCaseData"] = { - }, + ["1466_EnemyManaLeechPermyriad"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, - }, - ["1788_ChanceToIgniteForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", }, - ["sign"] = "", }, - ["8001_GlobalAddedFireDamagePerEnduranceCharge"] = { - ["specialCaseData"] = { + ["1467_ManaLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.8, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1073447019", - ["text"] = "# to # Fire Damage per Endurance Charge", + ["Gloves"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 0.2, }, ["Ring"] = { - ["min"] = 3, - ["max"] = 5.5, + ["max"] = 0.4, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1036_ChaosDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_3913282911", - ["text"] = "#% to Chaos Damage over Time Multiplier with Attack Skills", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, }, }, - ["338_AreaDamageSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2388360415", - ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["1467_ManaLeechPermyriadForJewel"] = { + ["AnyJewel"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["BaseJewel"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1236_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, }, - ["sign"] = "", }, - ["4480_AttacksTauntOnHitChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["1469_ManaLeechLocalPermyriad"] = { + ["1HAxe"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["1HMace"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["max"] = 0.4, + ["min"] = 0.2, }, - }, - ["4180_AccuracyIfNoEnemySlainRecently"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2806435316", - ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["2HMace"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["sign"] = "", - }, - ["1920_LifeLeechSpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", + ["2HWeapon"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["sign"] = "", - }, - ["9261_MinionInstability"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_433293234", - ["text"] = "Minion Instability", + ["Claw"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - }, - ["1231_AccuracyAndCritsForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["Dagger"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["Staff"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 0.4, + ["min"] = 0.2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, - }, - }, - ["369_SupportedByInspirationWeapon"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", }, ["tradeMod"] = { + ["id"] = "explicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", }, + }, + ["146_LocalIncreaseSocketedBowGemLevel"] = { ["2HWeapon"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", - }, - ["1151_TwoHandLightningDamageWeaponPrefix"] = { + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2027269580", + ["text"] = "# to Level of Socketed Bow Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, }, - ["sign"] = "", }, - ["2199_PhysicalDamageTakenAsFireUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["147_LocalIncreaseSocketedMeleeGemLevel"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["395_WeaponSpellDamageControlledDestruction"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3718597497", - ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["2596_FishingRarity"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["8736_SpellDamagePer16Strength"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, }, - ["1HWeapon"] = { + ["Shield"] = { + ["max"] = 2, ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", - }, - ["4825_CorruptedBloodImmunity"] = { + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", }, }, - ["1177_SpellAddedFireDamageTwoHand"] = { + ["147_MeleeRangeAndMeleeGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 121.5, }, - ["sign"] = "", }, - ["1163_PoisonDamageAddedChaosToAttacks"] = { + ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", }, - ["sign"] = "", }, - ["1626_IgniteDurationSupported"] = { - ["specialCaseData"] = { + ["1490_EnergyShieldLeechPermyriad"] = { + ["Boots"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["Chest"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["Gloves"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, ["Helmet"] = { - ["min"] = 8, - ["max"] = 20, + ["max"] = 0.3, + ["min"] = 0.3, }, ["sign"] = "", - }, - ["566_CurseOnHitWarlordsMark"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", ["type"] = "explicit", - ["id"] = "explicit.stat_2021420128", - ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "", }, - ["8071_MinionMaxElementalResistance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_10224385", - ["text"] = "Minions have #% to all maximum Elemental Resistances", + ["1499_MaximumLifeLeechRate"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 3, - ["max"] = 8, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["9211_SpellsAdditionalUnleashSeal"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", ["type"] = "explicit", - ["id"] = "explicit.stat_1264919148", - ["text"] = "Skills supported by Unleash have # to maximum number of Seals", }, + }, + ["149_LocalIncreaseSocketedAuraLevel"] = { ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "+", - }, - ["2316_FasterIgniteDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, }, }, - ["9278_VaalPact"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2257118425", - ["text"] = "Vaal Pact", + ["14_ItemGenerationCannotChangePrefixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1131_FireDamagePercentagePrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["5796_FasterBleedDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["max"] = 1, + ["min"] = 1, }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1087_IncreasedClawDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1069260037", - ["text"] = "#% increased Damage with Claws", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["7908_FortifyEffectMaven"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_335507772", - ["text"] = "# to maximum Fortification", + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 4.2, - ["max"] = 5, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - }, - ["5834_GlobalFireGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", ["type"] = "explicit", - ["id"] = "explicit.stat_599749213", - ["text"] = "# to Level of all Fire Skill Gems", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "+", }, - ["9284_IronWill"] = { + ["1500_MaximumLifeLeechRateOldFix"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", ["type"] = "explicit", - ["id"] = "explicit.stat_4092697134", - ["text"] = "Iron Will", }, }, - ["7198_MalevolenceReservationEfficiency"] = { + ["1501_DisplaySupportedByManaLeechMaven"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", ["type"] = "explicit", - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", }, + }, + ["1502_MaximumEnergyShieldLeechRate"] = { ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", - }, - ["137_LocalIncreaseSocketedFireGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", ["type"] = "explicit", - ["id"] = "explicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", }, - ["sign"] = "+", - ["Boots"] = { + }, + ["1506_LifeGainPerTargetLocal"] = { + ["1HAxe"] = { + ["max"] = 5, ["min"] = 2, - ["max"] = 2, }, - }, - ["2806_DamageWhileLeeching"] = { - ["Gloves"] = { - ["min"] = 54, - ["max"] = 60, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", + ["1HSword"] = { + ["max"] = 5, + ["min"] = 2, }, - ["Amulet"] = { - ["min"] = 54, - ["max"] = 60, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 5, + ["min"] = 2, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 30, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 5, + ["min"] = 2, }, ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 45, + ["max"] = 5, + ["min"] = 2, }, - }, - ["1143_ColdDamage"] = { - ["Gloves"] = { - ["min"] = 1.5, - ["max"] = 18.5, + ["Bow"] = { + ["max"] = 5, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["Claw"] = { + ["max"] = 5, + ["min"] = 2, }, - ["Quiver"] = { - ["min"] = 1.5, - ["max"] = 61.5, + ["Dagger"] = { + ["max"] = 5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 31, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 31, + ["tradeMod"] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", }, }, - ["157_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["1507_LifeGainedOnSpellHit"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "+", }, - ["919_BlockPercent"] = { - ["Gloves"] = { + ["1508_LifeGainPerTarget"] = { + ["Amulet"] = { + ["max"] = 4, ["min"] = 2, - ["max"] = 5, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 9, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 20, + ["min"] = 2, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, - }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 4, - }, - }, - ["1344_LifeRegeneration"] = { - ["Shield"] = { - ["min"] = 128.1, - ["max"] = 152, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["Chest"] = { - ["min"] = 128.1, - ["max"] = 176, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 128, + }, + ["1508_LifeGainPerTargetForJewel"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 128, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 128, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", }, }, - ["453_SupportDamageOverTime"] = { + ["1511_LifeGainOnHitVsIgnitedEnemies"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_3846088475", - ["text"] = "Socketed Gems deal #% more Damage over Time", }, - ["sign"] = "", }, - ["1338_EnergyShieldRecoveryRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["specialCaseData"] = { - }, + ["1512_IncreasedManaAndOnHit"] = { ["sign"] = "", - ["Chest"] = { - ["min"] = 8, - ["max"] = 15, - }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, - }, - }, - ["354_BlindOnHitSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", }, + }, + ["1512_ManaGainPerTarget"] = { ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["max"] = 5, + ["min"] = 2, }, - ["sign"] = "", - }, - ["1616_ChanceToAvoidPoison"] = { - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Quiver"] = { + ["max"] = 5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 50, - ["max"] = 50, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, - }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 50, }, + }, + ["1512_ManaGainPerTargetForJewel"] = { ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["max"] = 2, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 50, - ["max"] = 50, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 50, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1154_AddedLightningSuffix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 26, + }, + ["1512_ManaGainPerTargetMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 26, + ["specialCaseData"] = { }, - }, - ["988_PhysicalDamageOverTimePrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_1692565595", - ["text"] = "#% increased Physical Damage over Time", }, - ["specialCaseData"] = { + }, + ["1515_EnergyShieldGainPerTargetForJewel"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 134, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["5726_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", ["type"] = "explicit", - ["id"] = "explicit.stat_588560583", - ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", }, - ["sign"] = "", - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + }, + ["1516_LifeGainedFromEnemyDeath"] = { + ["1HAxe"] = { + ["max"] = 14, + ["min"] = 3, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 14, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["max"] = 14, + ["min"] = 3, }, ["1HWeapon"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["max"] = 14, + ["min"] = 3, }, - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 3, }, - }, - ["2486_SpellDamagePer10Intelligence"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 14, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["2HSword"] = { + ["max"] = 14, + ["min"] = 3, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 14, + ["min"] = 3, }, - ["sign"] = "", - }, - ["1341_MaximumLifeIncreasePercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["Amulet"] = { + ["max"] = 14, + ["min"] = 3, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["Bow"] = { + ["max"] = 14, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 14, + ["min"] = 3, }, - ["sign"] = "", - ["Shield"] = { + ["Dagger"] = { + ["max"] = 14, ["min"] = 3, - ["max"] = 10, }, - ["Belt"] = { + ["Gloves"] = { + ["max"] = 14, ["min"] = 3, - ["max"] = 10, }, - }, - ["8997_ChilledGroundEffectEffectivenessMaven"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 14, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_937372143", - ["text"] = "Unaffected by Chill", + ["Ring"] = { + ["max"] = 14, + ["min"] = 3, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 14, + ["min"] = 3, }, - }, - ["1647_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 10, + ["Wand"] = { + ["max"] = 14, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", }, - ["specialCaseData"] = { + }, + ["1517_MaximumLifeOnKillPercent"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 3, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, - }, - }, - ["2932_NoExtraBleedDamageWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", ["type"] = "explicit", - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", }, }, - ["1809_AttackAndCastSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 8, + ["1517_MaximumLifeOnKillPercentMaven"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", }, }, ["1518_MaximumEnergyShieldOnKillPercent"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", ["id"] = "explicit.stat_2406605753", ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", }, + }, + ["1518_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { - ["min"] = 3, ["max"] = 6, + ["min"] = 5, }, ["sign"] = "", - }, - ["2280_CurseOnHitDespair"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", ["type"] = "explicit", - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1519_MaximumManaOnKillPercent"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["1194_StaffAttackSpeedForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", ["type"] = "explicit", - ["id"] = "explicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, }, - ["specialCaseData"] = { + }, + ["1519_MaximumManaOnKillPercentMaven"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["1650_ManaAndManaCostPercent"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", }, - ["specialCaseData"] = { + }, + ["1525_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 100, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 7, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 7, + ["tradeMod"] = { + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "explicit", }, }, - ["1738_MinionDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 45, + ["1526_GainManaOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, }, + }, + ["152_IncreaseSocketedCurseGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 5, - ["max"] = 42, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", + ["type"] = "explicit", }, }, - ["1183_IncreasedAttackSpeed"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 16, + ["1530_ManaGainedFromEnemyDeath"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["1HMace"] = { + ["max"] = 6, + ["min"] = 1, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 7, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 1, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 16, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 1, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 7, - ["max"] = 13, + ["max"] = 6, + ["min"] = 1, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 16, + ["Bow"] = { + ["max"] = 6, + ["min"] = 1, }, - }, - ["2279_ConductivityOnHitLevel"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 6, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", + ["Dagger"] = { + ["max"] = 6, + ["min"] = 1, }, - ["1HWeapon"] = { + ["Gloves"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 6, ["min"] = 1, - ["max"] = 1, }, ["Ring"] = { + ["max"] = 6, ["min"] = 1, - ["max"] = 1, }, - }, - ["8416_PurityOfIceReservationEfficiency"] = { + ["Staff"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", ["type"] = "explicit", - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, + }, + ["1533_MaximumMinionCountAndMinionLife"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["9019_ShockedGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1724_ConvertPhysicalToLightning"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["1533_MinionDamageAndMinionMaximumLife"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 16, }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + ["1HMace"] = { + ["max"] = 59, + ["min"] = 16, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 59, + ["min"] = 16, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["max"] = 59, + ["min"] = 16, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 26, }, - }, - ["1634_SelfStatusAilmentDuration"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 30, + ["2HMace"] = { + ["max"] = 59, + ["min"] = 26, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["2HSword"] = { + ["max"] = 59, + ["min"] = 26, }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 26, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 30, + ["Bow"] = { + ["max"] = 59, + ["min"] = 26, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 59, + ["min"] = 16, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, + ["Dagger"] = { + ["max"] = 59, + ["min"] = 16, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["Staff"] = { + ["max"] = 59, + ["min"] = 26, }, - }, - ["1490_EnergyShieldLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["Wand"] = { + ["max"] = 59, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", }, - ["Chest"] = { - ["min"] = 0.3, - ["max"] = 0.3, + }, + ["1533_MinionLife"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 13, }, - ["sign"] = "", ["Helmet"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["max"] = 35, + ["min"] = 21, }, - ["Boots"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["Ring"] = { + ["max"] = 32, + ["min"] = 11, }, - }, - ["1570_MinimumEnduranceChargesAndOnKillLose"] = { + ["Shield"] = { + ["max"] = 40, + ["min"] = 11, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", }, - ["sign"] = "+", }, - ["5296_CriticalStrikeMultiplierIfEnemySlainRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2937483991", - ["text"] = "#% to Critical Strike Multiplier if you've Killed Recently", - }, + ["1533_MinionLifeForJewel"] = { ["AbyssJewel"] = { + ["max"] = 12, ["min"] = 8, - ["max"] = 14, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 26, - ["max"] = 35, }, ["AnyJewel"] = { + ["max"] = 12, ["min"] = 8, - ["max"] = 14, - }, - }, - ["1237_CriticalStrikeChanceWithBows"] = { - ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 44, + ["specialCaseData"] = { }, - }, - ["1159_IncreasedChaosDamagePrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", }, - ["specialCaseData"] = { + }, + ["1533_MinionLifeMaven"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 36, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["1180_SpellAddedChaosDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 56, - ["max"] = 97.5, }, - ["specialCaseData"] = { + }, + ["1533_MinionLifeSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 60, - }, - ["Helmet"] = { - ["min"] = 20.5, - ["max"] = 50, + ["specialCaseData"] = { }, - }, - ["3172_MinionAttacksTauntOnHitChance"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", - ["id"] = "explicit.stat_2911442053", - ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", }, + }, + ["1536_MinionMovementSpeed"] = { ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, - }, - ["specialCaseData"] = { + ["max"] = 10, + ["min"] = 6, }, - ["sign"] = "", ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["max"] = 10, + ["min"] = 6, }, - }, - ["1028_FireDamageOverTimeMultiplierWithAttacks"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2139660169", - ["text"] = "#% to Fire Damage over Time Multiplier with Attack Skills", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, }, }, - ["1519_MaximumManaOnKillPercentMaven"] = { - ["specialCaseData"] = { + ["1536_MinionRunSpeed"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["Quiver"] = { + ["max"] = 30, + ["min"] = 13, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 6, + ["Ring"] = { + ["max"] = 30, + ["min"] = 13, }, ["sign"] = "", - }, - ["3199_TrapCooldownRecoveryAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3417757416", - ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", }, - ["sign"] = "", }, - ["1615_AvoidShock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["1541_TotemLifeForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["tradeMod"] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", }, }, - ["1386_MinionGlobalSkillLevel"] = { + ["154_LocalIncreaseSocketedTrapGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_407139870", + ["text"] = "# to Level of Socketed Trap Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3235814433", - ["text"] = "# to Level of all Raise Spectre Gems", }, - ["sign"] = "+", + }, + ["1557_AdditionalPierce"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { + ["max"] = 5, ["min"] = 1, + }, + ["Bow"] = { ["max"] = 2, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["2726_SpellAddedFireDamagePenetrationHybrid"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", ["type"] = "explicit", - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["specialCaseData"] = { + }, + ["1559_AdditionalProjectiles"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1696_SelfPhysAsExtraFireTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", ["type"] = "explicit", - ["id"] = "explicit.stat_248982637", - ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", }, - ["sign"] = "", }, - ["2737_ChanceToGainOnslaughtOnKillMaven"] = { + ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_150668988", + ["text"] = "# to Level of Socketed Trap or Mine Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 10, + }, + ["1560_AdditionalArrows"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2703_GlobalChanceToBlindOnHit"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 15, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { + ["id"] = "explicit.stat_742529963", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 15, + }, + ["1563_IncreasedProjectileSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - }, - ["2241_BleedingDamageChanceWeaponSuffix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", }, - ["specialCaseData"] = { - }, - ["sign"] = "", + }, + ["1563_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["1HWeapon"] = { + ["max"] = 25, ["min"] = 20, - ["max"] = 30, }, ["2HWeapon"] = { + ["max"] = 25, ["min"] = 20, - ["max"] = 30, }, - }, - ["232_IgniteDurationSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2420410470", - ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Helmet"] = { - ["min"] = 16, + ["Wand"] = { ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["1021_GlobalDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_693959086", - ["text"] = "#% to Damage over Time Multiplier with Attack Skills", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 7, - ["max"] = 26, }, }, - ["933_BlockingBlocksSpells"] = { + ["1563_ProjectileDamageAndProjectileSpeed"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, - ["sign"] = "", }, - ["4001_PowerChargeOnBlock"] = { - ["specialCaseData"] = { + ["1563_ProjectileSpeed"] = { + ["1HWeapon"] = { + ["max"] = 52, + ["min"] = 34, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", + ["Quiver"] = { + ["max"] = 52, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 52, + ["min"] = 34, }, ["sign"] = "", - }, - ["387_DisplaySupportedByManaLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", }, + }, + ["1563_ProjectileSpeedSupported"] = { ["Gloves"] = { + ["max"] = 30, ["min"] = 15, - ["max"] = 15, }, ["sign"] = "", - }, - ["1688_TrapCooldownRecoveryAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2001530951", - ["text"] = "#% increased Trap Duration", }, - ["sign"] = "", }, - ["1951_BeltFlaskLifeRecoveryRate"] = { - ["specialCaseData"] = { + ["1563_SupportedByVolleySpeed"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, + ["specialCaseData"] = { }, - }, - ["3508_MinionAddedPhysicalDamage"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1172029298", - ["text"] = "Minions deal # to # additional Physical Damage", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, }, }, - ["1218_IncreasedCastSpeedTwoHandedKilledRecently"] = { - ["specialCaseData"] = { + ["1565_MovementVelocity"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["2HMace"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 3, }, ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["max"] = 10, + ["min"] = 3, + }, + ["Amulet"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 3, }, ["sign"] = "", - }, - ["409_DisplaySocketedSkillsChain"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2788729902", - ["text"] = "Socketed Gems Chain # additional times", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "", }, - ["1788_ChanceToIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["1565_MovementVelocityAndCannotBeChilled"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 13, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["min"] = 20, + }, + ["1565_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["Boots"] = { ["max"] = 30, + ["min"] = 13, }, - }, - ["175_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1164882313", - ["text"] = "#% to Quality of Socketed Cold Gems", }, - ["sign"] = "+", + }, + ["1565_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { - ["min"] = 3, - ["max"] = 7, + ["max"] = 30, + ["min"] = 13, }, - }, - ["7009_NearbyEnemyColdDamageResistance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2674336304", - ["text"] = "Nearby Enemies have #% to Cold Resistance", - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, }, - ["sign"] = "-", }, - ["189_SupportedByArcaneSurgeWeapon"] = { + ["1565_MovementVelocityDodge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "", }, - ["1022_PhysicalDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, - }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, + ["1565_MovementVelocitySpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 48, - }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, }, }, - ["5974_EnduranceChargeIfHitRecentlyMaven"] = { + ["1565_MovementVelocitySpellDodge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", }, + }, + ["1569_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { - ["min"] = 1, ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["1133_GlobalAddedFireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", }, - ["Gloves"] = { - ["min"] = 23, - ["max"] = 30, - }, - ["sign"] = "", }, - ["932_BlockStaffForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 1, + ["1570_MinimumEnduranceCharges"] = { + ["Amulet"] = { ["max"] = 1, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["BaseJewel"] = { ["min"] = 1, - ["max"] = 1, }, - ["AnyJewel"] = { - ["min"] = 1, + ["Ring"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["5797_FasterPoisonDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, - }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["3130_ColdDamageTakenPercentage"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", }, - ["sign"] = "", }, - ["1434_PhysicalDamageLifeLeechPermyriad"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["1570_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["max"] = 1, + ["min"] = 1, }, ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1952_BeltFlaskManaRecoveryRate"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, }, }, - ["2377_FrenzyChargeOnKillChanceMaven"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 10, + ["1570_MinimumEnduranceChargesAndOnKillLose"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 10, + }, + ["1571_MaximumEnduranceCharges"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1795_ShockChanceAndEffect"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, }, - ["sign"] = "", }, - ["1791_ChanceToFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["1571_MaximumEnduranceChargesMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["sign"] = "", - }, - ["1624_ShockChanceAndDurationForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, }, - ["specialCaseData"] = { + }, + ["1575_MinimumFrenzyCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["3019_WarcrySpeed"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", }, + }, + ["1575_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { - ["min"] = 21, - ["max"] = 35, + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1379_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skill Gems", }, + }, + ["1575_MinimumFrenzyChargesAndOnKillLose"] = { ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1576_MaximumFrenzyCharges"] = { + ["2HAxe"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 3, }, - ["1HWeapon"] = { + ["2HSword"] = { + ["max"] = 1, ["min"] = 1, + }, + ["2HWeapon"] = { ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { + ["Bow"] = { + ["max"] = 1, ["min"] = 1, + }, + ["Gloves"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["3174_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_2355615476", - ["text"] = "#% to Critical Strike Multiplier against Enemies that are on Full Life", }, - ["1HWeapon"] = { - ["min"] = 41, - ["max"] = 60, + }, + ["1576_MaximumFrenzyChargesMaven"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - }, - ["1218_IncreasedCastSpeed"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 20, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 16, + }, + ["157_LocalIncreaseSocketedSupportGemLevel"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 49, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 32, + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1720_ConvertPhysicalToFireMaven"] = { - ["Gloves"] = { - ["min"] = 22, - ["max"] = 25, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Quiver"] = { - ["min"] = 22, - ["max"] = 25, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1570_MinimumEnduranceCharges"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - ["Shield"] = { + ["Claw"] = { + ["max"] = 2, ["min"] = 1, + }, + ["Dagger"] = { ["max"] = 2, + ["min"] = 1, }, - }, - ["1642_ReducedBurnDurationMaven"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, }, - ["sign"] = "", - }, - ["5379_ReducedBurnDurationMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_430821956", - ["text"] = "#% increased Damage if you've been Ignited Recently", - }, - ["Helmet"] = { - ["min"] = 36, - ["max"] = 50, }, - ["sign"] = "", }, - ["1743_ElementalDamagePercent"] = { - ["Ring"] = { - ["min"] = 25, - ["max"] = 30, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["157_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 2, }, - ["2HWeapon"] = { - ["min"] = 37, - ["max"] = 94, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Helmet"] = { - ["min"] = 12, - ["max"] = 22, - }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 2, + ["min"] = 2, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 19, - ["max"] = 49, - }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 30, - }, - }, - ["1411_AllResistancesMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all maximum Elemental Resistances", + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 2, }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["9251_GhostDance"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3590128077", - ["text"] = "Ghost Dance", + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["5085_ChanceToUnnerveOnHit"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 2, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Wand"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["924_ChanceToSuppressSpells"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 22, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", }, + }, + ["157_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["Chest"] = { - ["min"] = 5, - ["max"] = 22, - }, - ["specialCaseData"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - ["Helmet"] = { - ["min"] = 5, - ["max"] = 22, - }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 22, - }, - }, - ["1417_LifeLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - ["specialCaseData"] = { }, - ["sign"] = "", + }, + ["1580_MinimumPowerCharges"] = { ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 1.2, + ["max"] = 1, + ["min"] = 1, }, ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - }, - ["131_DelveIntelligenceGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", }, - ["Helmet"] = { - ["min"] = 1, + }, + ["1580_MinimumPowerChargesAndOnKillChance"] = { + ["Amulet"] = { ["max"] = 1, - }, - ["2HWeapon"] = { ["min"] = 1, - ["max"] = 1, }, - ["1HWeapon"] = { - ["min"] = 1, + ["Ring"] = { ["max"] = 1, - }, - ["Chest"] = { ["min"] = 1, - ["max"] = 1, }, - }, - ["1722_ColdDamagePhysConvertedToCold"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["sign"] = "", }, - ["436_SocketedSpellsManaCost"] = { + ["1580_MinimumPowerChargesAndOnKillLose"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_1688834903", - ["text"] = "Socketed Spells have #% reduced Mana Cost", - }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 20, }, - ["specialCaseData"] = { + }, + ["1581_IncreasedMaximumPowerCharges"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", ["Helmet"] = { - ["min"] = 20, - ["max"] = 20, + ["max"] = 1, + ["min"] = 1, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 20, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["9283_ResoluteTechnique"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_3943945975", - ["text"] = "Resolute Technique", }, }, - ["1705_ColdAddedAsChaos"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["1581_IncreasedMaximumPowerChargesMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, - }, - }, - ["3121_OnslaugtOnKillPercentChance"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["Quiver"] = { - ["min"] = 5, + }, + ["1586_GainEnduranceChargeOnCritUber"] = { + ["1HAxe"] = { ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["sign"] = "", ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 10, ["min"] = 5, - ["max"] = 25, }, ["2HWeapon"] = { + ["max"] = 10, ["min"] = 5, - ["max"] = 25, }, - }, - ["4203_AdditionalBlockWith5NearbyEnemies"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2542650946", + ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_1214532298", - ["text"] = "#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 2, - ["max"] = 5, }, }, - ["2726_FireResistancePenetration"] = { - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + ["158_LocalIncreaseSocketedActiveSkillGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "# to Level of Socketed Active Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["sign"] = "", - ["AbyssJewel"] = { - ["min"] = 1, + }, + ["158_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["3071_WarcryCooldownSpeed"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "# to Level of Socketed Active Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", }, + }, + ["1591_GainPowerChargeOnKillingFrozenEnemy"] = { ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 17, - ["max"] = 45, - }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, - }, - ["Shield"] = { - ["min"] = 35, - ["max"] = 45, - }, - }, - ["5625_ReducedElementalReflectTaken"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", ["type"] = "explicit", - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", - }, - ["specialCaseData"] = { }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + }, + ["1597_CriticalMultiplierSupportedTwoHanded"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 55, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["393_PoisonDamageWeaponSupported"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["1597_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["2235_CausesBleedingChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", }, - ["sign"] = "", }, - ["9037_SupportedByItemRarityUnique"] = { + ["1597_PowerChargeOnCriticalStrikeChance"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_121185030", - ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", }, + }, + ["1597_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { - ["min"] = 8, - ["max"] = 25, + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", - }, - ["1933_ReducedCurseEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", }, - ["Ring"] = { - ["min"] = 35, - ["max"] = 40, + }, + ["1600_FrenzyChargeOnHitChance"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - }, - ["8442_SpiritAndPhantasmRefreshOnUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", ["type"] = "explicit", - ["id"] = "explicit.stat_2461719091", - ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Unique Enemy", }, - ["sign"] = "", }, - ["1438_FireDamageLifeLeechPermyriad"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - }, - ["specialCaseData"] = { + ["1600_FrenzyChargeOnHitChanceMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, - }, - }, - ["1465_ManaLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, - ["sign"] = "", }, - ["2921_PoisonDamageWeaponSupported"] = { + ["1605_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_876831634", + ["text"] = "Cannot be Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", }, - ["1HWeapon"] = { - ["min"] = 19, - ["max"] = 26, + }, + ["1610_AvoidElementalStatusAilments"] = { + ["Boots"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 16, }, ["sign"] = "", - }, - ["6071_ChanceToIgniteAddedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", ["type"] = "explicit", - ["id"] = "explicit.stat_794830148", - ["text"] = "Adds # to # Fire Damage against Ignited Enemies", - }, - ["Ring"] = { - ["min"] = 28.5, - ["max"] = 42, }, - ["sign"] = "", }, - ["1881_SpellAddedPhysicalDamageWhileDualWielding"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4255924189", - ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, - }, - ["specialCaseData"] = { + ["1610_AvoidStunAndElementalStatusAilments"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, - }, - }, - ["8657_ManaCostBaseChannelled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", ["type"] = "explicit", - ["id"] = "explicit.stat_1178188780", - ["text"] = "Channelling Skills Cost # Mana", }, - ["sign"] = "-", }, - ["6086_GraceReservation"] = { + ["1611_AvoidChillForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", ["type"] = "explicit", - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["5894_ShockNearbyEnemiesOnFocusCDR"] = { + ["1611_AvoidFreezeAndChill"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 8, + }, + ["1611_MovementVelocityAndCannotBeChilled"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 100, }, ["sign"] = "", - }, - ["5207_ConsecratedGroundStationaryMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", }, }, - ["1576_MaximumFrenzyChargesMaven"] = { + ["1612_AvoidFreeze"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Quiver"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", }, - ["4189_FrenzyChargeWhenHit"] = { + ["1612_AvoidFreezeAndChill"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_881914531", - ["text"] = "#% chance to gain a Frenzy Charge when Hit", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["sign"] = "", }, - ["2910_PoisonDurationChaosDamage"] = { + ["1612_AvoidFreezeForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", }, - ["sign"] = "", }, - ["2199_PhysicalDamageTakenAsFireUberMaven"] = { + ["1612_ChanceToAvoidFreezeAndChill"] = { + ["AbyssJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["Belt"] = { + ["max"] = 60, + ["min"] = 39, + }, + ["Boots"] = { + ["max"] = 60, + ["min"] = 39, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 39, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, + }, + ["1612_DexterityAndAvoidFreeze"] = { ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["max"] = 25, + ["min"] = 21, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 21, }, ["sign"] = "", - }, - ["154_LocalIncreaseSocketedTrapGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", ["type"] = "explicit", - ["id"] = "explicit.stat_407139870", - ["text"] = "# to Level of Socketed Trap Gems", }, - ["sign"] = "+", }, - ["1887_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["1613_AvoidIgnite"] = { + ["AbyssJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["Belt"] = { + ["max"] = 60, + ["min"] = 43, + }, + ["Boots"] = { + ["max"] = 80, + ["min"] = 43, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 43, + }, + ["Quiver"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", ["type"] = "explicit", - ["id"] = "explicit.stat_417188801", - ["text"] = "#% chance to gain an Endurance Charge when you Block", }, + }, + ["1613_AvoidIgniteForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, + ["1613_StrengthAndAvoidIgnite"] = { + ["Chest"] = { ["max"] = 25, + ["min"] = 21, }, - ["2HWeapon"] = { - ["min"] = 20, + ["Shield"] = { ["max"] = 25, + ["min"] = 21, }, - }, - ["4390_AdditionalChanceToEvadeMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", ["type"] = "explicit", - ["id"] = "explicit.stat_223937937", - ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + }, + ["1615_AvoidShock"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["Quiver"] = { + ["max"] = 80, + ["min"] = 51, }, ["sign"] = "", - }, - ["8658_IncreasedManaAndCostNew"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "explicit", - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have # to Total Mana Cost", }, - ["sign"] = "-", }, - ["975_AttackDamage"] = { + ["1615_AvoidShockForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "explicit", - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", }, - ["sign"] = "", }, - ["2910_PoisonDurationWeaponSupported"] = { + ["1615_IntelligenceAndAvoidShock"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", }, - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 14, + }, + ["1615_ReducedShockChance"] = { + ["Belt"] = { + ["max"] = 60, + ["min"] = 35, + }, + ["Boots"] = { + ["max"] = 60, + ["min"] = 35, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 35, }, ["sign"] = "", - }, - ["4280_AngerReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", ["type"] = "explicit", - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + }, + ["1616_AvoidBleedAndPoison"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 41, }, ["sign"] = "", - }, - ["973_MineDamageForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", }, - ["specialCaseData"] = { + }, + ["1616_ChanceToAvoidPoison"] = { + ["AbyssJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 50, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", }, }, - ["1610_AvoidElementalStatusAilments"] = { + ["1616_MovementVelocitySpellDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", ["type"] = "explicit", - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", }, - ["specialCaseData"] = { + }, + ["1618_AvoidStun"] = { + ["AbyssJewel"] = { + ["max"] = 30, + ["min"] = 21, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 16, - ["max"] = 35, + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 21, }, ["Boots"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 44, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 50, ["min"] = 31, - ["max"] = 45, }, - }, - ["1630_StunDurationAndThresholdUber"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", }, - ["specialCaseData"] = { + }, + ["1618_AvoidStunAndElementalStatusAilments"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", }, }, - ["393_PoisonDurationSupported"] = { + ["1618_AvoidStunForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + }, + ["1623_ChillingConfluxMaven"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["1565_MovementVelocitySpellDodge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", }, - ["sign"] = "", }, - ["1345_LifeDegenerationAndPercentGracePeriod"] = { + ["1624_ShockChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", }, - ["sign"] = "", }, - ["1625_FreezeChanceAndDuration"] = { + ["1624_ShockDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", }, + }, + ["1624_ShockingConfluxMaven"] = { ["Helmet"] = { - ["min"] = 8, - ["max"] = 15, + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["6073_ChanceToShockAddedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_90012347", - ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", }, - ["Ring"] = { - ["min"] = 35.5, - ["max"] = 47, + }, + ["1625_FreezeChanceAndDuration"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 8, }, ["sign"] = "", - }, - ["1627_IncreasedAilmentDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 15, + }, + ["1625_FreezeChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, }, ["sign"] = "", - }, - ["169_IncreaseSocketedSupportGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", }, - ["sign"] = "+", }, - ["1312_ReducedPhysicalDamageTakenMaven"] = { + ["1626_BurnDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", }, - ["sign"] = "", + }, + ["1626_FasterIgniteDamageMaven"] = { ["Boots"] = { - ["min"] = 15, ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", }, }, - ["1034_ChaosDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["1626_IgniteChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["min"] = 6, ["max"] = 8, + ["min"] = 6, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", - }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 48, - }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, }, }, - ["1993_ReducedReservation"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["1626_IgniteDurationSupported"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", }, + }, + ["1626_IgnitingConfluxMaven"] = { ["Helmet"] = { - ["min"] = 8, - ["max"] = 14, + ["max"] = 30, + ["min"] = 20, }, - }, - ["1797_AreaDamageAndAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 20, }, - ["sign"] = "", }, - ["1230_SpellCriticalStrikeChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", - }, - ["2HWeapon"] = { + ["1627_IncreasedAilmentDuration"] = { + ["Gloves"] = { + ["max"] = 15, ["min"] = 10, - ["max"] = 109, - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, - }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, - }, - }, - ["2034_MinionPhysicalDamageReduction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 7, + }, + ["1627_IncreasedAilmentDurationMaven"] = { + ["Gloves"] = { ["max"] = 15, + ["min"] = 13, }, - }, - ["1328_EnergyShieldAndPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", }, - ["sign"] = "+", }, - ["3303_AuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["1630_StunDurationAndThresholdUber"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 15, + ["2HMace"] = { ["max"] = 30, + ["min"] = 11, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, }, - }, - ["4875_CastSpeedDuringFlaskEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, + }, + ["1630_StunDurationForJewel"] = { + ["AnyJewel"] = { ["max"] = 14, + ["min"] = 10, }, - }, - ["1647_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, }, - ["sign"] = "", }, - ["3520_RegenerateLifeOver1Second"] = { - ["specialCaseData"] = { + ["1630_StunDurationIncreasePercent"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1242155304", - ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["1HMace"] = { + ["max"] = 35, + ["min"] = 11, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 25, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 11, }, - ["sign"] = "", - }, - ["3042_AttackSpeedDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 11, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 14, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 11, }, - }, - ["1176_SpellAddedPhysicalDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["2HSword"] = { + ["max"] = 35, + ["min"] = 11, }, ["2HWeapon"] = { - ["min"] = 56, - ["max"] = 97.5, + ["max"] = 35, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 39, + ["min"] = 11, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 60, + ["Bow"] = { + ["max"] = 35, + ["min"] = 11, }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 61, + ["Claw"] = { + ["max"] = 35, + ["min"] = 11, }, - }, - ["1613_StrengthAndAvoidIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["Dagger"] = { + ["max"] = 35, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 35, + ["min"] = 11, }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 21, - ["max"] = 25, + ["Staff"] = { + ["max"] = 35, + ["min"] = 11, }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, + ["Wand"] = { + ["max"] = 35, + ["min"] = 11, }, - }, - ["378_SupportedByLesserMultipleProjectilesDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", ["type"] = "explicit", - ["id"] = "explicit.stat_584144941", - ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, }, - ["sign"] = "", }, - ["960_PercentageAllAttributes"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["1634_SelfStatusAilmentDuration"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, ["Chest"] = { - ["min"] = 7, - ["max"] = 8, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 9, + ["max"] = 30, + ["min"] = 20, }, - ["Belt"] = { - ["min"] = 6, - ["max"] = 12, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["991_ChaosDamageOverTimePrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_601272515", - ["text"] = "#% increased Chaos Damage over Time", + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, - }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 134, - }, - }, - ["1563_ProjectileSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + }, + ["1641_ReducedFreezeDuration"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 51, }, ["sign"] = "", - }, - ["1218_IncreasedCastSpeedAddedChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", }, - ["367_IncreasedWeaponElementalDamagePercentSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", - }, - ["specialCaseData"] = { + ["1641_ReducedFreezeDurationMaven"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 51, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - }, - ["8271_EnemiesBlockedAreIntimidated"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", - ["id"] = "explicit.stat_2930706364", - ["text"] = "Permanently Intimidate Enemies on Block", }, }, - ["1339_AbyssJewelLife"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["1642_ReducedBurnDuration"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 51, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, - }, - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", }, }, - ["8534_RemoveIgniteOnFlaskUse"] = { + ["1642_ReducedBurnDurationMaven"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", - ["id"] = "explicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1641_ReducedFreezeDuration"] = { - ["specialCaseData"] = { + ["1642_ReducedIgniteDurationOnSelf"] = { + ["AnyJewel"] = { + ["max"] = 35, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["BaseJewel"] = { + ["max"] = 35, + ["min"] = 30, }, - ["Helmet"] = { - ["min"] = 51, + ["Ring"] = { ["max"] = 60, + ["min"] = 41, }, ["sign"] = "", - }, - ["1218_IncreasedCastSpeedFishing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", }, - ["2727_ColdResistancePenetration"] = { - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - }, - ["sign"] = "", - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1644_BurnDamage"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 26, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 26, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["max"] = 60, + ["min"] = 31, }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, + ["Staff"] = { + ["max"] = 60, + ["min"] = 31, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["max"] = 40, + ["min"] = 26, }, - }, - ["1797_SupportedByIncreasedAreaOfEffectDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + }, + }, + ["1644_BurnDamagePrefix"] = { + ["1HMace"] = { + ["max"] = 94, + ["min"] = 60, }, ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["max"] = 94, + ["min"] = 60, }, - ["sign"] = "", - }, - ["1432_LifeLeechFromAttacksPermyriad"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 100, }, - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["Staff"] = { + ["max"] = 134, + ["min"] = 100, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 94, + ["min"] = 60, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, - }, - }, - ["8418_PurityOfLightningReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", }, - ["2283_FrostbiteOnHitLevel"] = { + ["1644_BurningDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1644_BurningDamageSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["417_SocketedAttacksManaCost"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have # to Total Mana Cost", - }, - ["Shield"] = { - ["min"] = 15, - ["max"] = 15, - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 15, }, - ["specialCaseData"] = { - }, - ["sign"] = "-", + }, + ["1644_IgniteChanceAndDamage"] = { ["Helmet"] = { + ["max"] = 20, ["min"] = 15, - ["max"] = 15, - }, - ["Boots"] = { - ["min"] = 15, - ["max"] = 15, }, - }, - ["1350_MaximumManaIncreaseShaper"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 18, + }, + ["1647_AreaDamageAndAreaOfEffect"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 6, }, ["sign"] = "", - }, - ["971_TrapDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, - }, - ["sign"] = "", }, - ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["1647_AreaOfEffect"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 5, }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 5, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 4, - ["max"] = 36, + ["max"] = 15, + ["min"] = 7, }, - ["Belt"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Quiver"] = { + ["max"] = 15, ["min"] = 7, + }, + ["Ring"] = { ["max"] = 15, + ["min"] = 7, }, - }, - ["1394_FireResistanceLeech"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", }, - ["sign"] = "+", }, - ["1131_SpellAddedFireDamageHybrid"] = { + ["1647_AreaOfEffectSupported"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", }, - ["sign"] = "", }, - ["1447_LightningDamageLifeLeechPermyriad"] = { + ["1647_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", }, - ["specialCaseData"] = { + }, + ["1647_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", }, }, - ["1698_PhysicalAddedAsCold"] = { - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 30, + ["1647_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Amulet"] = { - ["min"] = 5, + ["2HMace"] = { ["max"] = 15, + ["min"] = 10, }, - ["Quiver"] = { - ["min"] = 5, + ["2HWeapon"] = { ["max"] = 15, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 20, - }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["specialCaseData"] = { }, - }, - ["1332_EnergyShieldDelayForJewel"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1647_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["377_MinionLifeSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_1337327984", - ["text"] = "Socketed Gems are Supported by Level # Minion Life", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + }, + ["1647_SupportedBySpellCascadeArea"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - }, - ["8911_TailwindOnCriticalStrikeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_2172944497", - ["text"] = "#% increased Effect of Tailwind on you", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 25, }, }, - ["1400_ColdDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["1647_SupportedBySpiritStrikeArea"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["5974_EnduranceChargeIfHitRecently"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - }, - ["9235_AvatarOfFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", - ["id"] = "explicit.stat_346029096", - ["text"] = "Avatar of Fire", }, }, - ["1231_CriticalStrikeChance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 60, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["1650_ManaAndManaCostPercent"] = { ["Amulet"] = { - ["min"] = 10, - ["max"] = 38, + ["max"] = 7, + ["min"] = 3, }, ["Ring"] = { - ["min"] = 10, - ["max"] = 25, + ["max"] = 7, + ["min"] = 3, }, - }, - ["213_WeaponSpellDamageEfficacy"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_3924539382", - ["text"] = "Socketed Gems are Supported by Level # Efficacy", }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + }, + ["1650_ManaCostReduction"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["374_IncreasedCastSpeedFasterCasting"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, }, - ["sign"] = "", }, - ["2725_ElementalPenetration"] = { - ["Quiver"] = { - ["min"] = 3, + ["1650_ManaCostReductionForJewel"] = { + ["AnyJewel"] = { ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 12, - }, - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 7, }, }, - ["1703_ChaosDamageAsPortionOfLightningDamage"] = { + ["1658_IncreaseManaCostFlat"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", }, - ["sign"] = "", }, - ["410_SocketedSkillsCriticalChance"] = { + ["1658_IncreasedManaAndCost"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", ["type"] = "explicit", - ["id"] = "explicit.stat_1681904129", - ["text"] = "Socketed Gems have #% Critical Strike Chance", }, - ["sign"] = "+", }, - ["8289_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + ["1662_SkillEffectDurationSupported"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", - ["id"] = "explicit.stat_2810434465", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + }, + ["1663_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 7, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 7, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 7, }, - }, - ["4876_IncreasedCastSpeedTwoHandedKilledRecently"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 13, }, ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["max"] = 30, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 7, }, ["sign"] = "", - }, - ["5894_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 8, }, }, - ["1053_DualWieldingPhysicalDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1274831335", - ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["1665_AvoidInterruptionWhileCasting"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 15, }, - }, - ["5639_ElusiveOnCriticalStrikeMaven"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", ["type"] = "explicit", - ["id"] = "explicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, }, }, - ["1026_FireDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["1665_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 15, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Staff"] = { + ["max"] = 35, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["tradeMod"] = { + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", ["type"] = "explicit", - ["id"] = "explicit.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", }, - ["AbyssJewel"] = { + }, + ["1667_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 17, ["min"] = 6, - ["max"] = 8, }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 38, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, }, - }, - ["1705_ChaosDamageAsPortionOfColdDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", }, - ["sign"] = "", }, - ["1131_FireDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["1667_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, - }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["specialCaseData"] = { }, - }, - ["1140_ColdDamagePercentagePrefix"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", }, - ["specialCaseData"] = { + }, + ["1667_LocalArmourAndEvasionAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, - }, - ["2350_MarkEffect"] = { + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_803185500", - ["text"] = "#% increased Effect of your Marks", }, - ["sign"] = "", }, - ["5753_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2935548106", - ["text"] = "# to Evasion Rating if Hit an Enemy Recently", + ["1667_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["2HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, }, - ["AbyssJewel"] = { - ["min"] = 250, - ["max"] = 300, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, + ["sign"] = "", + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 250, - ["max"] = 300, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", }, }, - ["8138_MovementSpeedIfNotDamagedRecently"] = { + ["1667_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_3854949926", - ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 4, + }, + ["1667_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 4, + ["specialCaseData"] = { }, - }, - ["129_PercentageStrengthMaven"] = { ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", - }, - ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1667_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 17, + ["min"] = 6, }, - }, - ["9143_WrathReservationEfficiency"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, }, - ["sign"] = "", }, - ["1405_LightningResistanceLeech"] = { + ["1667_LocalWardAndStunRecoveryPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", }, - ["sign"] = "+", }, - ["4739_OnHitBlindChilledEnemies"] = { + ["1667_StunRecovery"] = { + ["Belt"] = { + ["max"] = 28, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 34, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_3450276548", - ["text"] = "Blind Chilled Enemies on Hit", }, }, - ["1658_IncreasedManaAndCost"] = { + ["1667_StunRecoveryForJewel"] = { + ["AnyJewel"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["BaseJewel"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", ["type"] = "explicit", - ["id"] = "explicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", }, - ["sign"] = "-", }, - ["1689_MineDetonationSpeedAndDuration"] = { + ["1688_TrapCooldownRecoveryAndDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2001530951", + ["text"] = "#% increased Trap Duration", ["type"] = "explicit", - ["id"] = "explicit.stat_117667746", - ["text"] = "#% increased Mine Duration", }, - ["sign"] = "", }, - ["2010_IncreasedShieldBlockPercentage"] = { + ["1689_MineDetonationSpeedAndDuration"] = { + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", }, ["tradeMod"] = { + ["id"] = "explicit.stat_117667746", + ["text"] = "#% increased Mine Duration", ["type"] = "explicit", - ["id"] = "explicit.stat_4253454700", - ["text"] = "#% Chance to Block (Shields)", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 15, }, }, - ["1400_ColdResistance"] = { - ["Quiver"] = { + ["168_SocketedGemQuality"] = { + ["1HAxe"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, }, - ["sign"] = "+", - ["Belt"] = { + ["1HSword"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Ring"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, ["2HWeapon"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, - ["1HWeapon"] = { + ["Bow"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, - ["Amulet"] = { + ["Claw"] = { + ["max"] = 10, ["min"] = 6, - ["max"] = 48, }, - }, - ["132_LocalIncreaseSocketedGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", + ["Dagger"] = { + ["max"] = 10, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, - }, - ["938_SpellBlockPercentageMaven"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3828613551", + ["text"] = "#% to Quality of Socketed Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 6, + }, + ["1692_TrapSpeedCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 8, }, ["sign"] = "", - }, - ["1743_ElementalDamagePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 22, }, - ["sign"] = "", }, - ["8027_MinionAccuracyRating"] = { - ["specialCaseData"] = { + ["1692_TrapThrowSpeed"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["Belt"] = { + ["max"] = 16, + ["min"] = 7, }, ["sign"] = "", - }, - }, - ["PassiveNode"] = { - ["6904_AfflictionNotableSnaringSpirits"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_3319205340", - ["text"] = "1 Added Passive Skill is Snaring Spirits", }, }, - ["6908_AfflictionNotableSpringBack"] = { - ["specialCaseData"] = { + ["1692_TrapThrowSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3603695769", - ["text"] = "1 Added Passive Skill is Spring Back", + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["6723_AfflictionNotableCryWolf"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1821748178", - ["text"] = "1 Added Passive Skill is Cry Wolf", }, }, - ["6858_AfflictionNotablePrismaticCarapace"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3492924480", - ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["1692_TrapThrowSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6682_AfflictionNotableAssertDominance"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4222265138", - ["text"] = "1 Added Passive Skill is Assert Dominance", + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6699_AfflictionNotableBroadside"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2205982416", - ["text"] = "1 Added Passive Skill is Broadside", + ["2HAxe"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6676_AfflictionNotableAntifreeze"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2622946553", - ["text"] = "1 Added Passive Skill is Antifreeze", + ["2HSword"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6790_AfflictionNotableGrimOath"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2194205899", - ["text"] = "1 Added Passive Skill is Grim Oath", + ["Bow"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6678_AfflictionNotableArcaneAdept"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_393565679", - ["text"] = "1 Added Passive Skill is Arcane Adept", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6907_AfflictionNotableSpikedConcoction"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372255769", - ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6892_AfflictionNotableSecondSkin"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_2773515950", - ["text"] = "1 Added Passive Skill is Second Skin", }, }, - ["6737_AfflictionNotableSelfControl"] = { - ["specialCaseData"] = { + ["1693_MineLaySpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3025453294", - ["text"] = "1 Added Passive Skill is Self-Control", + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["6787_AfflictionNotableGracefulExecution"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1903496649", - ["text"] = "1 Added Passive Skill is Graceful Execution", }, }, - ["6808_AfflictionNotableInspiredOppression"] = { - ["specialCaseData"] = { + ["1693_MineLayingSpeed"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3872380586", - ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["Helmet"] = { + ["max"] = 16, + ["min"] = 7, }, - }, - ["6685_AfflictionNotableBattleHardened"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_4188581520", - ["text"] = "1 Added Passive Skill is Battle-Hardened", }, }, - ["6688_AfflictionNotableBlanketedSnow"] = { - ["specialCaseData"] = { + ["1693_MineLayingSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1085167979", - ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6877_AfflictionNotableRenewal"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3607300552", - ["text"] = "1 Added Passive Skill is Renewal", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6774_AfflictionNotableFireAttunement"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3188756614", - ["text"] = "1 Added Passive Skill is Fire Attunement", + ["2HAxe"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6948_AfflictionNotableWarningCall"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_578355556", - ["text"] = "1 Added Passive Skill is Warning Call", + ["2HSword"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6928_AfflictionNotableTitanicSwings"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2930275641", - ["text"] = "1 Added Passive Skill is Titanic Swings", + ["Bow"] = { + ["max"] = 23, + ["min"] = 17, }, - }, - ["6705_AfflictionNotableCalltotheSlaughter"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3317068522", - ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6792_AfflictionNotableGuerillaTactics"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 23, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1882129725", - ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["6863_AfflictionNotablePureAgony"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", ["type"] = "explicit", - ["id"] = "explicit.stat_1507409483", - ["text"] = "1 Added Passive Skill is Pure Agony", }, }, - ["6802_AfflictionNotableHolisticHealth"] = { + ["1696_SelfPhysAsExtraFireTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3667965781", - ["text"] = "1 Added Passive Skill is Holistic Health", }, }, - ["6724_AfflictionNotableCultLeader"] = { - ["specialCaseData"] = { + ["1697_ConvertPhysicalToFireMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2026112251", - ["text"] = "1 Added Passive Skill is Cult-Leader", + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["6961_AfflictionNotableWrappedinFlame"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_241783558", - ["text"] = "1 Added Passive Skill is Wrapped in Flame", }, }, - ["6844_AfflictionNotableOvershock"] = { - ["specialCaseData"] = { + ["1697_FireDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3777170562", - ["text"] = "1 Added Passive Skill is Overshock", + ["Ring"] = { + ["max"] = 10, + ["min"] = 10, }, - }, - ["6716_AfflictionNotableCompoundInjury"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4018305528", - ["text"] = "1 Added Passive Skill is Compound Injury", }, }, - ["6916_AfflictionNotableStrikeLeader"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_282062371", - ["text"] = "1 Added Passive Skill is Strike Leader", + ["1697_PhysicalAddedAsFire"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6738_AfflictionNotableDiseaseVector"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_183591019", - ["text"] = "1 Added Passive Skill is Disease Vector", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6958_AfflictionNotableWishforDeath"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_608164368", - ["text"] = "1 Added Passive Skill is Wish for Death", + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 7, }, - }, - ["6875_AfflictionNotableRemarkable"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_691431951", - ["text"] = "1 Added Passive Skill is Remarkable", + ["2HSword"] = { + ["max"] = 30, + ["min"] = 7, }, - }, - ["6815_AfflictionNotableLifefromDeath"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2337273077", - ["text"] = "1 Added Passive Skill is Life from Death", + ["Amulet"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6669_AfflictionNotableAlchemist"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2912949210", - ["text"] = "1 Added Passive Skill is Alchemist", + ["Quiver"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6837_AfflictionNotableNoWitnesses"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1722480396", - ["text"] = "1 Added Passive Skill is No Witnesses", + ["Wand"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6745_AfflictionNotableDragonHunter"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1038955006", - ["text"] = "1 Added Passive Skill is Dragon Hunter", }, }, - ["6717_AfflictionNotableConfidentCombatant"] = { - ["specialCaseData"] = { + ["1698_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3930242735", - ["text"] = "1 Added Passive Skill is Confident Combatant", + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["6951_AfflictionNotableWhispersofDeath"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_156080652", - ["text"] = "1 Added Passive Skill is Evil Eye", }, }, - ["6751_AfflictionNotableEndbringer"] = { - ["specialCaseData"] = { + ["1698_PhysicalAddedAsCold"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2150878631", - ["text"] = "1 Added Passive Skill is Endbringer", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6767_AfflictionNotableFantheFlames"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2918755450", - ["text"] = "1 Added Passive Skill is Fan the Flames", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6675_AfflictionNotableAncestralReach"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3294884567", - ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["2HSword"] = { + ["max"] = 30, + ["min"] = 7, }, - }, - ["6911_AfflictionNotableStoicFocus"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1088949570", - ["text"] = "1 Added Passive Skill is Stoic Focus", + ["Amulet"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6942_AfflictionNotableVictimMaker"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1936135020", - ["text"] = "1 Added Passive Skill is Victim Maker", + ["Bow"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6957_AfflictionNotableWinterProwler"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_755881431", - ["text"] = "1 Added Passive Skill is Winter Prowler", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6765_AfflictionNotableEyetoEye"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_392942015", - ["text"] = "1 Added Passive Skill is Eye to Eye", + ["Wand"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6953_AfflictionNotableWidespreadDestruction"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1678643716", - ["text"] = "1 Added Passive Skill is Widespread Destruction", }, }, - ["6829_AfflictionNotableMastertheFundamentals"] = { - ["specialCaseData"] = { + ["1699_ConvertPhysicalToLightningMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3585232432", - ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["6726_AfflictionNotableDarkDiscourse"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_462115791", - ["text"] = "1 Added Passive Skill is Doedre's Spite", }, }, - ["6898_AfflictionNotableShriekingBolts"] = { - ["specialCaseData"] = { + ["1699_PhysicalAddedAsLightning"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2783012144", - ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6696_AfflictionNotableBornofChaos"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2449392400", - ["text"] = "1 Added Passive Skill is Born of Chaos", + ["Amulet"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6689_AfflictionNotableBlastFreeze"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_693808153", - ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["Claw"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6860_AfflictionNotablePrismaticHeart"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2342448236", - ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["Quiver"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6879_AfflictionNotableReplenishingPresence"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1496043857", - ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["Wand"] = { + ["max"] = 20, + ["min"] = 7, }, - }, - ["6763_AfflictionNotableExposureTherapy"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_131358113", - ["text"] = "1 Added Passive Skill is Exposure Therapy", }, }, - ["6769_AfflictionNotableFearsomeWarrior"] = { + ["169_IncreaseSocketedSupportGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_3134222965", - ["text"] = "1 Added Passive Skill is Fearsome Warrior", }, }, - ["6805_AfflictionNotableHulkingCorpses"] = { - ["specialCaseData"] = { + ["169_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["1HAxe"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3467711950", - ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["1HMace"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6693_AfflictionNotableBloodscent"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3967765261", - ["text"] = "1 Added Passive Skill is Bloodscent", + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6796_AfflictionNotableHeavyHitter"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3640252904", - ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["2HMace"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6922_AfflictionNotableSurefootedStriker"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3410752193", - ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6711_AfflictionNotableClarityofPurpose"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_684087686", - ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["Claw"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6798_AfflictionNotableHeraldry"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3274270612", - ["text"] = "1 Added Passive Skill is Heraldry", + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6932_AfflictionNotableUnspeakableGifts"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 8, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_729163974", - ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["Wand"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["6934_AfflictionNotableUnwaveringFocus"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_367638058", - ["text"] = "1 Added Passive Skill is Unwavering Focus", }, }, - ["6670_AfflictionNotableAncestralEcho"] = { + ["169_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_957679205", - ["text"] = "1 Added Passive Skill is Ancestral Echo", }, }, - ["6900_AfflictionNotableSkullbreaker"] = { - ["specialCaseData"] = { + ["16_ItemGenerationCannotChangeSuffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_315697256", - ["text"] = "1 Added Passive Skill is Skullbreaker", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6940_AfflictionNotableViciousGuard"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4054656914", - ["text"] = "1 Added Passive Skill is Vicious Guard", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6764_AfflictionNotableEyeoftheStorm"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3818661553", - ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6839_AfflictionNotableNumbingElixir"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1028754276", - ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6734_AfflictionNotableUncompromising"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_382360671", - ["text"] = "1 Added Passive Skill is Uncompromising", + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6880_AfflictionNotableRiotQueller"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_254194892", - ["text"] = "1 Added Passive Skill is Riot Queller", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6686_AfflictionNotableBattlefieldDominator"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1499057234", - ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6715_AfflictionNotableCombatRhythm"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3122505794", - ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6813_AfflictionNotableLastingImpression"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_426715778", - ["text"] = "1 Added Passive Skill is Lasting Impression", + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6719_AfflictionNotableConservationofEnergy"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2083777017", - ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6713_AfflictionNotableColdConduction"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1274505521", - ["text"] = "1 Added Passive Skill is Cold Conduction", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6917_AfflictionNotableStubbornStudent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", ["type"] = "explicit", - ["id"] = "explicit.stat_2383914651", - ["text"] = "1 Added Passive Skill is Stubborn Student", }, }, - ["6794_AfflictionNotableHauntingShout"] = { + ["1700_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1080363357", - ["text"] = "1 Added Passive Skill is Haunting Shout", }, }, - ["6773_AfflictionNotableFettle"] = { - ["specialCaseData"] = { + ["1700_PhysicalAddedAsChaos"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1353571444", - ["text"] = "1 Added Passive Skill is Fettle", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6797_AfflictionNotableExploitWeakness"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_50129423", - ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6757_AfflictionNotableEternalSuffering"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2144634814", - ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6707_AfflictionNotableCarefulHandling"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_456502758", - ["text"] = "1 Added Passive Skill is Careful Handling", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6888_AfflictionNotableSavageResponse"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4222635921", - ["text"] = "1 Added Passive Skill is Savage Response", + ["Claw"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6788_AfflictionNotableSublimeForm"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2251304016", - ["text"] = "1 Added Passive Skill is Sublime Form", + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6779_AfflictionNotableFollowThrough"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3984980429", - ["text"] = "1 Added Passive Skill is Follow-Through", + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6770_AfflictionNotableFeastofFlesh"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2396755365", - ["text"] = "1 Added Passive Skill is Feast of Flesh", }, }, - ["6941_AfflictionNotableViciousSkewering"] = { + ["1703_ChaosDamageAsPortionOfLightningDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_567971948", - ["text"] = "1 Added Passive Skill is Vicious Skewering", }, }, - ["6882_AfflictionNotableRoteReinforcement"] = { - ["specialCaseData"] = { + ["1703_LightningAddedAsChaos"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2478282326", - ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6768_AfflictionNotableFasting"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_37078857", - ["text"] = "1 Added Passive Skill is Fasting", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6929_AfflictionNotableTouchofCruelty"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2780712583", - ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6956_AfflictionNotableWinterCommander"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_792262925", - ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6912_AfflictionNotableStormDrinker"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2087561637", - ["text"] = "1 Added Passive Skill is Storm Drinker", + ["Claw"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6673_AfflictionNotableAncestralMight"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3998316", - ["text"] = "1 Added Passive Skill is Ancestral Might", + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6853_AfflictionNotablePreciseCommander"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3860179422", - ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6743_AfflictionNotableDoedresGluttony"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2695848124", - ["text"] = "1 Added Passive Skill is Doedre's Gluttony", }, }, - ["6920_AfflictionNotableSummerCommander"] = { + ["1705_ChaosDamageAsPortionOfColdDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3881737087", - ["text"] = "1 Added Passive Skill is Mortifying Aspect", }, }, - ["6862_AfflictionNotableProvocateur"] = { - ["specialCaseData"] = { + ["1705_ColdAddedAsChaos"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_814369372", - ["text"] = "1 Added Passive Skill is Provocateur", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6668_AfflictionNotableAggressiveDefence"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4154008618", - ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6695_AfflictionNotableBodyguards"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_791125124", - ["text"] = "1 Added Passive Skill is Bodyguards", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6801_AfflictionNotableHitandRun"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2665170385", - ["text"] = "1 Added Passive Skill is Hit and Run", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, }, - }, - ["6938_AfflictionNotableVeteranDefender"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_664010431", - ["text"] = "1 Added Passive Skill is Veteran Defender", + ["Claw"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6830_AfflictionNotableMendersWellspring"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4291434923", - ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6897_AfflictionNotableShiftingShadow"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1476913894", - ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6927_AfflictionNotableThunderstruck"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1741700339", - ["text"] = "1 Added Passive Skill is Thunderstruck", }, }, - ["6924_AfflictionNotableSurpriseSabotage"] = { + ["1706_ChaosDamageAsPortionOfFireDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3051562738", - ["text"] = "1 Added Passive Skill is Surprise Sabotage", }, }, - ["6894_AfflictionNotableSelfFulfillingProphecy"] = { - ["specialCaseData"] = { + ["1706_FireAddedAsChaos"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2644533453", - ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6690_AfflictionNotableBlessed"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_775689239", - ["text"] = "1 Added Passive Skill is Blessed", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["6918_AfflictionNotableStudentofDecay"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3202667190", - ["text"] = "1 Added Passive Skill is Student of Decay", }, }, - ["6702_AfflictionNotableBurdenProjection"] = { + ["1707_ElementalDamagePercentAddedAsChaos"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2008682345", - ["text"] = "1 Added Passive Skill is Burden Projection", }, }, - ["6807_AfflictionNotableInsatiableKiller"] = { + ["1708_LifeDegenerationAndPercentGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_3904970959", - ["text"] = "1 Added Passive Skill is Insatiable Killer", }, }, - ["6855_AfflictionNotablePreciseRetaliation"] = { + ["1709_LifeRegenerationAndPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_2335364359", - ["text"] = "1 Added Passive Skill is Precise Retaliation", }, }, - ["6667_AfflictionNotableAgentofDestruction"] = { - ["specialCaseData"] = { + ["1709_LifeRegenerationRatePercentage"] = { + ["AbyssJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3122491961", - ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["Amulet"] = { + ["max"] = 3, + ["min"] = 2.1, }, - }, - ["6728_AfflictionNotableDarkMessenger"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3784610129", - ["text"] = "1 Added Passive Skill is Dark Messenger", + ["BaseJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, }, - }, - ["6886_AfflictionNotableSage"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_478147593", - ["text"] = "1 Added Passive Skill is Sage", + ["Chest"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["6952_AfflictionNotableWickedPall"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1616734644", - ["text"] = "1 Added Passive Skill is Wicked Pall", + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["6960_AfflictionNotableWoundAggravation"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_69078820", - ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6766_AfflictionNotableFanofBlades"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", ["type"] = "explicit", - ["id"] = "explicit.stat_2484082827", - ["text"] = "1 Added Passive Skill is Fan of Blades", }, }, - ["6828_AfflictionNotableMasterOfTheMaelstrom"] = { + ["170_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1325783255", + ["text"] = "#% to Quality of Socketed Active Skill Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_185592058", - ["text"] = "1 Added Passive Skill is Master of the Maelstrom", }, }, - ["6868_AfflictionNotablePurposefulHarbinger"] = { + ["1713_ChaosDamageOverTimeTaken"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", ["type"] = "explicit", - ["id"] = "explicit.stat_507505131", - ["text"] = "1 Added Passive Skill is Purposeful Harbinger", }, }, - ["6859_AfflictionNotablePrismaticDance"] = { + ["1713_ChaosResistanceDamageOverTime"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", ["type"] = "explicit", - ["id"] = "explicit.stat_1149662934", - ["text"] = "1 Added Passive Skill is Prismatic Dance", }, }, - ["6869_AfflictionNotableQuickandDeadly"] = { - ["specialCaseData"] = { + ["1720_ConvertPhysicalToFire"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2169345147", - ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["1HMace"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6795_AfflictionNotableHeartofIron"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1483358825", - ["text"] = "1 Added Passive Skill is Heart of Iron", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6834_AfflictionNotableMoltenOnesMark"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3875792669", - ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["2HMace"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6785_AfflictionNotableGladiatorialCombat"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1543731719", - ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6887_AfflictionNotableSapPsyche"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_715786975", - ["text"] = "1 Added Passive Skill is Sap Psyche", + ["Quiver"] = { + ["max"] = 25, + ["min"] = 18, }, - }, - ["6721_AfflictionNotableCorrosiveElements"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1777139212", - ["text"] = "1 Added Passive Skill is Corrosive Elements", }, }, - ["6817_AfflictionNotableLiquidInspiration"] = { - ["specialCaseData"] = { + ["1720_ConvertPhysicalToFireMaven"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1094635162", - ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["Quiver"] = { + ["max"] = 25, + ["min"] = 22, }, - }, - ["6821_AfflictionNotableMagnifier"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2886441936", - ["text"] = "1 Added Passive Skill is Magnifier", }, }, - ["6700_AfflictionNotableBrushwithDeath"] = { + ["1720_FireDamagePhysConvertedToFire"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2900833792", - ["text"] = "1 Added Passive Skill is Brush with Death", }, }, - ["6739_AfflictionNotableDisorientingDisplay"] = { + ["1722_ColdDamagePhysConvertedToCold"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3206911230", - ["text"] = "1 Added Passive Skill is Disorienting Display", }, }, - ["6752_AfflictionNotableEnduringComposure"] = { - ["specialCaseData"] = { + ["1722_ConvertPhysicalToCold"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2043284086", - ["text"] = "1 Added Passive Skill is Enduring Composure", + ["1HMace"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6704_AfflictionNotableCalamitous"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3359207393", - ["text"] = "1 Added Passive Skill is Calamitous", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6771_AfflictionNotableFeastingFiends"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_383245807", - ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["2HSword"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6733_AfflictionNotableMiseryEverlasting"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3832665876", - ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["Claw"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6778_AfflictionNotableFlowofLife"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2350430215", - ["text"] = "1 Added Passive Skill is Flow of Life", + ["Gloves"] = { + ["max"] = 35, + ["min"] = 18, }, - }, - ["6852_AfflictionNotablePracticedCaster"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3435403756", - ["text"] = "1 Added Passive Skill is Practiced Caster", }, }, - ["6896_AfflictionNotableSetandForget"] = { - ["specialCaseData"] = { + ["1722_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1101250813", - ["text"] = "1 Added Passive Skill is Set and Forget", + ["Quiver"] = { + ["max"] = 25, + ["min"] = 22, }, - }, - ["6847_AfflictionNotablePeaceAmidstChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1734275536", - ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", }, }, - ["6926_AfflictionNotableThaumophage"] = { - ["specialCaseData"] = { + ["1724_ConvertPhysicalToLightning"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_177215332", - ["text"] = "1 Added Passive Skill is Thaumophage", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6806_AfflictionNotableImprovisor"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_810219447", - ["text"] = "1 Added Passive Skill is Improvisor", + ["Claw"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6891_AfflictionNotableSealMender"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 30, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_876846990", - ["text"] = "1 Added Passive Skill is Seal Mender", + ["Gloves"] = { + ["max"] = 35, + ["min"] = 18, }, - }, - ["6732_AfflictionNotableDeepCuts"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_410939404", - ["text"] = "1 Added Passive Skill is Deep Cuts", + ["Staff"] = { + ["max"] = 30, + ["min"] = 23, }, - }, - ["6881_AfflictionNotableRotResistant"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_713945233", - ["text"] = "1 Added Passive Skill is Rot-Resistant", }, }, - ["6933_AfflictionNotableUntouchable"] = { - ["specialCaseData"] = { + ["1724_ConvertPhysicalToLightningMaven"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2758966888", - ["text"] = "1 Added Passive Skill is Untouchable", + ["Quiver"] = { + ["max"] = 25, + ["min"] = 22, }, - }, - ["6697_AfflictionNotableBrandLoyalty"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3198006994", - ["text"] = "1 Added Passive Skill is Brand Loyalty", }, }, - ["6800_AfflictionNotableHibernator"] = { + ["1724_LightningDamagePhysConvertedToLightning"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2294919888", - ["text"] = "1 Added Passive Skill is Hibernator", }, }, - ["6936_AfflictionNotableVastPower"] = { - ["specialCaseData"] = { + ["1727_PhysicalDamageConvertedToChaos"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1996576560", - ["text"] = "1 Added Passive Skill is Vast Power", + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6836_AfflictionNotableNaturalVigour"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_510654792", - ["text"] = "1 Added Passive Skill is Natural Vigour", + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6809_AfflictionNotableInsulated"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_212648555", - ["text"] = "1 Added Passive Skill is Insulated", + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6906_AfflictionNotableSpecialReserve"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4235300427", - ["text"] = "1 Added Passive Skill is Special Reserve", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6915_AfflictionNotableStreamlined"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1397498432", - ["text"] = "1 Added Passive Skill is Streamlined", + ["Claw"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6791_AfflictionNotableGroundedCommander"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1309218394", - ["text"] = "1 Added Passive Skill is Introspection", + ["Staff"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["6740_AfflictionNotableDisorientingWounds"] = { + ["Wand"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3351136461", - ["text"] = "1 Added Passive Skill is Disorienting Wounds", }, }, - ["6890_AfflictionNotableScintillatingIdea"] = { - ["specialCaseData"] = { + ["1738_MinionDamage"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2589589781", - ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - }, - ["6680_AfflictionNotableArcanePyrotechnics"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 45, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2043503530", - ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["Ring"] = { + ["max"] = 42, + ["min"] = 5, }, - }, - ["6804_AfflictionNotableHoundsMark"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_555800967", - ["text"] = "1 Added Passive Skill is Hound's Mark", }, }, - ["6729_AfflictionNotableDartingMovements"] = { - ["specialCaseData"] = { + ["1738_MinionDamageAndMinionMaximumLife"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_846491278", - ["text"] = "1 Added Passive Skill is Darting Movements", + ["1HMace"] = { + ["max"] = 59, + ["min"] = 16, }, - }, - ["6872_AfflictionNotableRattlingBellow"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 59, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4288473380", - ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 16, }, - }, - ["6722_AfflictionNotableCremator"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 26, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1153801980", - ["text"] = "1 Added Passive Skill is Cremator", + ["2HMace"] = { + ["max"] = 59, + ["min"] = 26, }, - }, - ["6902_AfflictionNotableSmitetheWeak"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 59, + ["min"] = 26, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_540300548", - ["text"] = "1 Added Passive Skill is Smite the Weak", + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 26, }, - }, - ["6947_AfflictionNotableWardbreaker"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 59, + ["min"] = 26, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2454339320", - ["text"] = "1 Added Passive Skill is Forbidden Words", + ["Claw"] = { + ["max"] = 59, + ["min"] = 16, }, - }, - ["6760_AfflictionNotableExpendability"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 59, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2020075345", - ["text"] = "1 Added Passive Skill is Expendability", + ["Staff"] = { + ["max"] = 59, + ["min"] = 26, }, - }, - ["6944_AfflictionNotableVitalFocus"] = { + ["Wand"] = { + ["max"] = 59, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2134141047", - ["text"] = "1 Added Passive Skill is Vital Focus", }, }, - ["6818_AfflictionNotableLowTolerance"] = { - ["specialCaseData"] = { + ["1738_MinionDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3989400244", - ["text"] = "1 Added Passive Skill is Low Tolerance", + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - }, - ["6735_AfflictionNotableDevastator"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3711553948", - ["text"] = "1 Added Passive Skill is Devastator", }, }, - ["6935_AfflictionNotableUnwaveringlyEvil"] = { - ["specialCaseData"] = { + ["1738_MinionDamageOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 94, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2788982914", - ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["1HMace"] = { + ["max"] = 94, + ["min"] = 20, }, - }, - ["6663_AfflictionNotableAdrenaline"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 94, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4022743870", - ["text"] = "1 Added Passive Skill is Adrenaline", + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, }, - }, - ["6750_AfflictionNotableEmpoweredEnvoy"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2032453153", - ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["2HMace"] = { + ["max"] = 144, + ["min"] = 30, }, - }, - ["6776_AfflictionNotableLordofDrought"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 144, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2055715585", - ["text"] = "1 Added Passive Skill is Lord of Drought", + ["2HWeapon"] = { + ["max"] = 144, + ["min"] = 30, }, - }, - ["6698_AfflictionNotableBrewedforPotency"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 144, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3250272113", - ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["Claw"] = { + ["max"] = 94, + ["min"] = 20, }, - }, - ["6930_AfflictionNotableToweringThreat"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 94, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3536778624", - ["text"] = "1 Added Passive Skill is Towering Threat", + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, }, - }, - ["6950_AfflictionNotableWeightAdvantage"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 144, + ["min"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2244243943", - ["text"] = "1 Added Passive Skill is Weight Advantage", + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, }, - }, - ["6674_AfflictionNotableAncestralPreservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3746703776", - ["text"] = "1 Added Passive Skill is Ancestral Preservation", }, }, - ["6889_AfflictionNotableSavourtheMoment"] = { - ["specialCaseData"] = { + ["1738_MinionDamageOnWeaponAndMana"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3539175001", - ["text"] = "1 Added Passive Skill is Savour the Moment", + ["Wand"] = { + ["max"] = 39, + ["min"] = 5, }, - }, - ["6873_AfflictionNotableRazeandPillage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1038897629", - ["text"] = "1 Added Passive Skill is Raze and Pillage", }, }, - ["6730_AfflictionNotableDeadlyRepartee"] = { + ["1738_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1013470938", - ["text"] = "1 Added Passive Skill is Deadly Repartee", }, }, - ["6943_AfflictionNotableVileReinvigoration"] = { + ["1738_MinionDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_647201233", - ["text"] = "1 Added Passive Skill is Vile Reinvigoration", }, }, - ["6845_AfflictionNotableOverwhelmingMalice"] = { - ["specialCaseData"] = { + ["1739_MinionDamageIfMinionSkillUsedRecently"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_770408103", - ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["6687_AfflictionNotableBlacksmith"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_412745376", + ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", ["type"] = "explicit", - ["id"] = "explicit.stat_1127706436", - ["text"] = "1 Added Passive Skill is Blacksmith", }, }, - ["6856_AfflictionNotablePressurePoints"] = { - ["specialCaseData"] = { + ["1743_ElementalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 49, + ["min"] = 19, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3391925584", - ["text"] = "1 Added Passive Skill is Pressure Points", + ["1HMace"] = { + ["max"] = 49, + ["min"] = 19, }, - }, - ["6849_AfflictionNotablePhlebotomist"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 49, + ["min"] = 19, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3057154383", - ["text"] = "1 Added Passive Skill is Phlebotomist", + ["1HWeapon"] = { + ["max"] = 49, + ["min"] = 19, }, - }, - ["6664_AfflictionNotableAdvanceGuard"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 94, + ["min"] = 37, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1625939562", - ["text"] = "1 Added Passive Skill is Advance Guard", + ["2HMace"] = { + ["max"] = 94, + ["min"] = 37, }, - }, - ["6746_AfflictionNotableDreadMarch"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 94, + ["min"] = 37, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3087667389", - ["text"] = "1 Added Passive Skill is Dread March", + ["2HWeapon"] = { + ["max"] = 94, + ["min"] = 37, }, - }, - ["6925_AfflictionNotableTemperedArrowheads"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2631806437", - ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["Bow"] = { + ["max"] = 94, + ["min"] = 37, }, - }, - ["6710_AfflictionNotableCirclingOblivion"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 49, + ["min"] = 19, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2129392647", - ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["Dagger"] = { + ["max"] = 49, + ["min"] = 19, }, - }, - ["6883_AfflictionNotableRottenClaws"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 22, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2289610642", - ["text"] = "1 Added Passive Skill is Rotten Claws", + ["Ring"] = { + ["max"] = 30, + ["min"] = 25, }, - }, - ["6823_AfflictionNotableMartialMomentum"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 94, + ["min"] = 37, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2978494217", - ["text"] = "1 Added Passive Skill is Martial Momentum", + ["Wand"] = { + ["max"] = 49, + ["min"] = 19, }, - }, - ["6931_AfflictionNotableUnholyGrace"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4186213466", - ["text"] = "1 Added Passive Skill is Unholy Grace", }, }, - ["6772_AfflictionNotableFeedtheFury"] = { + ["1743_ElementalDamagePercentMaven"] = { + ["Helmet"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3944525413", - ["text"] = "1 Added Passive Skill is Feed the Fury", }, }, - ["6885_AfflictionNotableSadist"] = { - ["specialCaseData"] = { + ["1743_ElementalDamagePrefixElementalFocus"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3638731729", - ["text"] = "1 Added Passive Skill is Sadist", + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, }, - }, - ["6850_AfflictionNotablePowerfulAssault"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1005475168", - ["text"] = "1 Added Passive Skill is Powerful Assault", }, }, - ["6799_AfflictionNotableHexBreaker"] = { + ["174_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2062835769", + ["text"] = "#% to Quality of Socketed Chaos Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2341828832", - ["text"] = "1 Added Passive Skill is Hex Breaker", }, }, - ["6832_AfflictionNotableMindfulness"] = { + ["1751_BlockPercentMaven"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2595115995", - ["text"] = "1 Added Passive Skill is Mindfulness", }, }, - ["6753_AfflictionNotableEnduringFocus"] = { + ["1751_MaximumBlockChance"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2522970386", - ["text"] = "1 Added Passive Skill is Enduring Focus", }, }, - ["6748_AfflictionNotableEldritchInspiration"] = { + ["1752_MaximumSpellBlockChance"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3737604164", - ["text"] = "1 Added Passive Skill is Eldritch Inspiration", }, }, - ["6684_AfflictionNotableBasicsofPain"] = { + ["1752_SpellBlockPercentageMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3084359503", - ["text"] = "1 Added Passive Skill is Basics of Pain", }, }, - ["6701_AfflictionNotableBrutalInfamy"] = { - ["specialCaseData"] = { + ["1757_KnockbackChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2068574831", - ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["6955_AfflictionNotableWindup"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", ["type"] = "explicit", - ["id"] = "explicit.stat_1938661964", - ["text"] = "1 Added Passive Skill is Wind-up", }, }, - ["6782_AfflictionNotableFueltheFight"] = { + ["1758_ProjectileDamageAndProjectileSpeed"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3599340381", - ["text"] = "1 Added Passive Skill is Fuel the Fight", }, }, - ["6762_AfflictionNotableExplosiveForce"] = { - ["specialCaseData"] = { + ["1758_ProjectileDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2017927451", - ["text"] = "1 Added Passive Skill is Explosive Force", + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - }, - ["6841_AfflictionNotableOpenness"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_633943719", - ["text"] = "1 Added Passive Skill is Openness", }, }, - ["6742_AfflictionNotableDoedresApathy"] = { + ["1758_ProjectileDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1381945089", - ["text"] = "1 Added Passive Skill is Doedre's Apathy", }, }, - ["6759_AfflictionNotableExpansiveMight"] = { - ["specialCaseData"] = { + ["1758_SupportedByLesserMultipleProjectilesDamage"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_394918362", - ["text"] = "1 Added Passive Skill is Expansive Might", + ["Wand"] = { + ["max"] = 30, + ["min"] = 15, }, - }, - ["6749_AfflictionNotableElegantForm"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_289714529", - ["text"] = "1 Added Passive Skill is Elegant Form", }, }, - ["6736_AfflictionNotableDisciples"] = { - ["specialCaseData"] = { + ["1759_ProjectileAttackDamage"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3177526694", - ["text"] = "1 Added Passive Skill is Disciples", + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["6712_AfflictionNotableColdBloodedKiller"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_836566759", - ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", }, }, - ["6835_AfflictionNotableMysticalWard"] = { + ["175_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1164882313", + ["text"] = "#% to Quality of Socketed Cold Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2314111938", - ["text"] = "1 Added Passive Skill is Mystical Ward", }, }, - ["6825_AfflictionNotableMasterofCommand"] = { - ["specialCaseData"] = { + ["1786_LocalAccuracyRating"] = { + ["1HAxe"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3257074218", - ["text"] = "1 Added Passive Skill is Master of Command", + ["1HMace"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6851_AfflictionNotablePowerfulWard"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_164032122", - ["text"] = "1 Added Passive Skill is Powerful Ward", + ["1HWeapon"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6903_AfflictionNotableSmokingRemains"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2322980282", - ["text"] = "1 Added Passive Skill is Smoking Remains", + ["2HMace"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6905_AfflictionNotableSnowstorm"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1595367309", - ["text"] = "1 Added Passive Skill is Snowstorm", + ["2HWeapon"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6727_AfflictionNotableDarkIdeation"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1603621602", - ["text"] = "1 Added Passive Skill is Dark Ideation", + ["Claw"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6848_AfflictionNotablePeakVigour"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 780, + ["min"] = 80, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1722821275", - ["text"] = "1 Added Passive Skill is Peak Vigour", + ["Staff"] = { + ["max"] = 780, + ["min"] = 80, }, - }, - ["6709_AfflictionNotableChipAway"] = { + ["Wand"] = { + ["max"] = 780, + ["min"] = 80, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_968069586", - ["text"] = "1 Added Passive Skill is Chip Away", }, }, - ["6921_AfflictionNotableSupercharge"] = { + ["1786_LocalAccuracyRatingAndLocalItemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_3226074658", - ["text"] = "1 Added Passive Skill is Supercharge", }, }, - ["6842_AfflictionNotableOpportunisticFusilade"] = { - ["specialCaseData"] = { + ["1786_LocalAccuracyRatingStrengthDexterity"] = { + ["1HAxe"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4281625943", - ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["1HMace"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6831_AfflictionNotableMilitarism"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4154709486", - ["text"] = "1 Added Passive Skill is Militarism", + ["1HWeapon"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6714_AfflictionNotableColdtotheCore"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_744783843", - ["text"] = "1 Added Passive Skill is Cold to the Core", + ["2HMace"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6775_AfflictionNotableFirstAmongEquals"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1134501245", - ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["2HWeapon"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6747_AfflictionNotableDrivetheDestruction"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1911162866", - ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["Claw"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6731_AfflictionNotableDeepChill"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 350, + ["min"] = 161, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1703766309", - ["text"] = "1 Added Passive Skill is Deep Chill", + ["Staff"] = { + ["max"] = 350, + ["min"] = 161, }, - }, - ["6874_AfflictionNotableReadiness"] = { + ["Wand"] = { + ["max"] = 350, + ["min"] = 161, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_845306697", - ["text"] = "1 Added Passive Skill is Readiness", }, }, - ["6857_AfflictionNotablePrimordialBond"] = { - ["specialCaseData"] = { + ["1786_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HAxe"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_622362787", - ["text"] = "1 Added Passive Skill is Primordial Bond", + ["1HMace"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6923_AfflictionNotableSurgingVitality"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2410501331", - ["text"] = "1 Added Passive Skill is Surging Vitality", + ["1HWeapon"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6720_AfflictionNotableCookedAlive"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2938895712", - ["text"] = "1 Added Passive Skill is Cooked Alive", + ["2HMace"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6672_AfflictionNotableAncestralInspiration"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_77045106", - ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6761_AfflictionNotableExpertSabotage"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2084371547", - ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["Claw"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6691_AfflictionNotableBlessedRebirth"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 200, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1424794574", - ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["Staff"] = { + ["max"] = 200, + ["min"] = 16, }, - }, - ["6694_AfflictionNotableBlowback"] = { + ["Wand"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_1612414696", - ["text"] = "1 Added Passive Skill is Blowback", }, }, - ["6744_AfflictionNotableDoryanisLesson"] = { + ["1786_LocalLightRadiusAndAccuracy"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", - ["id"] = "explicit.stat_228455793", - ["text"] = "1 Added Passive Skill is Doryani's Lesson", }, }, - ["6718_AfflictionNotableConjuredWall"] = { - ["specialCaseData"] = { + ["1788_ChanceToIgnite"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4105031548", - ["text"] = "1 Added Passive Skill is Conjured Wall", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["6780_AfflictionNotableForceMultiplier"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1904581068", - ["text"] = "1 Added Passive Skill is Force Multiplier", + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["6725_AfflictionNotableDaringIdeas"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_2534405517", - ["text"] = "1 Added Passive Skill is Daring Ideas", }, }, - ["6937_AfflictionNotableVengefulCommander"] = { + ["1788_ChanceToIgniteForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_2620267328", - ["text"] = "1 Added Passive Skill is Righteous Path", }, }, - ["6816_AfflictionNotableTempttheStorm"] = { - ["specialCaseData"] = { + ["1788_FireDamageAndChanceToIgnite"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_348883745", - ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["1HMace"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6826_AfflictionNotableMasterofFear"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2771217016", - ["text"] = "1 Added Passive Skill is Master of Fear", + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6793_AfflictionNotableHaemorrhage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_72129119", - ["text"] = "1 Added Passive Skill is Haemorrhage", + ["2HMace"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6843_AfflictionNotableOverlord"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2250169390", - ["text"] = "1 Added Passive Skill is Overlord", + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6692_AfflictionNotableBloodArtist"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2284771334", - ["text"] = "1 Added Passive Skill is Blood Artist", + ["Claw"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6803_AfflictionNotableHolyConquest"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3898572660", - ["text"] = "1 Added Passive Skill is Holy Conquest", + ["Staff"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6784_AfflictionNotableGenius"] = { + ["Wand"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_2763732093", - ["text"] = "1 Added Passive Skill is Genius", }, }, - ["6708_AfflictionNotableChillingPresence"] = { + ["1788_IgniteChanceAndDamage"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_2834490860", - ["text"] = "1 Added Passive Skill is Chilling Presence", }, }, - ["6884_AfflictionNotableRunThrough"] = { + ["1788_IgniteChanceAndDamageMaven"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_1488030420", - ["text"] = "1 Added Passive Skill is Run Through", }, }, - ["6954_AfflictionNotableWillShaper"] = { - ["specialCaseData"] = { + ["1788_IgniteChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1162352537", - ["text"] = "1 Added Passive Skill is Will Shaper", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["6777_AfflictionNotableFlexibleSentry"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", ["type"] = "explicit", - ["id"] = "explicit.stat_982290947", - ["text"] = "1 Added Passive Skill is Flexible Sentry", }, }, - ["6811_AfflictionNotableInvigoratingPortents"] = { + ["178_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_3422008440", + ["text"] = "#% to Quality of Socketed Fire Gems", ["type"] = "explicit", - ["id"] = "explicit.stat_2262034536", - ["text"] = "1 Added Passive Skill is Invigorating Portents", }, }, - ["6666_AfflictionNotableAerodynamics"] = { - ["specialCaseData"] = { + ["1791_ChanceToFreeze"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4120556534", - ["text"] = "1 Added Passive Skill is Aerodynamics", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["6871_AfflictionNotableRapidInfusion"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1570474940", - ["text"] = "1 Added Passive Skill is Rapid Infusion", + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["6756_AfflictionNotableEssenceRush"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_1096136223", - ["text"] = "1 Added Passive Skill is Essence Rush", }, }, - ["6878_AfflictionNotableRepeater"] = { + ["1791_ChanceToFreezeForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_2233272527", - ["text"] = "1 Added Passive Skill is Repeater", }, }, - ["6783_AfflictionNotableFuriousAssault"] = { - ["specialCaseData"] = { + ["1791_ColdDamageAndBaseChanceToFreeze"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3415827027", - ["text"] = "1 Added Passive Skill is Furious Assault", + ["1HMace"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6681_AfflictionNotableArcingShot"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3212859169", - ["text"] = "1 Added Passive Skill is Arcing Shot", + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6899_AfflictionNotableSkeletalAtrophy"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290215329", - ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["2HMace"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6703_AfflictionNotableBurningBright"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4199056048", - ["text"] = "1 Added Passive Skill is Burning Bright", + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6959_AfflictionNotableWizardry"] = { + ["Bow"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_3078065247", - ["text"] = "1 Added Passive Skill is Wizardry", }, }, - ["6683_AfflictionNotableAstonishingAffliction"] = { + ["1791_FreezeChanceAndDuration"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_2428334013", - ["text"] = "1 Added Passive Skill is Astonishing Affliction", }, }, - ["6838_AfflictionNotableNonFlammable"] = { + ["1791_FreezeChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_731840035", - ["text"] = "1 Added Passive Skill is Non-Flammable", }, }, - ["6914_AfflictionNotableStormsHand"] = { + ["1791_FreezeChanceAndDurationMaven"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", ["type"] = "explicit", - ["id"] = "explicit.stat_1122051203", - ["text"] = "1 Added Passive Skill is Storm's Hand", }, }, - ["6755_AfflictionNotableEnergyFromNaught"] = { - ["specialCaseData"] = { + ["1795_ChanceToShock"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2195518432", - ["text"] = "1 Added Passive Skill is Energy From Naught", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["6866_AfflictionNotablePureGuile"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1621496909", - ["text"] = "1 Added Passive Skill is Pure Guile", + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["6864_AfflictionNotablePureAptitude"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_3509724289", - ["text"] = "1 Added Passive Skill is Pure Aptitude", }, }, - ["6781_AfflictionNotableBlizzardCaller"] = { + ["1795_ChanceToShockForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_3758712376", - ["text"] = "1 Added Passive Skill is Blizzard Caller", }, }, - ["6833_AfflictionNotableMobMentality"] = { - ["specialCaseData"] = { + ["1795_LightningDamageAndChanceToShock"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1048879642", - ["text"] = "1 Added Passive Skill is Mob Mentality", + ["1HMace"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6913_AfflictionNotableStormrider"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_889728548", - ["text"] = "1 Added Passive Skill is Stormrider", + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6946_AfflictionNotableWallofMuscle"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1363668533", - ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["2HMace"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6786_AfflictionNotableGladiatorsFortitude"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1591995797", - ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6814_AfflictionNotableLeadByExample"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 40, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2195406641", - ["text"] = "1 Added Passive Skill is Lead By Example", + ["Claw"] = { + ["max"] = 40, + ["min"] = 13, }, - }, - ["6810_AfflictionNotableIntensity"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 40, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2785835061", - ["text"] = "1 Added Passive Skill is Intensity", + ["Staff"] = { + ["max"] = 40, + ["min"] = 21, }, - }, - ["6840_AfflictionNotableOnewiththeShield"] = { + ["Wand"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_1976069869", - ["text"] = "1 Added Passive Skill is One with the Shield", }, }, - ["6901_AfflictionNotableSleeplessSentries"] = { - ["specialCaseData"] = { + ["1795_ShockChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3993957711", - ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["6861_AfflictionNotableProdigiousDefense"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_1705633890", - ["text"] = "1 Added Passive Skill is Prodigious Defence", }, }, - ["6671_AfflictionNotableAncestralGuidance"] = { + ["1795_ShockChanceAndEffect"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_2387747995", - ["text"] = "1 Added Passive Skill is Ancestral Guidance", }, }, - ["6876_AfflictionNotableRend"] = { + ["1795_ShockChanceAndEffectMaven"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", ["type"] = "explicit", - ["id"] = "explicit.stat_4263287206", - ["text"] = "1 Added Passive Skill is Rend", }, }, - ["6706_AfflictionNotableCapacitor"] = { + ["1797_AreaDamageAndAreaOfEffect"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_4025536654", - ["text"] = "1 Added Passive Skill is Capacitor", }, }, - ["6867_AfflictionNotablePureMight"] = { - ["specialCaseData"] = { + ["1797_AreaDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2372915005", - ["text"] = "1 Added Passive Skill is Pure Might", + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - }, - ["6820_AfflictionNotableMageHunter"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_2118664144", - ["text"] = "1 Added Passive Skill is Mage Hunter", }, }, - ["6865_AfflictionNotablePureCommander"] = { + ["1797_AreaDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_3950683692", - ["text"] = "1 Added Passive Skill is Electric Presence", }, }, - ["6854_AfflictionNotablePreciseFocus"] = { - ["specialCaseData"] = { + ["1797_SupportedByIncreasedAreaOfEffectDamage"] = { + ["1HMace"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2913581789", - ["text"] = "1 Added Passive Skill is Precise Focus", + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6909_AfflictionNotableStalwartCommander"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2350668735", - ["text"] = "1 Added Passive Skill is Volatile Presence", + ["Wand"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6827_AfflictionNotableMasterofFire"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_1462135249", - ["text"] = "1 Added Passive Skill is Master of Fire", }, }, - ["6819_AfflictionNotableMageBane"] = { - ["specialCaseData"] = { + ["1797_SupportedByMeleeSplashDamage"] = { + ["1HAxe"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_684155617", - ["text"] = "1 Added Passive Skill is Mage Bane", + ["1HMace"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6741_AfflictionNotableDistilledPerfection"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3652138990", - ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6754_AfflictionNotableEnduringWard"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_252724319", - ["text"] = "1 Added Passive Skill is Enduring Ward", + ["2HMace"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6910_AfflictionNotableSteadyTorment"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3500334379", - ["text"] = "1 Added Passive Skill is Steady Torment", + ["2HWeapon"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6824_AfflictionNotableMartialProwess"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 37, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1152182658", - ["text"] = "1 Added Passive Skill is Martial Prowess", + ["Dagger"] = { + ["max"] = 37, + ["min"] = 23, }, - }, - ["6677_AfflictionNotableAntivenom"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "explicit", - ["id"] = "explicit.stat_774369953", - ["text"] = "1 Added Passive Skill is Antivenom", }, }, - ["6812_AfflictionNotableIronBreaker"] = { - ["specialCaseData"] = { + ["17_ItemGenerationCannotRollCasterAffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3258653591", - ["text"] = "1 Added Passive Skill is Iron Breaker", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6919_AfflictionNotableSublimeSensation"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1364858171", - ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6895_AfflictionNotableSepticSpells"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4290522695", - ["text"] = "1 Added Passive Skill is Septic Spells", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6822_AfflictionNotableMartialMastery"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1015189426", - ["text"] = "1 Added Passive Skill is Martial Mastery", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6945_AfflictionNotableVividHues"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3957006524", - ["text"] = "1 Added Passive Skill is Vivid Hues", + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6846_AfflictionNotableParalysis"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4272503233", - ["text"] = "1 Added Passive Skill is Paralysis", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6789_AfflictionNotableGrandDesign"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2350900742", - ["text"] = "1 Added Passive Skill is Grand Design", + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6758_AfflictionNotableEvilEye"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_156080652", - ["text"] = "1 Added Passive Skill is Evil Eye", + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6665_AfflictionNotableAerialist"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3848677307", - ["text"] = "1 Added Passive Skill is Aerialist", + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6893_AfflictionNotableSeekerRunes"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2261237498", - ["text"] = "1 Added Passive Skill is Seeker Runes", + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6679_AfflictionNotableArcaneHeroism"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3901992019", - ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6870_AfflictionNotableQuickGetaway"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", ["type"] = "explicit", - ["id"] = "explicit.stat_1626818279", - ["text"] = "1 Added Passive Skill is Quick Getaway", }, }, - ["6939_AfflictionNotableViciousBite"] = { - ["specialCaseData"] = { + ["1801_CullingStrike"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_882876854", - ["text"] = "1 Added Passive Skill is Vicious Bite", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6949_AfflictionNotableWastingAffliction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", ["type"] = "explicit", - ["id"] = "explicit.stat_2066820199", - ["text"] = "1 Added Passive Skill is Wasting Affliction", }, }, - }, - ["Exarch"] = { - ["1159_IncreasedChaosDamageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2875239648", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", - }, - ["specialCaseData"] = { + ["1801_CullingStrikeMaven"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6277_HeraldBonusAshEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_109112452", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["949_BoneOfferingEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2290911895", - ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", }, }, - ["3216_FlaskGainPerSecond"] = { - ["specialCaseData"] = { + ["1805_AlwaysHits"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1193283913", - ["text"] = "Flasks gain # Charges every 3 seconds", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 3, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1154_LightningDamage"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 11.5, - ["max"] = 21, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1398_MaximumColdResistanceEldritch"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { + ["Bow"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 3, }, - ["sign"] = "+", - }, - ["6291_HeraldBonusThunderEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1553385903", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1394_FireResistancePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1299790658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 29, - ["max"] = 36, + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "explicit", }, }, - ["6291_HeraldBonusThunderEffect"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814686091", - ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["1809_AttackAndCastSpeed"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["Quiver"] = { + ["max"] = 8, + ["min"] = 3, }, ["sign"] = "", - }, - ["1405_LightningResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, }, - ["1398_MaximumColdResistanceEldritchUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3444931985", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Cold Resistance", - }, - ["Chest"] = { - ["min"] = 2, + ["1809_AttackAndCastSpeedForJewel"] = { + ["AnyJewel"] = { ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "+", - }, - ["1034_ChaosDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2634574895", - ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Damage over Time Multiplier", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, }, - ["6285_HeraldBonusPurityEffect"] = { + ["1809_IncreasedAttackAndCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2126027382", - ["text"] = "Herald of Purity has #% increased Buff Effect", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, + }, + ["1809_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["max"] = 14, + ["min"] = 13, }, ["sign"] = "", - }, - ["1613_AvoidIgnitePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_911929910", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["180_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["max"] = 7, + ["min"] = 3, }, - }, - ["3032_OnslaughtEffectUniquePresence"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_491577732", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_1065580342", + ["text"] = "#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", }, }, - ["1565_MovementVelocity"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["1813_AccuracyRatingPerFrenzyChargeUber"] = { + ["1HSword"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { + ["2HSword"] = { + ["max"] = 5, ["min"] = 5, - ["max"] = 10, }, - ["Boots"] = { + ["2HWeapon"] = { + ["max"] = 5, ["min"] = 5, - ["max"] = 10, }, - }, - ["3744_CurseEffectEnfeeble"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3293830776", - ["text"] = "#% increased Enfeeble Curse Effect", + ["id"] = "explicit.stat_3700381193", + ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + }, + ["1822_GlobalFlaskLifeRecovery"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["4768_PowerChargePerSecond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3533655459", - ["text"] = "Gain a Power Charge every # seconds", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", }, + }, + ["1823_ManaRecoveryRateMaven"] = { ["Chest"] = { - ["min"] = 10, - ["max"] = 15, + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", - }, - ["1392_MaximumFireResistanceImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, }, - ["1179_SpellAddedLightningDamagePinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3874289", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", + ["1832_AddedPhysicalDamageWithAxes"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["Helmet"] = { - ["min"] = 37.5, - ["max"] = 65, + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, ["sign"] = "", - }, - ["4766_EnduranceChargePerSecond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2555092341", - ["text"] = "Gain an Endurance Charge every # seconds", - }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1230_SpellCriticalStrikeChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["1833_PhysicalDamageWithBowsJewel"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 28, - ["max"] = 45, - }, - ["Helmet"] = { - ["min"] = 28, - ["max"] = 45, - }, - }, - ["949_BoneOfferingEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1801289192", - ["text"] = "Bone Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "explicit", }, }, - ["4778_SappedGroundWhileMovingUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2220831041", - ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["1834_AddedPhysicalDamageWithClaws"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, + ["AnyJewel"] = { ["max"] = 9, + ["min"] = 2.5, }, - }, - ["1693_MineLayingSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 13, + ["id"] = "explicit.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1031_ColdDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["1835_AddedPhysicalDamageWithDaggers"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_621576159", - ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Damage over Time Multiplier", + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["type"] = "explicit", }, }, - ["1022_PhysicalDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["1836_AddedPhysicalDamageWithMaces"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_841219865", - ["text"] = "While a Unique Enemy is in your Presence, #% to Physical Damage over Time Multiplier", + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", }, }, - ["1979_GlobalIgniteProlifPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3343791355", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", + ["1837_AddedPhysicalDamageWithStaves"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 23, + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, ["sign"] = "", - }, - ["2445_DamageRemovedFromManaBeforeLifeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1749598944", - ["text"] = "While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3742_CurseEffectConductivityPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2095999895", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", + ["1838_AddedPhysicalDamageWithSwords"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, ["sign"] = "", - }, - ["1533_MinionLifeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3044748809", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", + ["id"] = "explicit.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 35, + }, + ["1839_AddedPhysicalDamageWithWands"] = { + ["AbyssJewel"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["AnyJewel"] = { + ["max"] = 9, + ["min"] = 2.5, }, ["sign"] = "", - }, - ["3028_DamagePerFrenzyCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", + ["id"] = "explicit.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1842_AddedFireDamageWithAxes"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - }, - ["4766_EnduranceChargePerSecondUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2441896589", - ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", + ["id"] = "explicit.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, - }, - ["sign"] = "", }, - ["1159_IncreasedChaosDamage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["1843_FireDamageWithBowsJewel"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "explicit", }, }, - ["1140_ColdDamagePercentagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1576689223", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + ["1844_AddedFireDamageWithClaws"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, - }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, - }, - }, - ["1400_ColdResistancePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3864103630", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 29, - ["max"] = 36, + ["id"] = "explicit.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["type"] = "explicit", }, }, - ["4767_FrenzyChargePerSecondUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2847070982", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + ["1845_AddedFireDamageWithDaggers"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - }, - ["1982_FreezeProliferationPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1436051850", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 23, + ["id"] = "explicit.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3827_RockGolemBuffEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1846_AddedFireDamageWithMaces"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_438468314", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, - }, - }, - ["4768_PowerChargePerSecondUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_46472075", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + ["id"] = "explicit.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + }, + ["1847_AddedFireDamageWithStaves"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - }, - ["1178_SpellAddedColdDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 13, + }, + ["1848_AddedFireDamageWithSwords"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["AnyJewel"] = { ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - }, - ["3745_CurseEffectFlammabilityUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1394267723", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["id"] = "explicit.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1131_FireDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1590336483", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + ["1849_AddedFireDamageWithWands"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 8, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, - }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, - }, - }, - ["8928_TempestShieldBuffEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_942478380", - ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + ["id"] = "explicit.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + }, + ["1850_AddedColdDamageWithAxes"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["1979_GlobalIgniteProlifUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1698847655", - ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1615_AvoidShockPinnaclePresence"] = { - ["specialCaseData"] = { + ["1851_AddedColdDamageWithBows"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3823702653", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, - }, - }, - ["1692_TrapThrowSpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2479119864", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + ["id"] = "explicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 17, + }, + ["1852_AddedColdDamageWithClaws"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["3744_CurseEffectEnfeebleUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_937462392", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + ["id"] = "explicit.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + }, + ["1853_AddedColdDamageWithDaggers"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["6570_LightningDamageTakenGainedAsLifePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3870554516", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["id"] = "explicit.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["951_SpiritOfferingEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1854_AddedColdDamageWithMaces"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2399066987", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, - }, - }, - ["3740_CurseEffectTemporalChainsPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3695602451", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + ["id"] = "explicit.stat_187418672", + ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + }, + ["1855_AddedColdDamageWithStaves"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["6570_LightningDamageTakenGainedAsLifeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1146717028", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["id"] = "explicit.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4534_CarrionGolemBuffEffect"] = { - ["specialCaseData"] = { + ["1856_AddedColdDamageWithSwords"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2420972973", - ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, - }, - }, - ["1134_FireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["id"] = "explicit.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 18.5, + }, + ["1857_AddedColdDamageWithWands"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 21.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["1693_MineLayingSpeedPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3827973062", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", + ["id"] = "explicit.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 21, + }, + ["1858_AddedLightningDamageWithAxes"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - }, - ["1180_SpellAddedChaosDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1554912650", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 15.5, - ["max"] = 28, + ["id"] = "explicit.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1618_AvoidStunUniquePresence"] = { - ["specialCaseData"] = { + ["1859_AddedLightningDamageWithBows"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3322913142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, - }, - }, - ["3754_ArcticArmourBuffEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3744585764", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", - }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + ["id"] = "explicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3830_LightningGolemBuffEffect"] = { - ["specialCaseData"] = { + ["1860_AddedLightningDamageWithClaws"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527931375", - ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, - }, - }, - ["6079_GolemBuffEffectUniquePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4128294206", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems", - }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["id"] = "explicit.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1612_AvoidFreezePinnaclePresence"] = { - ["specialCaseData"] = { + ["1861_AddedLightningDamageWithDaggers"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2661498709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, - }, - }, - ["5171_ColdDamageTakenGainedAsLifeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1739741837", - ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + }, + ["1862_AddedLightningDamageWithMaces"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - }, - ["3032_OnslaughtEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", }, }, - ["1533_MinionLifePinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4057257145", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", + ["1863_AddedLightningDamageWithStaves"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 32, - ["max"] = 41, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - }, - ["1612_AvoidFreezeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3887072924", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["id"] = "explicit.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["type"] = "explicit", }, }, - ["3032_OnslaughtEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1864_AddedLightningDamageWithSwords"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3209267362", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, - }, - }, - ["1405_LightningResistanceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556129896", - ["text"] = "While a Unique Enemy is in your Presence, #% to Lightning Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["id"] = "explicit.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["type"] = "explicit", }, }, - ["1410_MaximumResistances"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 2, + ["1865_AddedLightningDamageWithWands"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 2, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 10, }, - }, - ["1983_ShockProliferationPinnaclePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2218095219", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 23, + ["id"] = "explicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1034_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["1866_AddedChaosDamageWithBows"] = { + ["AbyssJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2163155983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Damage over Time Multiplier", + ["AnyJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["tradeMod"] = { + ["id"] = "explicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "explicit", }, }, - ["6570_LightningDamageTakenGainedAsLife"] = { + ["1867_AddedChaosDamageWithClaws"] = { + ["AbyssJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "explicit.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + }, + ["1868_AddedChaosDamageWithDaggers"] = { + ["AbyssJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["AnyJewel"] = { + ["max"] = 18.5, + ["min"] = 6.5, }, ["sign"] = "", - }, - ["3740_CurseEffectTemporalChainsUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_485385046", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", + ["id"] = "explicit.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + }, + ["1869_SpellAddedChaosDamageWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["8928_TempestShieldBuffEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2601015548", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect", + ["id"] = "explicit.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + }, + ["1870_SpellAddedChaosDamageWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["6281_HeraldBonusIceEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1609260458", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect", + ["id"] = "explicit.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + }, + ["1871_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["5488_CurseEffectDespair"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3185156108", - ["text"] = "#% increased Despair Curse Effect", + ["id"] = "explicit.stat_1743759111", + ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + }, + ["1872_SpellAddedColdDamageWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["2445_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_699673918", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1180_SpellAddedChaosDamage"] = { + ["1873_SpellAddedColdDamageWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2671663397", + ["text"] = "# to # Added Spell Cold Damage while holding a Shield", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 21, + }, + ["1874_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["3744_CurseEffectEnfeeblePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_38083709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + ["id"] = "explicit.stat_2464689927", + ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + }, + ["1875_SpellAddedFireDamageWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["1288_StunThresholdReduction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1738_MinionDamage"] = { - ["Gloves"] = { - ["min"] = 14, - ["max"] = 29, + ["1876_SpellAddedFireDamageWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_44182350", + ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["type"] = "explicit", }, }, - ["8319_PhysicalDamageTakenGainedAsLife"] = { + ["1877_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4021566756", - ["text"] = "#% of Physical Damage taken Recouped as Life", + ["id"] = "explicit.stat_2135335407", + ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + }, + ["1878_SpellAddedLightningDamageWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["1403_MaximumLightningResistanceEldritchPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "explicit.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1143_ColdDamagePinnaclePresence"] = { + ["1879_SpellAddedLightningDamageWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1016130575", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 34, + ["id"] = "explicit.stat_1801889979", + ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1026_FireDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["1880_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1870961528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Damage over Time Multiplier", + ["AnyJewel"] = { + ["max"] = 28.5, + ["min"] = 3.5, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["tradeMod"] = { + ["id"] = "explicit.stat_2398198236", + ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", }, }, - ["1410_MaximumResistancesPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_673499528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all maximum Resistances", + ["1881_SpellAddedPhysicalDamageWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["type"] = "explicit", }, }, - ["3794_OfferingEffect"] = { + ["1882_SpellAddedPhysicalDamageWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", + ["id"] = "explicit.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 24, + }, + ["1883_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 20.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["1218_IncreasedCastSpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2016247664", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + ["id"] = "explicit.stat_2921084940", + ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 13, - ["max"] = 17, + }, + ["1887_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["1HSword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["4777_BrittleGroundWhileMovingPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_235328972", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["id"] = "explicit.stat_417188801", + ["text"] = "#% chance to gain an Endurance Charge when you Block", + ["type"] = "explicit", }, }, - ["1983_ShockProliferationUniquePresence"] = { + ["1888_EnduranceChargeDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2868404935", - ["text"] = "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1647_AreaOfEffect"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["1888_EnduranceChargeOnKillChanceMaven"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 50, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 18, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["1161_ChaosDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Gloves"] = { - ["min"] = 7.5, - ["max"] = 14, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, }, ["sign"] = "", - }, - ["6079_GolemBuffEffectUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2109043683", - ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["188_AreaOfEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["4186_ActionSpeedImplicitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1829486532", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 7, + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", }, }, - ["1692_TrapThrowSpeedPinnaclePresence"] = { - ["specialCaseData"] = { + ["188_SupportedByIncreasedAreaOfEffectDamage"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_547463927", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 21, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["5431_DamageTakenGainedAsLifePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2525287976", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life", - }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 31, + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3827_RockGolemBuffEffectUniquePresence"] = { + ["1890_FrenzyChargeDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1722486495", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", }, }, - ["1408_MaximumChaosResistanceImplicit"] = { - ["specialCaseData"] = { + ["1890_FrenzyChargeOnKillChanceMaven"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", + ["1HSword"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - ["sign"] = "+", - }, - ["1618_AvoidStun"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["5085_ChanceToUnnerveOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1708506642", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 50, }, ["Gloves"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quiver"] = { + ["max"] = 50, ["min"] = 50, - ["max"] = 70, }, ["sign"] = "", - }, - ["5889_FleshAndStoneAreaOfEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3393490212", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + }, + ["1898_DamageOverTimeWhileDualWielding"] = { + ["AbyssJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, ["sign"] = "", - }, - ["1183_IncreasedAttackSpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3401410854", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + ["id"] = "explicit.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 17, + }, + ["1899_DamageOverTimeWhileHoldingAShield"] = { + ["AbyssJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, ["sign"] = "", - }, - ["1159_IncreasedChaosDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2070979181", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + ["id"] = "explicit.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["189_SupportedByArcaneSurge"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["tradeMod"] = { + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", }, }, - ["1007_PhysicalDamagePercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2545907302", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + ["189_SupportedByArcaneSurgeWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["tradeMod"] = { + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", }, }, - ["1392_MaximumFireResistanceImplicitPinnaclePresence"] = { + ["189_WeaponSpellDamageArcaneSurge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", }, }, - ["1533_MinionLife"] = { - ["specialCaseData"] = { + ["18_ItemGenerationCannotRollAttackAffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1263_SpellCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_274716455", - ["text"] = "#% to Critical Strike Multiplier for Spell Damage", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["min"] = 20, - ["max"] = 31, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - }, - ["1403_MaximumLightningResistanceImplicit"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["Helmet"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 2, }, - ["sign"] = "+", - }, - ["6273_HeraldBonusAgonyEffect"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572910724", - ["text"] = "Herald of Agony has #% increased Buff Effect", + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1041_PhysicalDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3477311591", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 21.5, + }, + ["1900_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { + ["AbyssJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, ["sign"] = "", - }, - ["1218_IncreasedCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 13, + ["id"] = "explicit.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["5431_DamageTakenGainedAsLifeUniquePresence"] = { + ["1905_PowerChargeDurationForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2080582538", - ["text"] = "While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["5171_ColdDamageTakenGainedAsLifePinnaclePresence"] = { - ["specialCaseData"] = { + ["1905_PowerChargeOnKillChanceMaven"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181576428", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 50, }, ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, }, ["sign"] = "", - }, - ["1134_FireDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067485824", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 25, + }, + ["1920_IncreasedLifeLeechRate"] = { + ["Amulet"] = { + ["max"] = 150, + ["min"] = 150, + }, + ["Ring"] = { + ["max"] = 50, + ["min"] = 35, }, ["sign"] = "", - }, - ["3740_CurseEffectTemporalChains"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1662974426", - ["text"] = "#% increased Temporal Chains Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4779_ScorchedGroundMovingImplicit"] = { + ["1920_LifeLeechSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_396238230", - ["text"] = "Drops Scorched Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", }, }, - ["2939_DamagePerEnduranceChargeUniquePresence"] = { + ["1923_MaximumMinionCount"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2193147166", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 7, + ["id"] = "explicit.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", + ["type"] = "explicit", }, }, - ["1131_FireDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["1923_MaximumMinionCountAndMinionLife"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, - }, - }, - ["1230_SpellCriticalStrikeChanceUniquePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4191234472", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", + ["type"] = "explicit", }, + }, + ["1924_MaximumMinionCount"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_125218179", + ["text"] = "# to maximum number of Spectres", + ["type"] = "explicit", + }, + }, + ["1925_MaximumMinionCount"] = { ["Amulet"] = { - ["min"] = 43, - ["max"] = 57, + ["max"] = 1, + ["min"] = 1, }, ["Helmet"] = { - ["min"] = 43, - ["max"] = 57, + ["max"] = 1, + ["min"] = 1, }, - }, - ["5431_DamageTakenGainedAsLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 19, + ["id"] = "explicit.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1041_PhysicalDamageUniquePresence"] = { + ["1925_MaximumMinionCountAndMinionLife"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2521809744", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 14, + }, + ["1931_AdditionalCurseOnEnemies"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["6076_RageOnHitImplicitUniquePresence"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2076129434", - ["text"] = "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + }, + ["1931_AdditionalCurseOnEnemiesMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["4778_SappedGroundWhileMovingPinnaclePresence"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1296291315", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", }, }, - ["8319_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { + ["1931_OLDAdditionalCurseOnEnemiesMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1300694383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 23, + }, + ["1933_CurseEffectOnYouJewel"] = { + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["BaseJewel"] = { ["max"] = 30, + ["min"] = 25, }, ["sign"] = "", - }, - ["1536_MinionRunSpeedPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2809900883", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 34, + }, + ["1933_ReducedCurseEffect"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 16, }, ["sign"] = "", - }, - ["950_FleshOfferingEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_862077496", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", }, }, - ["1392_MaximumFireResistanceEldritchUniquePresence"] = { + ["1943_IgnoreArmourMovementPenalties"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "explicit.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["3754_ArcticArmourBuffEffectUniquePresence"] = { + ["1945_BeltIncreasedFlaskChargesGained"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4047779849", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + }, + ["1946_BeltReducedFlaskChargesUsed"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - }, - ["1409_ChaosResistanceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_744196525", - ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", }, }, - ["5785_ExtinguishOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["1949_BeltIncreasedFlaskDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4163073767", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, }, ["sign"] = "", - }, - ["1140_ColdDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, - }, - }, - ["1151_LightningDamagePercentagePinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1328859059", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["1951_BeltFlaskLifeRecoveryRate"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, - }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, - }, - }, - ["1161_ChaosDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2444070126", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 10.5, - ["max"] = 19, + }, + ["1952_BeltFlaskManaRecoveryRate"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["sign"] = "", - }, - ["1394_FireResistanceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3521653836", - ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", }, }, - ["5171_ColdDamageTakenGainedAsLife"] = { - ["specialCaseData"] = { + ["1964_AttackerTakesDamageNoRange"] = { + ["Belt"] = { + ["max"] = 200, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["Boots"] = { + ["max"] = 200, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 200, + ["min"] = 1, }, ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["max"] = 200, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 200, + ["min"] = 1, }, ["sign"] = "", - }, - ["1982_FreezeProliferationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2543269407", - ["text"] = "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8319_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["1975_CurseCastSpeedForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3796902731", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3742_CurseEffectConductivityUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3547319552", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", + ["197_LocalPhysicalDamagePercentBrutality"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - }, - ["1007_PhysicalDamagePercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["1151_LightningDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2668120423", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["5821_FireDamageTakenGainedAsLife"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["id"] = "explicit.stat_715256302", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3743_CurseEffectElementalWeaknessUniquePresence"] = { + ["1985_AuraRadiusForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_771845579", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["id"] = "explicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4186_ActionSpeedImplicitPinnaclePresence"] = { + ["1986_CurseAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2251857767", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 7, - ["max"] = 8, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", }, }, - ["1218_IncreasedCastSpeedPinnaclePresence"] = { + ["1986_CurseRadiusForJewel"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4098747485", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", - }, - ["Helmet"] = { - ["min"] = 18, - ["max"] = 21, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1177_SpellAddedFireDamage"] = { + ["1987_LifeReservationEfficiency"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 28, - }, - ["sign"] = "", }, - ["3794_OfferingEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2526554500", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + ["1989_ManaReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 14, + ["min"] = 4, }, - ["Chest"] = { - ["min"] = 29, - ["max"] = 36, + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["sign"] = "", - }, - ["5400_IncreasedDamagePerPowerChargePinnaclePresence"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2809284200", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + ["Chest"] = { + ["max"] = 10, + ["min"] = 3, }, ["Helmet"] = { - ["min"] = 7, - ["max"] = 8, + ["max"] = 14, + ["min"] = 3, }, ["sign"] = "", - }, - ["1693_MineLayingSpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1516326076", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 17, + }, + ["198_SupportedByCastOnDamageTaken"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, }, ["sign"] = "", - }, - ["1403_MaximumLightningResistanceEldritch"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["id"] = "explicit.stat_3036440332", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["3743_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["1993_IncreasedManaAndReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2029969019", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, + ["1993_ReducedReservation"] = { + ["Amulet"] = { + ["max"] = 14, + ["min"] = 12, }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["max"] = 14, + ["min"] = 8, }, ["sign"] = "", - }, - ["950_FleshOfferingEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3456379680", - ["text"] = "Flesh Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", }, }, - ["3747_CurseEffectPunishment"] = { + ["1995_PhysicalAttackDamageTaken"] = { + ["Belt"] = { + ["max"] = 36, + ["min"] = 35, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2844206732", - ["text"] = "#% increased Punishment Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3830_LightningGolemBuffEffectPinnaclePresence"] = { + ["1996_FlatPhysicalDamageTaken"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 34, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527345629", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["id"] = "explicit.stat_321765853", + ["text"] = "# Physical Damage taken from Hits", + ["type"] = "explicit", }, }, - ["1178_SpellAddedColdDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["199_SupportedByCastOnMeleeKillWeapon"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3349767748", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { - ["min"] = 27.5, - ["max"] = 50.5, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["3216_FlaskGainPerSecondUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2150799098", - ["text"] = "While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4534_CarrionGolemBuffEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["19_ItemGenerationCanHaveMultipleCraftedMods"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1080711147", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["5077_ChanceToIntimidateOnHitPinnaclePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3004272949", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["2445_DamageRemovedFromManaBeforeLife"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["4768_PowerChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2703923310", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1405_LightningResistancePinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3980173235", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Lightning Resistance", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 29, - ["max"] = 36, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1400_ColdResistanceUniquePresence"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2240274773", - ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Resistance", + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["6079_GolemBuffEffectUniqueUniquePresence"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2159248495", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["6285_HeraldBonusPurityEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005679448", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["id"] = "explicit.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["5889_FleshAndStoneAreaOfEffect"] = { + ["2004_ChaosDamageTakenPercentage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789978501", - ["text"] = "Flesh and Stone has #% increased Area of Effect", + ["id"] = "explicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + }, + ["2006_DegenDamageTaken"] = { + ["Shield"] = { + ["max"] = 10, + ["min"] = 4, }, ["sign"] = "", - }, - ["1738_MinionDamageUniquePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 41, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4189960647", - ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["200_SupportedByCastWhileChannellingWeapon"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, + ["Staff"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["3745_CurseEffectFlammability"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 10, + }, + ["2010_IncreasedShieldBlockPercentage"] = { + ["Shield"] = { ["max"] = 15, + ["min"] = 1, }, - ["sign"] = "", - }, - ["7948_StrikeSkillsAdditionalTarget"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1661253443", - ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["id"] = "explicit.stat_4253454700", + ["text"] = "#% Chance to Block (Shields)", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 1, + }, + ["2015_AdditionalTotems"] = { + ["Shield"] = { ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["3746_CurseEffectFrostbite"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_429867172", + ["text"] = "# to maximum number of Summoned Totems", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["2348_CurseEffectiveness"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", + ["2023_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 12, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["1615_AvoidShock"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["2HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["1983_ShockProliferation"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_424549222", - ["text"] = "Shocks you inflict spread to other Enemies within a Radius of #", + ["Bow"] = { + ["max"] = 25, + ["min"] = 13, }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 17, + ["Claw"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - }, - ["4766_EnduranceChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_951862199", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + ["Staff"] = { + ["max"] = 25, + ["min"] = 13, }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["Wand"] = { + ["max"] = 25, + ["min"] = 13, }, ["sign"] = "", - }, - ["5889_FleshAndStoneAreaOfEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1472965536", - ["text"] = "While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect", + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + }, + ["202_BleedingDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["9090_WarcryEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_794753348", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", - }, - ["Chest"] = { - ["min"] = 35, - ["max"] = 42, + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1262_AttackCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3714003708", - ["text"] = "#% to Critical Strike Multiplier for Attack Damage", + ["202_ChanceToBleedSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 31, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "+", - }, - ["1179_SpellAddedLightningDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { + ["1HWeapon"] = { + ["max"] = 20, ["min"] = 18, - ["max"] = 32.5, }, - ["sign"] = "", - }, - ["1134_FireDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3972399670", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Gloves"] = { - ["min"] = 20.5, - ["max"] = 38, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - }, - ["4438_ReducedAttackManaCostUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1116269888", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { - ["min"] = 27, - ["max"] = 36, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["4779_ScorchedGroundWhileMovingPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4054012096", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["2033_ReducedPhysicalDamageTaken"] = { ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["max"] = 8, + ["min"] = 4, }, - }, - ["3745_CurseEffectFlammabilityPinnaclePresence"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_323292443", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + ["Gloves"] = { + ["max"] = 8, + ["min"] = 4, }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["max"] = 8, + ["min"] = 4, }, - ["sign"] = "", - }, - ["4416_AttackCriticalStrikeChanceUniquePresence"] = { - ["Gloves"] = { - ["min"] = 34, - ["max"] = 48, + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3710240762", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + ["Shield"] = { + ["max"] = 5, + ["min"] = 2, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 34, - ["max"] = 48, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", }, }, - ["1398_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["2033_ReducedPhysicalDamageTakenMaven"] = { + ["Boots"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1408_MaximumChaosResistanceImplicitUniquePresence"] = { + ["2034_MinionPhysicalDamageReduction"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_575726461", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Chaos Resistance", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["4777_BrittleGroundWhileMovingUniquePresence"] = { + ["2079_MapTotemsMap2Tier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1771822543", - ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 9, + ["id"] = "explicit.stat_1000591322", + ["text"] = "Area contains many Totems", + ["type"] = "explicit", }, }, - ["1022_PhysicalDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 5, + ["213_WeaponSpellDamageEfficacy"] = { + ["1HMace"] = { ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, + ["Wand"] = { ["max"] = 20, + ["min"] = 16, }, - }, - ["4767_FrenzyChargePerSecond"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3906868545", - ["text"] = "Gain a Frenzy Charge every # seconds", - }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_3924539382", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8641_BrandAttachmentRange"] = { - ["specialCaseData"] = { + ["214_ElementalDamagePrefixElementalFocus"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 15, - }, - }, - ["1392_MaximumFireResistanceEldritchPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "explicit.stat_1169422227", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1410_MaximumResistancesUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3062531896", - ["text"] = "While a Unique Enemy is in your Presence, #% to all maximum Resistances", - }, + ["216_SupportedByEmpower"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 3, - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", + ["type"] = "explicit", }, }, - ["949_BoneOfferingEffectPinnaclePresence"] = { + ["218_SupportedByEnhance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3774100463", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "explicit", }, }, - ["1154_LightningDamageUniquePresence"] = { + ["2199_FireResistancePhysTakenAsFire"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2111629859", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 17, - ["max"] = 28, + }, + ["2199_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, }, ["sign"] = "", - }, - ["4416_AttackCriticalStrikeChancePinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 49, - ["max"] = 60, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1840069423", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 49, - ["max"] = 60, + ["specialCaseData"] = { }, - }, - ["1647_AreaOfEffectUniquePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1847660463", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 24, + }, + ["2199_PhysicalDamageTakenAsFireUber"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, }, ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["max"] = 13, + ["min"] = 4, }, - }, - ["1613_AvoidIgnite"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", }, }, - ["4777_BrittleGroundMovingImplicit"] = { + ["2199_PhysicalDamageTakenAsFireUberMaven"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_984148407", - ["text"] = "Drops Brittle Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", }, }, - ["4186_ActionSpeedImplicit"] = { + ["219_SupportedByEnlighten"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2878959938", - ["text"] = "#% increased Action Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "explicit", }, }, - ["3748_CurseEffectVulnerabilityPinnaclePresence"] = { + ["2200_ColdResistancePhysTakenAsCold"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1668340466", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + }, + ["2200_PhysicalDamageTakenAsCold"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", - }, - ["951_SpiritOfferingEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2814835155", - ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", }, }, - ["1140_ColdDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2127607252", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", + ["2200_PhysicalDamageTakenAsColdUber"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 13, + ["min"] = 4, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", }, }, - ["1026_FireDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2112874376", - ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Damage over Time Multiplier", + ["2200_PhysicalDamageTakenAsColdUberMaven"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 16, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", }, }, - ["5085_ChanceToUnnerveOnHitPinnaclePresence"] = { + ["2201_LightningResistancePhysTakenAsLightning"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4018420421", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 95, + }, + ["2201_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, }, ["sign"] = "", - }, - ["950_FleshOfferingEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3599488608", - ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", }, }, - ["5077_ChanceToIntimidateOnHit"] = { + ["2201_PhysicalDamageTakenAsLightningUber"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_78985352", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + }, + ["2201_PhysicalDamageTakenAsLightningUberMaven"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 16, }, ["sign"] = "", - }, - ["1394_FireResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", }, }, - ["2330_SummonTotemCastSpeed"] = { + ["2203_PhysicalDamageTakenAsChaosUber"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", }, }, - ["3828_FireGolemBuffEffectPinnaclePresence"] = { + ["2203_PhysicalDamageTakenAsChaosUberMaven"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_783010498", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", }, }, - ["1398_MaximumColdResistancePinnaclePresence"] = { + ["2207_ManaAndDamageTakenGoesToManaPercent"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["5085_ChanceToUnnerveOnHit"] = { - ["specialCaseData"] = { + ["2207_PercentDamageGoesToMana"] = { + ["AbyssJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - }, - ["4438_ReducedAttackManaCostPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3671920033", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", - }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 42, + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["2490_FlaskEffectUniquePresence"] = { + ["2216_BlockVsProjectiles"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3610955422", - ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", + ["id"] = "explicit.stat_3416410609", + ["text"] = "#% chance to Block Projectile Attack Damage", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 14, - ["max"] = 23, + }, + ["2219_RecoverEnergyShieldPercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["9090_WarcryEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3611265227", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", - }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 36, + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1151_LightningDamagePercentage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["222_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3265951306", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", }, }, - ["6281_HeraldBonusIceEffect"] = { + ["2233_CausesBleeding25PercentChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1862926389", - ["text"] = "Herald of Ice has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1618_AvoidStunPinnaclePresence"] = { + ["2235_CausesBleedingChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_990874979", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, }, - ["1161_ChaosDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["2235_ChanceToBleedSupported"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3953801646", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Gloves"] = { - ["min"] = 15.5, - ["max"] = 28.5, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, }, - ["sign"] = "", - }, - ["1692_TrapThrowSpeed"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 13, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["sign"] = "", - }, - ["1177_SpellAddedFireDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3954869480", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 30.5, - ["max"] = 56, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["6281_HeraldBonusIceEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3593717239", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["2490_FlaskEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2235_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4155771029", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + ["1HMace"] = { + ["max"] = 40, + ["min"] = 35, }, - ["Chest"] = { - ["min"] = 22, - ["max"] = 29, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 35, }, - ["sign"] = "", - }, - ["1183_IncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 35, }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 13, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 35, }, - ["sign"] = "", - }, - ["8641_BrandAttachmentRangeUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 40, + ["min"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_636616197", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 35, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 19, + ["Bow"] = { + ["max"] = 40, + ["min"] = 35, }, - }, - ["1177_SpellAddedFireDamageUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 40, + ["min"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_661603414", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + ["Dagger"] = { + ["max"] = 40, + ["min"] = 35, }, - ["Helmet"] = { - ["min"] = 21.5, - ["max"] = 37.5, + ["Staff"] = { + ["max"] = 40, + ["min"] = 35, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 35, }, ["sign"] = "", - }, - ["1143_ColdDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4057155645", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", - }, - ["Gloves"] = { - ["min"] = 12.5, - ["max"] = 22.5, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1409_ChaosResistance"] = { + ["2235_LocalChanceToBleed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, }, - ["1612_AvoidFreeze"] = { - ["specialCaseData"] = { + ["2235_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["1HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["1131_FireDamagePercentagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2782184338", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["3028_DamagePerFrenzyChargeUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2415020123", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + ["Bow"] = { + ["max"] = 25, + ["min"] = 13, }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 7, + ["Claw"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 13, }, ["sign"] = "", - }, - ["5488_CurseEffectDespairUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2909684383", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + }, + ["2241_BleedChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["5821_FireDamageTakenGainedAsLifePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1613190388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + }, + ["2241_BleedOnHitAndDamage"] = { + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["5785_ExtinguishOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3854721949", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", - }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 100, + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["5488_CurseEffectDespairPinnaclePresence"] = { + ["2241_BleedingDamageChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2775855429", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", }, - ["Helmet"] = { + }, + ["2241_BleedingDamageChanceWeaponSuffix"] = { + ["1HAxe"] = { + ["max"] = 30, ["min"] = 20, - ["max"] = 23, }, - ["sign"] = "", - }, - ["1176_SpellAddedPhysicalDamageUniquePresence"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4272276606", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + ["1HSword"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Helmet"] = { - ["min"] = 17, - ["max"] = 30.5, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["sign"] = "", - }, - ["3746_CurseEffectFrostbiteUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3199183447", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 20, }, - ["sign"] = "", - }, - ["2939_DamagePerEnduranceChargePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_740797388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 7, - ["max"] = 8, - }, - }, - ["3747_CurseEffectPunishmentUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4171615823", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1262_AttackCriticalStrikeMultiplierUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_26879978", - ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Attack Damage", + ["2242_AbyssMinionAttacksBleedOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Chest"] = { - ["min"] = 28, - ["max"] = 37, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["1398_MaximumColdResistanceUniquePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3444931985", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["3303_AuraEffectPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3788782813", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills", - }, - ["specialCaseData"] = { + ["2246_AddedPhysicalDamageVsBleedingEnemies"] = { + ["Gloves"] = { + ["max"] = 14.5, + ["min"] = 9.5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 36, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 29, - ["max"] = 36, + ["tradeMod"] = { + ["id"] = "explicit.stat_1244003614", + ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", + ["type"] = "explicit", }, }, - ["6076_RageOnHitImplicit"] = { + ["2252_LightRadiusAndAccuracy"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2802161115", - ["text"] = "Gain 1 Rage on Hit with Attacks, no more than once every # seconds", - }, - ["Gloves"] = { - ["min"] = 0.7, - ["max"] = 1.2, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3829_IceGolemBuffEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2252_LightRadiusAndAccuracyPercent"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3588695478", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, - }, - }, - ["1288_StunThresholdReductionPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2169620689", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold", - }, - ["Gloves"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1288_StunThresholdReductionUniquePresence"] = { + ["2252_LocalLightRadiusAndAccuracy"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_944211673", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", - }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4767_FrenzyChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { + ["2252_LocalLightRadiusAndAccuracyPercent"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_560848642", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "", - }, - ["1031_ColdDamageOverTimeMultiplier"] = { - ["Gloves"] = { + ["1HWeapon"] = { + ["max"] = 15, ["min"] = 5, - ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "+", - ["Amulet"] = { + ["2HSword"] = { + ["max"] = 15, ["min"] = 5, - ["max"] = 20, }, - }, - ["3831_ChaosGolemBuffEffect"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1648511635", - ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["Claw"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["6076_RageOnHitImplicitPinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1270539481", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 0.3, - ["max"] = 0.6, + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - }, - ["6277_HeraldBonusAshEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3045509476", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + }, + ["2260_ManaRegenerationWhileShocked"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 70, }, ["sign"] = "", - }, - ["1979_GlobalIgniteProlif"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2011785027", - ["text"] = "Ignites you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 17, + ["id"] = "explicit.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8641_BrandAttachmentRangePinnaclePresence"] = { + ["2275_CurseOnHitLevelVulnerabilityMod"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2391109128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 23, + ["id"] = "explicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", }, }, - ["1143_ColdDamage"] = { + ["2276_CurseLevel10VulnerabilityOnHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - }, - ["Gloves"] = { - ["min"] = 8.5, - ["max"] = 17, + ["id"] = "explicit.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3748_CurseEffectVulnerability"] = { + ["2277_CurseOnHitLevelElementalWeaknessMod"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1392_MaximumFireResistanceEldritch"] = { - ["specialCaseData"] = { + ["2279_ConductivityOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { + ["Wand"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 3, }, - ["sign"] = "+", - }, - ["1178_SpellAddedColdDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1018817416", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 33.5, + ["id"] = "explicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1738_MinionDamagePinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 44, - ["max"] = 53, + ["2280_CurseOnHitDespair"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3141084961", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["3831_ChaosGolemBuffEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1807607778", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1154_LightningDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2925105924", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 43, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1403_MaximumLightningResistanceImplicitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["6273_HeraldBonusAgonyEffectUniquePresence"] = { + ["2280_CurseOnHitDespairMod"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_503887731", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1180_SpellAddedChaosDamagePinnaclePresence"] = { + ["2282_FlammabilityOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3206883665", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 23.5, - ["max"] = 43, + ["id"] = "explicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1263_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["2283_FrostbiteOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2955927568", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Critical Strike Multiplier for Spell Damage", - }, - ["Chest"] = { - ["min"] = 36, - ["max"] = 43, + ["id"] = "explicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1031_ColdDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["2286_MeleeDamageAndMeleeRange"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2619970520", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Damage over Time Multiplier", + ["Gloves"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + ["type"] = "explicit", }, }, - ["1026_FireDamageOverTimeMultiplier"] = { + ["2286_MeleeRangeAndMeleeGemLevel"] = { ["Gloves"] = { - ["min"] = 5, - ["max"] = 20, + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + ["type"] = "explicit", }, }, - ["3303_AuraEffect"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["2286_MeleeWeaponAndUnarmedRange"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 2, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 20, - }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + ["type"] = "explicit", }, }, - ["1647_AreaOfEffectPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_568930056", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + ["2311_ItemDropsOnGuardianDeath"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 23, - ["max"] = 30, - }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "explicit", }, }, - ["3303_AuraEffectUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2558323947", - ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills", + ["2316_FasterIgniteDamage"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 8, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 8, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 19, - ["max"] = 28, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 18, }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 28, + ["Boots"] = { + ["max"] = 12, + ["min"] = 7, }, - }, - ["5077_ChanceToIntimidateOnHitUniquePresence"] = { + ["Staff"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_144453866", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + }, + ["2316_FasterIgniteDamageMaven"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, }, ["sign"] = "", - }, - ["4416_AttackCriticalStrikeChance"] = { - ["Gloves"] = { - ["min"] = 19, - ["max"] = 36, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Strike Chance for Attacks", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2316_IgniteChanceAndDamageMaven"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 19, - ["max"] = 36, - }, - }, - ["1176_SpellAddedPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", }, + }, + ["232_IgniteDurationSupported"] = { ["Helmet"] = { - ["min"] = 11.5, - ["max"] = 22.5, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["1263_SpellCriticalStrikeMultiplierUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_865433929", - ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Spell Damage", - }, - ["Chest"] = { - ["min"] = 28, - ["max"] = 37, + ["id"] = "explicit.stat_2420410470", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["3216_FlaskGainPerSecondPinnaclePresence"] = { - ["specialCaseData"] = { + ["2330_SummonTotemCastSpeed"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519845279", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", + ["Boots"] = { + ["max"] = 40, + ["min"] = 18, }, ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["max"] = 45, + ["min"] = 21, }, ["sign"] = "", - }, - ["1565_MovementVelocityUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3019083030", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", }, + }, + ["2330_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["2348_CurseEffectivenessPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1350472585", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2330_TotemSpeedSpellSupported"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 18, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", }, }, - ["5785_ExtinguishOnHitChance"] = { + ["2348_CurseEffectiveness"] = { + ["Shield"] = { + ["max"] = 12, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_49183689", - ["text"] = "#% chance to Extinguish Enemies on Hit", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + }, + ["2350_MarkEffect"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["4438_ReducedAttackManaCost"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2859471749", - ["text"] = "#% reduced Mana Cost of Attacks", + ["id"] = "explicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "explicit", }, + }, + ["235_BurningDamageSupported"] = { ["Helmet"] = { - ["min"] = 19, - ["max"] = 30, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["3830_LightningGolemBuffEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1747983672", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["id"] = "explicit.stat_2680613507", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", }, }, - ["1262_AttackCriticalStrikeMultiplierPinnaclePresence"] = { + ["2367_MapExtraInvasionBosses"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2825010848", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Critical Strike Multiplier for Attack Damage", - }, - ["Chest"] = { - ["min"] = 36, - ["max"] = 43, + ["id"] = "explicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["3742_CurseEffectConductivity"] = { - ["specialCaseData"] = { + ["236_CriticalStrikeChanceSpellsSupported"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["2939_DamagePerEnduranceCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "explicit.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", }, }, - ["3827_RockGolemBuffEffect"] = { - ["specialCaseData"] = { + ["236_CriticalStrikeChanceSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2284801675", - ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["1022_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4084536353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Physical Damage over Time Multiplier", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["1183_IncreasedAttackSpeedPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2446980928", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Gloves"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, ["min"] = 18, - ["max"] = 21, }, ["sign"] = "", - }, - ["1403_MaximumLightningResistanceEldritchUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "explicit.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["951_SpiritOfferingEffect"] = { + ["2372_MapBeyondLeagueRolledMap2Tier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3544391750", - ["text"] = "Spirit Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "explicit.stat_1837040413", + ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", + ["type"] = "explicit", }, }, - ["2330_SummonTotemCastSpeedPinnaclePresence"] = { - ["specialCaseData"] = { + ["2375_EnduranceChargeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_100371300", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 4, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 23, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 4, }, - }, - ["2330_SummonTotemCastSpeedUniquePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2033289503", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 4, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 15, - ["max"] = 19, + ["max"] = 10, + ["min"] = 4, }, - }, - ["1403_MaximumLightningResistanceImplicitUniquePresence"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1408_MaximumChaosResistanceImplicitPinnaclePresence"] = { - ["specialCaseData"] = { + ["2375_EnduranceChargeOnKillChanceMaven"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_944522962", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Chaos Resistance", + ["1HMace"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 7, }, - ["sign"] = "+", - }, - ["1536_MinionRunSpeedUniquePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_93625449", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 28, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 7, }, - ["sign"] = "", - }, - ["9090_WarcryEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 30, + ["Boots"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 7, }, ["sign"] = "", - }, - ["4778_SappedGroundMovingImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1997664024", - ["text"] = "Drops Sapped Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", }, }, - ["3743_CurseEffectElementalWeakness"] = { + ["2375_MinimumEnduranceChargesAndOnKillChance"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4534_CarrionGolemBuffEffectUniquePresence"] = { + ["2376_MinimumEnduranceChargesAndOnKillLose"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2917444195", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["id"] = "explicit.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["type"] = "explicit", }, }, - ["6285_HeraldBonusPurityEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2377_FrenzyChargeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4093169696", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", + ["1HSword"] = { + ["max"] = 10, + ["min"] = 4, }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 4, }, - ["sign"] = "", - }, - ["1041_PhysicalDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["2HSword"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 4, }, ["Gloves"] = { - ["min"] = 5, - ["max"] = 10.5, + ["max"] = 10, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 4, }, ["sign"] = "", - }, - ["1392_MaximumFireResistanceImplicitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", }, }, - ["3828_FireGolemBuffEffect"] = { - ["specialCaseData"] = { + ["2377_FrenzyChargeOnKillChanceMaven"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_269930125", - ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["1HSword"] = { + ["max"] = 10, + ["min"] = 7, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 7, }, - }, - ["3746_CurseEffectFrostbitePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2068042138", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + ["2HSword"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, }, ["sign"] = "", - }, - ["4779_ScorchedGroundWhileMovingUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_493814995", - ["text"] = "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 9, + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", }, }, - ["1398_MaximumColdResistanceImplicit"] = { + ["2377_MinimumFrenzyChargesAndOnKillChance"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1613_AvoidIgniteUniquePresence"] = { + ["2378_MinimumFrenzyChargesAndOnKillLose"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2796083262", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["id"] = "explicit.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["type"] = "explicit", }, }, - ["3828_FireGolemBuffEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2379_MinimumPowerChargesAndOnKillChance"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3591219299", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems", + ["Ring"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, - }, - }, - ["5400_IncreasedDamagePerPowerCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2379_PowerChargeOnKillChance"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 4, }, ["Helmet"] = { + ["max"] = 10, ["min"] = 4, - ["max"] = 6, }, - ["sign"] = "", - }, - ["2348_CurseEffectivenessUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2669364207", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + ["Staff"] = { + ["max"] = 10, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 10, + ["min"] = 4, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2379_PowerChargeOnKillChanceMaven"] = { + ["1HMace"] = { ["max"] = 15, + ["min"] = 11, }, - ["Chest"] = { + ["1HWeapon"] = { + ["max"] = 15, ["min"] = 11, + }, + ["2HWeapon"] = { ["max"] = 15, + ["min"] = 11, }, - }, - ["5821_FireDamageTakenGainedAsLifeUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2143647966", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 11, }, ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, - }, - ["sign"] = "", - }, - ["1536_MinionRunSpeed"] = { - ["specialCaseData"] = { + ["max"] = 15, + ["min"] = 11, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["Staff"] = { + ["max"] = 15, + ["min"] = 11, }, - ["Helmet"] = { + ["Wand"] = { + ["max"] = 15, ["min"] = 11, - ["max"] = 22, }, ["sign"] = "", - }, - ["1176_SpellAddedPhysicalDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_485268361", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 24.5, - ["max"] = 46, + }, + ["237_SkillEffectDurationSupported"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["3794_OfferingEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1132843482", - ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", - }, - ["Chest"] = { - ["min"] = 21, - ["max"] = 30, + ["id"] = "explicit.stat_407317553", + ["text"] = "Socketed Gems are Supported by Level # Increased Duration", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8928_TempestShieldBuffEffect"] = { + ["2380_MinimumPowerChargesAndOnKillLose"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2662416009", - ["text"] = "Tempest Shield has #% increased Buff Effect", + ["id"] = "explicit.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", + ["type"] = "explicit", }, + }, + ["2391_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + ["max"] = 100, + ["min"] = 50, }, ["sign"] = "", - }, - ["1409_ChaosResistancePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_74135418", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Resistance", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", }, }, - ["3829_IceGolemBuffEffectPinnaclePresence"] = { + ["2392_EnergyShieldAndRegen"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_168204696", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems", + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["2392_EnergyShieldRegenerationPerMinute"] = { ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["max"] = 1, + ["min"] = 1, }, - }, - ["2490_FlaskEffect"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 17, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["6277_HeraldBonusAshEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2154349925", - ["text"] = "Herald of Ash has #% increased Buff Effect", + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + }, + ["2392_EnergyShieldRegenerationPerMinuteMaven"] = { + ["Helmet"] = { + ["max"] = 1.5, + ["min"] = 1, }, ["sign"] = "", - }, - ["1179_SpellAddedLightningDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_371531651", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 26, - ["max"] = 43, + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3831_ChaosGolemBuffEffectPinnaclePresence"] = { + ["2393_EnergyShieldAndDegenGracePeriod"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_510803146", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["id"] = "explicit.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", + ["type"] = "explicit", }, }, - ["1615_AvoidShockUniquePresence"] = { + ["240_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3401199213", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["id"] = "explicit.stat_251446805", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", + ["type"] = "explicit", }, }, - ["1034_ChaosDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 5, + ["242_SupportedByItemRarityUnique"] = { + ["Chest"] = { ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", - }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 20, - }, - }, - ["1230_SpellCriticalStrikeChancePinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1412947753", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_3587013273", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2445_DamageRemovedFromManaBeforeLife"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 58, - ["max"] = 69, - }, - ["Helmet"] = { - ["min"] = 58, - ["max"] = 69, - }, - }, - ["5400_IncreasedDamagePerPowerChargeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1394771132", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 7, + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1007_PhysicalDamagePercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_604852150", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", + ["2452_EnemiesExplodeOnDeath"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["3028_DamagePerFrenzyChargePinnaclePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1855179125", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + ["id"] = "explicit.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 8, - }, - ["sign"] = "", }, - ["6273_HeraldBonusAgonyEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3001066983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["245_LightningDamagePrefixLightningPenetration"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - }, - ["6291_HeraldBonusThunderEffectUniquePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_649027123", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["3747_CurseEffectPunishmentPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_40584863", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["id"] = "explicit.stat_3354027870", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1565_MovementVelocityPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1702124724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + ["246_ChanceToMaimSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 13, - ["max"] = 16, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["1400_ColdResistance"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["3754_ArcticArmourBuffEffect"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3995612171", - ["text"] = "#% increased Arctic Armour Buff Effect", + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["3748_CurseEffectVulnerabilityUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2638071469", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1982_FreezeProliferation"] = { + ["246_SupportedByMaim"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1623640288", - ["text"] = "Freezes you inflict spread to other Enemies within a Radius of #", - }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 17, + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3829_IceGolemBuffEffect"] = { - ["specialCaseData"] = { + ["2486_SpellDamagePer10Intelligence"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250111474", - ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["specialCaseData"] = { }, - }, - }, - ["Implicit"] = { - ["implicit.stat_4251717817"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2489_LightRadiusScalesWithEnergyShield"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - }, - ["implicit.stat_1310194496"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - }, - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, + ["id"] = "explicit.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["type"] = "explicit", }, - ["1HWeapon"] = { + }, + ["2490_FlaskEffect"] = { + ["Belt"] = { ["max"] = 12, - ["min"] = 8, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", }, + }, + ["2490_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { - ["max"] = 24, - ["min"] = 12, + ["max"] = 18, + ["min"] = 8, }, - }, - ["implicit.stat_1795443614"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1795443614", - ["text"] = "Has Elder, Shaper and all Conqueror Influences", - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", }, }, - ["implicit.stat_328541901"] = { + ["2491_MagicUtilityFlaskEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "explicit.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["implicit.stat_4220027924"] = { + ["2493_LocalMeleeWeaponRange"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "explicit.stat_350598685", + ["text"] = "# to Weapon Range", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["implicit.stat_3531280422"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["2493_LocalWeaponRangeUber"] = { + ["2HAxe"] = { + ["max"] = 3, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 3, + ["min"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, + ["2HSword"] = { + ["max"] = 3, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, - }, - }, - ["implicit.stat_2375316951"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 30, + ["max"] = 3, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, + ["Staff"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["implicit.stat_1423639565"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["id"] = "explicit.stat_350598685", + ["text"] = "# to Weapon Range", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["implicit.stat_2091591880"] = { + ["2504_RarityDuringFlaskEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["type"] = "explicit", }, }, - ["implicit.stat_734614379"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { + ["2535_TotemElementalResistancesForJewel"] = { + ["AnyJewel"] = { ["max"] = 10, - ["min"] = 10, + ["min"] = 6, }, - ["2HWeapon"] = { + ["BaseJewel"] = { ["max"] = 10, - ["min"] = 10, + ["min"] = 6, }, - }, - ["implicit.stat_4067062424"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 2.5, - ["min"] = 2.5, + ["id"] = "explicit.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", + ["type"] = "explicit", }, }, - ["implicit.stat_1296614065"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1296614065", - ["text"] = "#% increased Fish Bite Sensitivity", - }, - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Talisman", + ["2546_FireAndColdResistance"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["implicit.stat_803737631"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "+", ["1HWeapon"] = { - ["max"] = 475, - ["min"] = 45, - }, - ["2HWeapon"] = { - ["max"] = 475, - ["min"] = 45, + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_1172810729"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_2891184298"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["Amulet"] = { + ["max"] = 16, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 14, + ["Boots"] = { + ["max"] = 20, ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 14, + ["Bow"] = { + ["max"] = 20, ["min"] = 10, }, - }, - ["implicit.stat_589489789"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_589489789", - ["text"] = "Can't use Flask in Fifth Slot", + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_3423006863"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, }, ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_2387423236"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 106.5, - ["min"] = 4, - ["subType"] = "Evasion/Energy Shield", + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - }, - ["implicit.stat_538730182"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_538730182", - ["text"] = "Creates a Smoke Cloud on Use", + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "explicit", }, }, - ["implicit.stat_3319896421"] = { - ["specialCaseData"] = { + ["2546_FireColdResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 15, + ["BaseJewel"] = { + ["max"] = 12, ["min"] = 10, }, - }, - ["implicit.stat_3962278098"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_2530372417"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["2547_FireAndLightningResistance"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["Amulet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["max"] = 20, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_3441501978"] = { ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, }, ["Ring"] = { ["max"] = 16, - ["min"] = 12, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "+", - ["Helmet"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + }, + ["2547_FireLightningResistanceForJewel"] = { + ["AbyssJewel"] = { ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["min"] = 10, }, - ["Boots"] = { + ["AnyJewel"] = { ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["min"] = 10, }, - }, - ["implicit.stat_2622251413"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "explicit", }, }, - ["implicit.stat_2748665614"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["2548_ColdAndLightningResistance"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 8, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_1519615863"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { + ["2HSword"] = { ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", + ["min"] = 10, }, ["2HWeapon"] = { ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", + ["min"] = 10, }, - }, - ["implicit.stat_2924279089"] = { - ["Gloves"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + ["Amulet"] = { + ["max"] = 16, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2924279089", - ["text"] = "#% increased Attack Damage with Off Hand", + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "", ["Helmet"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + ["max"] = 20, + ["min"] = 10, }, - ["Boots"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_4282426229"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4282426229", - ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_2239667237"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2239667237", - ["text"] = "Right ring slot: #% increased Skill Effect Duration", - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 15, + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_1050105434"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["specialCaseData"] = { + ["2548_ColdLightningResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["sign"] = "+", - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - ["subType"] = "Evasion/Energy Shield", + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - }, - ["implicit.stat_2146730404"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2146730404", - ["text"] = "Creates Consecrated Ground on Use", + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "explicit", }, }, - ["implicit.stat_3291658075"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["2549_ChanceToFreezeShockIgniteProliferation"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["implicit.stat_1017730114"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1017730114", - ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", - }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_280731498"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Amulet"] = { - ["max"] = 8, + ["2549_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["1HMace"] = { + ["max"] = 10, ["min"] = 5, - ["subType"] = "Talisman", }, - ["specialCaseData"] = { - }, - ["sign"] = "", ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, - }, - ["implicit.stat_2797971005"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 8, - ["min"] = 6, + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "explicit", }, }, - ["implicit.stat_369183568"] = { - ["Gloves"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["254_IncreasedCastSpeedSpellEcho"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_369183568", - ["text"] = "#% increased Block Recovery", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, - ["Boots"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["tradeMod"] = { + ["id"] = "explicit.stat_725896422", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", + ["type"] = "explicit", }, }, - ["implicit.stat_1313503107"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1313503107", - ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + ["2559_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", - }, - ["implicit.stat_3753703249"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - }, - ["Amulet"] = { - ["max"] = 12, - ["min"] = 6, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_3503466234", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_2120297997"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2120297997", - ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", + ["256_LocalIncreasedAttackSpeedOnslaught"] = { ["1HWeapon"] = { ["max"] = 20, - ["min"] = 20, - ["subType"] = "Warstaff", + ["min"] = 18, }, - ["2HWeapon"] = { + ["Wand"] = { ["max"] = 20, - ["min"] = 20, - ["subType"] = "Warstaff", + ["min"] = 18, }, - }, - ["implicit.stat_1504091975"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1504091975", - ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", - }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_2170876738"] = { + ["256_LocalPhysicalDamagePercentOnslaught"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2170876738", - ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["256_SupportedByOnslaughtWeapon"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 10, }, - }, - ["implicit.stat_1054322244"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - }, - ["Amulet"] = { + ["Bow"] = { ["max"] = 10, ["min"] = 10, - ["subType"] = "Talisman", }, ["sign"] = "", - }, - ["implicit.stat_1069618951"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1069618951", - ["text"] = "Right ring slot: Minions take #% increased Damage", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 15, + }, + ["2574_OnslaughtWhenHitForDuration"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 6, }, ["sign"] = "", - }, - ["implicit.stat_2192875806"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2192875806", - ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", + ["id"] = "explicit.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2580_AllDefences"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", }, }, - ["implicit.stat_3489782002"] = { + ["2580_IncreasedDefensesForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["258_SupportedByVolleySpeed"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["2HWeapon"] = { - ["max"] = 165, - ["min"] = 66, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 165, - ["min"] = 66, - }, - ["Belt"] = { - ["max"] = 80, - ["min"] = 9, + ["tradeMod"] = { + ["id"] = "explicit.stat_2696557965", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "explicit", }, }, - ["implicit.stat_2915988346"] = { - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["2590_FishingLineStrength"] = { + ["FishingRod"] = { + ["max"] = 40, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["tradeMod"] = { + ["id"] = "explicit.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, + }, + ["2591_FishingPoolConsumption"] = { + ["FishingRod"] = { + ["max"] = 30, + ["min"] = 15, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["tradeMod"] = { + ["id"] = "explicit.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "explicit", }, }, - ["implicit.stat_1535626285"] = { + ["2592_FishingLureType"] = { + ["FishingRod"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", - }, - ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["implicit.stat_2067062068"] = { + ["2593_FishingHookType"] = { + ["FishingRod"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "explicit.stat_2054162825", + ["text"] = "Karui Stone Hook", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Talisman", + }, + ["2594_FishingCastDistance"] = { + ["FishingRod"] = { + ["max"] = 50, + ["min"] = 30, }, ["sign"] = "", - }, - ["implicit.stat_1573130764"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 21, - ["min"] = 3, + ["id"] = "explicit.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "explicit", }, }, - ["implicit.stat_789117908"] = { + ["2595_FishingQuantity"] = { + ["FishingRod"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 56, - ["min"] = 20, + }, + ["2596_FishingRarity"] = { + ["FishingRod"] = { + ["max"] = 40, + ["min"] = 25, }, ["sign"] = "", - }, - ["implicit.stat_3374165039"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "explicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "explicit", }, + }, + ["259_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2513293614", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["type"] = "explicit", }, }, - ["implicit.stat_3325883026"] = { + ["2618_AllColdDamageCanIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, + ["id"] = "explicit.stat_3573591118", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_1569101201"] = { - ["Gloves"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", + ["2623_AllFireDamageCanShock"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", + ["id"] = "explicit.stat_932096321", + ["text"] = "Your Fire Damage can Shock", + ["type"] = "explicit", }, + }, + ["2630_AllLightningDamageCanFreeze"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", - }, - ["Boots"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", + ["tradeMod"] = { + ["id"] = "explicit.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", + ["type"] = "explicit", }, }, - ["implicit.stat_2250533757"] = { - ["Gloves"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["263_PoisonDurationWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - ["Boots"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_2228279620", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + }, + ["264_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", }, + }, + ["264_SupportedByPowerChargeOnCritWeapon"] = { ["2HWeapon"] = { ["max"] = 10, - ["min"] = 6, + ["min"] = 10, }, - ["1HWeapon"] = { + ["Staff"] = { ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, - }, - ["implicit.stat_821021828"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - }, - ["specialCaseData"] = { + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 3, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 3, - }, - }, - ["implicit.stat_3261801346"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - }, - ["Quiver"] = { - ["max"] = 40, - ["min"] = 30, - }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", }, }, - ["implicit.stat_532463031"] = { + ["264_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_532463031", - ["text"] = "Implicit Modifiers Cannot Be Changed", - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", }, }, - ["implicit.stat_3375859421"] = { + ["2650_MinionBlockForJewel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3375859421", - ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", - }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_3374054207", + ["text"] = "Minions have #% Chance to Block Attack Damage", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_321077055"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - }, - ["specialCaseData"] = { + ["2654_MinionAttackAndCastSpeed"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["2HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["implicit.stat_1189760108"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1189760108", - ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", - }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_2300185227"] = { - ["specialCaseData"] = { + ["2654_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["1HMace"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, + ["1HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "+", - }, - ["implicit.stat_3311869501"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3311869501", - ["text"] = "Creates Chilled Ground on Use", + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 18, }, - }, - ["implicit.stat_2522672898"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 38, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2522672898", - ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["2HSword"] = { + ["max"] = 38, + ["min"] = 18, }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 18, }, - ["sign"] = "", - }, - ["implicit.stat_1633778432"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1633778432", - ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + ["Bow"] = { + ["max"] = 38, + ["min"] = 18, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 30, + ["Dagger"] = { + ["max"] = 38, ["min"] = 10, - ["subType"] = "Rune", }, - ["2HWeapon"] = { - ["max"] = 30, + ["Staff"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 38, ["min"] = 10, - ["subType"] = "Rune", }, - }, - ["implicit.stat_2843214518"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + }, + ["2655_MinionAttackAndCastSpeed"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", - }, - ["implicit.stat_2154246560"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 25, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_1389153006"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["2655_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 38, + ["min"] = 10, }, - ["sign"] = "", - ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - ["subType"] = "Talisman", + ["1HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["implicit.stat_2039822488"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 18, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 38, + ["min"] = 18, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["2HSword"] = { + ["max"] = 38, + ["min"] = 18, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 38, + ["min"] = 18, }, - }, - ["implicit.stat_640052854"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_640052854", - ["text"] = "Grants # Mana per Enemy Hit", + ["Bow"] = { + ["max"] = 38, + ["min"] = 18, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 6, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", }, }, - ["implicit.stat_846313030"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["2657_MinionLifeLeech"] = { + ["AbyssJewel"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_846313030", - ["text"] = "You are Crushed", + ["AnyJewel"] = { + ["max"] = 0.5, + ["min"] = 0.3, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["tradeMod"] = { + ["id"] = "explicit.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "explicit", }, + }, + ["2658_MinionLifeMaven"] = { ["Helmet"] = { - ["max"] = 1, + ["max"] = 1.5, ["min"] = 1, - ["subType"] = "Armour/Evasion", }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", }, }, - ["implicit.stat_3680664274"] = { + ["2658_MinionLifeRegeneration"] = { + ["AbyssJewel"] = { + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["AnyJewel"] = { + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["sign"] = "+", - ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - ["subType"] = "Evasion/Energy Shield", + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", }, }, - ["implicit.stat_2923486259"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["2659_AllResistancesMinionResistances"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, }, - ["Boots"] = { - ["max"] = 17, - ["min"] = 13, - ["subType"] = "Evasion/Energy Shield", + ["Ring"] = { + ["max"] = 12, + ["min"] = 5, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["2659_MinionElementalResistance"] = { ["Ring"] = { - ["max"] = 23, - ["min"] = 17, + ["max"] = 30, + ["min"] = 11, }, ["Shield"] = { - ["max"] = 19, + ["max"] = 30, ["min"] = 11, }, - }, - ["implicit.stat_2101383955"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2659_MinionElementalResistancesForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 6, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 6, }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 11, }, - }, - ["implicit.stat_2231156303"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_1826802197"] = { - ["specialCaseData"] = { + ["2660_MinionChaosResistance"] = { + ["AbyssJewel"] = { + ["max"] = 11, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["AnyJewel"] = { + ["max"] = 11, + ["min"] = 7, }, - ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", + ["sign"] = "+", + ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["implicit.stat_3593843976"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2682_PhysicalDamageAddedAsRandomElement"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, }, - ["sign"] = "", ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, + ["max"] = 15, + ["min"] = 7, }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, - }, - }, - ["implicit.stat_2457848738"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2457848738", - ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + ["max"] = 15, + ["min"] = 7, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 30, + ["Bow"] = { + ["max"] = 15, + ["min"] = 7, }, ["sign"] = "", - }, - ["implicit.stat_836936635"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", + ["id"] = "explicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 2, - ["min"] = 1.2, + }, + ["2689_IncreasedWandDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", - }, - ["implicit.stat_4180346416"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4180346416", - ["text"] = "# to Level of all Vaal Skill Gems", + ["id"] = "explicit.stat_379328644", + ["text"] = "#% increased Damage with Wands", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["269_TotemDamageAttackSupported"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 18, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", }, + }, + ["269_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["max"] = 25, + ["min"] = 18, }, - }, - ["implicit.stat_264042990"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_264042990", - ["text"] = "All Damage from Hits with This Weapon can Poison", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", }, }, - ["implicit.stat_1504905117"] = { + ["2703_BlindOnHitSupported"] = { ["Gloves"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1504905117", - ["text"] = "Warcry Skills have # seconds to Cooldown", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, + ["2703_GlobalChanceToBlindOnHit"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, }, ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["max"] = 6, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 4, }, - ["sign"] = "+", ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["max"] = 6, + ["min"] = 4, }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["Quiver"] = { + ["max"] = 15, + ["min"] = 8, }, - }, - ["implicit.stat_2162876159"] = { - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + }, + ["2703_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, - }, - ["implicit.stat_1652515349"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", }, - ["Amulet"] = { + }, + ["2719_NearbyEnemiesAreBlindedMaven"] = { + ["Chest"] = { ["max"] = 1, ["min"] = 1, - ["subType"] = "Talisman", }, - ["sign"] = "+", - }, - ["implicit.stat_2005503156"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2005503156", - ["text"] = "Taunts nearby Enemies on use", + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", }, }, - ["implicit.stat_1782086450"] = { - ["specialCaseData"] = { + ["2723_ArmourPenetration"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Amulet"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Belt"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 8, }, - ["sign"] = "", - }, - ["implicit.stat_3299347043"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["Dagger"] = { + ["max"] = 10, + ["min"] = 7, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 20, + ["min"] = 13, }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["Wand"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["2725_ElementalPenetration"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Helmet"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 25, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Shield"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 4, }, - }, - ["implicit.stat_2901986750"] = { - ["Gloves"] = { - ["max"] = 25, + ["2HMace"] = { + ["max"] = 12, ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 12, + ["min"] = 4, }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 25, + ["2HWeapon"] = { + ["max"] = 12, ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 8, + ["Amulet"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Helmet"] = { - ["max"] = 25, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Claw"] = { + ["max"] = 6, ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, - ["Chest"] = { - ["max"] = 25, + ["Dagger"] = { + ["max"] = 6, ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, - ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Shield"] = { + ["Staff"] = { ["max"] = 12, + ["min"] = 7, + }, + ["Wand"] = { + ["max"] = 6, ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, - }, - ["implicit.stat_2885144362"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2726_FireResistancePenetration"] = { + ["1HAxe"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 8, + ["min"] = 4, }, - ["sign"] = "", ["1HWeapon"] = { - ["max"] = 43.5, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 7, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 7, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 7, }, ["2HWeapon"] = { - ["max"] = 43.5, - ["min"] = 5, + ["max"] = 16, + ["min"] = 7, }, - }, - ["implicit.stat_681332047"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Quiver"] = { + ["Amulet"] = { ["max"] = 10, - ["min"] = 8, + ["min"] = 4, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 7, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 7, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 4, }, ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["2726_SpellAddedFireDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 4, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 6, + ["max"] = 4, ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 6, + ["max"] = 7, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 4, ["min"] = 4, }, - }, - ["implicit.stat_4138979329"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4138979329", - ["text"] = "# to Maximum Power Charges and Maximum Endurance Charges", + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 4, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["2727_ColdResistancePenetration"] = { + ["1HAxe"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 8, + ["min"] = 3, + }, ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, - ["subType"] = "Warstaff", }, - ["2HWeapon"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, - ["subType"] = "Warstaff", }, - }, - ["implicit.stat_3771516363"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["Bow"] = { + ["max"] = 16, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["Claw"] = { + ["max"] = 8, + ["min"] = 3, }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["Dagger"] = { + ["max"] = 8, + ["min"] = 3, }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "-", - ["Amulet"] = { - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["2727_SpellAddedColdDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 4, ["min"] = 4, - ["subType"] = "Talisman", }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 4, }, - }, - ["implicit.stat_2672805335"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["Dagger"] = { + ["max"] = 4, + ["min"] = 4, }, - ["Amulet"] = { - ["max"] = 10, - ["min"] = 6, - ["subType"] = "Talisman", + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 4, }, ["sign"] = "", - }, - ["implicit.stat_1263158408"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["2728_LightningResistancePenetration"] = { + ["1HAxe"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 8, + ["min"] = 5, }, ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["2HWeapon"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - }, - ["implicit.stat_2511217560"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, + ["Claw"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["implicit.stat_2451856207"] = { + ["Dagger"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2451856207", - ["text"] = "Restores Ward on use", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", }, }, - ["implicit.stat_800141891"] = { - ["specialCaseData"] = { + ["2728_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 4, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 4, }, - ["Amulet"] = { - ["max"] = 6, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, ["min"] = 4, - ["subType"] = "Talisman", }, ["sign"] = "", - }, - ["implicit.stat_744858137"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_744858137", - ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", }, - ["Ring"] = { + }, + ["272_SupportedByLessDuration"] = { + ["Helmet"] = { ["max"] = 25, - ["min"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["implicit.stat_884586851"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "explicit.stat_2487643588", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", }, - ["Amulet"] = { + }, + ["2737_ChanceToGainOnslaughtOnKill"] = { + ["1HAxe"] = { ["max"] = 10, - ["min"] = 6, - ["subType"] = "Talisman", + ["min"] = 10, }, - ["sign"] = "", - }, - ["implicit.stat_450178102"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_450178102", - ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 25, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["sign"] = "", - }, - ["implicit.stat_2905515354"] = { - ["Gloves"] = { + ["2HAxe"] = { ["max"] = 20, ["min"] = 20, - ["subType"] = "Armour", - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2905515354", - ["text"] = "You take #% of Damage from Blocked Hits", }, - ["Chest"] = { + ["2HMace"] = { ["max"] = 20, ["min"] = 20, - ["subType"] = "Armour", }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, }, - ["sign"] = "", - ["Helmet"] = { + ["2HWeapon"] = { ["max"] = 20, ["min"] = 20, - ["subType"] = "Armour", }, ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Bow"] = { ["max"] = 20, ["min"] = 20, - ["subType"] = "Armour", }, - }, - ["implicit.stat_4277795662"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", }, + }, + ["2737_ChanceToGainOnslaughtOnKillMaven"] = { ["Boots"] = { - ["max"] = 12, + ["max"] = 10, ["min"] = 8, - ["subType"] = "Evasion/Energy Shield", }, - }, - ["implicit.stat_1671376347"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["implicit.stat_387439868"] = { + ["2737_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["2737_MovementVelocityAndOnslaughtOnKill"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["274_LocalPhysicalDamagePercentRuthless"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 20, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 20, + ["min"] = 16, }, - }, - ["implicit.stat_538848803"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Amulet"] = { - ["max"] = 24, + ["Dagger"] = { + ["max"] = 20, ["min"] = 16, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "explicit.stat_3796013729", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + }, + ["2758_IncreasedDamagePerCurse"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["type"] = "explicit", }, }, - ["implicit.stat_1581907402"] = { + ["2768_MinionAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1581907402", - ["text"] = "#% increased Explicit Modifier magnitudes", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", }, - ["Amulet"] = { + }, + ["277_ProjectileDamageSupported"] = { + ["Gloves"] = { ["max"] = 25, - ["min"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["implicit.stat_1423749435"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1423749435", - ["text"] = "#% to Damage over Time Multiplier for Bleeding", + ["id"] = "explicit.stat_1390285657", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "explicit", }, + }, + ["2789_MapMonsterPacksVaalMapWorlds"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", + ["tradeMod"] = { + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "explicit", + }, + }, + ["279_SupportedBySpellCascadeArea"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 16, }, - ["2HWeapon"] = { + ["Dagger"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 16, }, - }, - ["implicit.stat_3143208761"] = { + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["id"] = "explicit.stat_503990161", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 16, - ["min"] = 12, - ["subType"] = "Talisman", + }, + ["2803_RecoverLifePercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["implicit.stat_1431238626"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1431238626", - ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2806_DamageWhileLeeching"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 18, }, - ["sign"] = "", ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 100, + ["max"] = 30, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 18, }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 100, + ["max"] = 45, + ["min"] = 18, }, - }, - ["implicit.stat_3759663284"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 31, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["Gloves"] = { + ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - }, - ["implicit.stat_1443060084"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["281_SupportedBySpiritStrikeArea"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["1HWeapon"] = { + ["1HMace"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 16, }, - ["2HWeapon"] = { + ["1HSword"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 16, }, - }, - ["implicit.stat_1002362373"] = { - ["Gloves"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 16, - ["subType"] = "Armour", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Chest"] = { + ["2HMace"] = { ["max"] = 20, ["min"] = 16, - ["subType"] = "Armour", }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Helmet"] = { + ["2HWeapon"] = { ["max"] = 20, ["min"] = 16, - ["subType"] = "Armour", }, - ["Boots"] = { + ["Claw"] = { ["max"] = 20, ["min"] = 16, - ["subType"] = "Armour", }, - }, - ["implicit.stat_1754445556"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 3, - ["min"] = 3, + ["id"] = "explicit.stat_696805682", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "explicit", }, }, - ["implicit.stat_1181501418"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["2823_ChanceToGainUnholyMightOnKillAbyss"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 2, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_3166317791", + ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["type"] = "explicit", }, }, - ["implicit.stat_1662717006"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["2835_VaalSkillDamage"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 38, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + }, + }, + ["2844_AdditionalVaalSoulOnKill"] = { + ["AbyssJewel"] = { + ["max"] = 5, ["min"] = 3, }, - ["2HWeapon"] = { - ["max"] = 38, + ["AnyJewel"] = { + ["max"] = 5, ["min"] = 3, }, - }, - ["implicit.stat_335507772"] = { - ["Gloves"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_335507772", - ["text"] = "# to maximum Fortification", + ["Boots"] = { + ["max"] = 8, + ["min"] = 5, }, ["Chest"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, - ["specialCaseData"] = { + ["max"] = 8, + ["min"] = 5, }, - ["sign"] = "+", ["Helmet"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["max"] = 8, + ["min"] = 5, }, - ["Boots"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["implicit.stat_202275580"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_202275580", - ["text"] = "Properties are doubled while in a Breach", - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "explicit", }, }, - ["implicit.stat_2316658489"] = { + ["2845_VaalSkillDuration"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2316658489", - ["text"] = "# to Armour and Evasion Rating", - }, - ["sign"] = "+", - ["Belt"] = { - ["max"] = 320, - ["min"] = 260, + ["id"] = "explicit.stat_547412107", + ["text"] = "#% increased Vaal Skill Effect Duration", + ["type"] = "explicit", }, }, - ["implicit.stat_2483795307"] = { + ["2847_VaalSkillCriticalStrikeChance"] = { + ["Gloves"] = { + ["max"] = 120, + ["min"] = 80, + }, + ["Quiver"] = { + ["max"] = 120, + ["min"] = 80, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - }, - ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["implicit.stat_1915414884"] = { + ["287_TrapDamageCooldownSupported"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["max"] = 25, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1915414884", - ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["287_TrapSpeedCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", }, }, - ["implicit.stat_1523888729"] = { + ["2880_ChillEnemiesWhenHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1523888729", - ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["289_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", ["1HWeapon"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 18, }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["implicit.stat_1379411836"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_3699494172", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["type"] = "explicit", }, + }, + ["2909_BleedDamageAndDuration"] = { ["Ring"] = { - ["max"] = 12, + ["max"] = 22, ["min"] = 8, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, }, - ["implicit.stat_1589917703"] = { - ["Gloves"] = { + ["2909_BleedDamageForJewel"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, - ["subType"] = "Armour/Energy Shield", + ["min"] = 16, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - ["Boots"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Armour/Energy Shield", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Armour/Energy Shield", - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Armour/Energy Shield", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, - ["2HWeapon"] = { + }, + ["2909_BleedOnHitAndDamage"] = { + ["Quiver"] = { ["max"] = 30, - ["min"] = 12, + ["min"] = 15, }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 12, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, }, - ["implicit.stat_2974417149"] = { - ["Gloves"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, - ["specialCaseData"] = { - }, + ["2909_BleedingDamageChance"] = { ["sign"] = "", - ["Boots"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", + }, + ["2909_BleedingDamageChanceWeaponSuffix"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 21, }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", + ["1HMace"] = { + ["max"] = 50, + ["min"] = 21, }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 8, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 21, }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 8, + ["max"] = 50, + ["min"] = 21, }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 21, }, - }, - ["implicit.stat_4139229725"] = { - ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + ["2HMace"] = { + ["max"] = 50, + ["min"] = 21, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139229725", - ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + ["2HSword"] = { + ["max"] = 50, + ["min"] = 21, }, - ["Chest"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 21, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 50, + ["min"] = 21, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, - ["Boots"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + ["specialCaseData"] = { }, - }, - ["implicit.stat_3141070085"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2909_BleedingDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", }, }, - ["implicit.stat_3372524247"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["2910_FasterPoisonDamageMaven"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 10, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, }, - ["implicit.stat_983749596"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["2910_PoisonChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", - ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Talisman", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, + }, + ["2910_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 5, }, - }, - ["implicit.stat_718638445"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, + }, + ["2910_PoisonDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "-", - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, }, - ["implicit.stat_114734841"] = { + ["2910_PoisonDurationChaosDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, - ["sign"] = "", - ["Belt"] = { + }, + ["2910_PoisonDurationSupported"] = { + ["Gloves"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["implicit.stat_3032590688"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 21, - ["min"] = 2.5, + }, + ["2910_PoisonDurationWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 14, + ["min"] = 6, }, ["sign"] = "", - ["Ring"] = { - ["max"] = 9, - ["min"] = 2.5, + ["specialCaseData"] = { }, - }, - ["implicit.stat_624954515"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["2913_PoisonChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 40, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", }, }, - ["implicit.stat_1124980805"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["2913_PoisonOnHitAndDamage"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1124980805", - ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + }, + ["2914_AbyssMinionPoisonOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", }, }, - ["implicit.stat_563547620"] = { + ["2914_MinionsPoisonEnemiesOnHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_563547620", - ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", }, }, - ["implicit.stat_3574189159"] = { + ["2921_PoisonDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3574189159", - ["text"] = "Elemental Overload", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, }, - ["implicit.stat_2517001139"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, + ["2921_PoisonDamageAddedChaosToAttacks"] = { ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, }, - ["implicit.stat_4279053153"] = { + ["2921_PoisonDamageAddedChaosToSpells"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4279053153", - ["text"] = "Right ring slot: #% increased Effect of Curses on you", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, + }, + ["2921_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 22, + ["min"] = 8, }, ["sign"] = "", - }, - ["implicit.stat_3964634628"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2921_PoisonDamageAndLocalChanceOnHit"] = { + ["1HSword"] = { + ["max"] = 50, + ["min"] = 21, }, - ["sign"] = "", ["1HWeapon"] = { - ["max"] = 47.5, - ["min"] = 2, + ["max"] = 50, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 21, }, ["2HWeapon"] = { - ["max"] = 47.5, - ["min"] = 2, + ["max"] = 50, + ["min"] = 21, }, - }, - ["implicit.stat_587431675"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["Bow"] = { + ["max"] = 50, + ["min"] = 21, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["Claw"] = { + ["max"] = 50, + ["min"] = 21, }, - ["Amulet"] = { + ["Dagger"] = { ["max"] = 50, - ["min"] = 40, - ["subType"] = "Talisman", + ["min"] = 21, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - ["subType"] = "Rune", - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - ["subType"] = "Rune", + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, }, - ["implicit.stat_261342933"] = { - ["specialCaseData"] = { + ["2921_PoisonDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_261342933", - ["text"] = "Secrets of Suffering", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 16, }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, }, - ["implicit.stat_1774370437"] = { + ["2921_PoisonDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1774370437", - ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", - }, - ["sign"] = "", - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, }, - ["implicit.stat_3556824919"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["2921_PoisonDamageWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 26, + ["min"] = 19, }, - ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - ["subType"] = "Talisman", + ["Dagger"] = { + ["max"] = 26, + ["min"] = 19, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 15, - ["subType"] = "Thrusting", + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 50, + }, + ["2921_PoisonOnHitAndDamage"] = { + ["Quiver"] = { + ["max"] = 30, ["min"] = 15, - ["subType"] = "Thrusting", }, - }, - ["implicit.stat_3917489142"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 15, + }, + ["2926_MovementSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 10, ["min"] = 6, }, - ["specialCaseData"] = { - }, ["sign"] = "", - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - }, - ["implicit.stat_3182714256"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "explicit", }, - ["sign"] = "-", - ["Amulet"] = { + }, + ["2932_NoExtraBleedDamageWhileMoving"] = { + ["Quiver"] = { ["max"] = 1, ["min"] = 1, }, - ["Ring"] = { + ["Shield"] = { ["max"] = 1, ["min"] = 1, }, - }, - ["implicit.stat_967627487"] = { - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", }, + }, + ["2932_NoExtraDamageFromBleedMoving"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["tradeMod"] = { + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", }, }, - ["implicit.stat_736967255"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["2939_DamagePerEnduranceCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 3, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 3, }, - ["sign"] = "", - ["Amulet"] = { - ["max"] = 31, - ["min"] = 19, - ["subType"] = "Talisman", + ["1HSword"] = { + ["max"] = 6, + ["min"] = 3, }, - ["Ring"] = { - ["max"] = 23, - ["min"] = 17, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 3, }, - }, - ["implicit.stat_4080418644"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 17, + ["min"] = 5, }, - ["sign"] = "+", ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 6, + ["min"] = 3, }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 25, + ["Bow"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["implicit.stat_1434716233"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Exert # additional Attack", + ["Claw"] = { + ["max"] = 6, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 17, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 3, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", }, }, - ["implicit.stat_2763429652"] = { + ["294_SocketedTriggeredSkillsDoubleDamage"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["2956_AttackSpeedWithFortify"] = { + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, }, - ["sign"] = "", ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HSword"] = { ["max"] = 25, - ["min"] = 15, + ["min"] = 10, }, ["2HWeapon"] = { ["max"] = 25, - ["min"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["implicit.stat_4077843608"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", + ["id"] = "explicit.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["2957_ChanceToBlockIfDamagedRecently"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Talisman", + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - }, - ["Eater"] = { - ["4742_BlindEffectUniquePresence"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_886650454", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", + ["id"] = "explicit.stat_852195286", + ["text"] = "#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + }, + ["2964_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 6, }, ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, }, - ["3104_GraceAuraEffectPinnaclePresence"] = { + ["2985_MovementVelocitySpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_81526858", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", }, + }, + ["3014_IncreasedStunThreshold"] = { ["Chest"] = { - ["min"] = 49, ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", - }, - ["1347_LifeRegenerationRatePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_498250787", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", - }, ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["3019_WarcrySpeed"] = { ["Amulet"] = { + ["max"] = 35, ["min"] = 15, - ["max"] = 18, }, - ["Boots"] = { + ["Helmet"] = { + ["max"] = 35, ["min"] = 15, - ["max"] = 18, }, - }, - ["2913_PoisonOnHitUniquePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2433754249", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 40, + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1331_GlobalEnergyShieldPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1917716710", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", + ["3028_DamagePerFrenzyCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 3, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 6, + ["min"] = 3, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 22, - ["max"] = 29, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 3, }, - ["Chest"] = { - ["min"] = 22, - ["max"] = 29, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 3, }, - }, - ["1000_SpellDamageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136821316", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 8, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, + ["2HSword"] = { + ["max"] = 8, + ["min"] = 5, }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 41, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 5, }, - }, - ["5388_DamagePer100STR"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", + ["Bow"] = { + ["max"] = 8, + ["min"] = 5, }, - ["Gloves"] = { + ["Claw"] = { + ["max"] = 6, ["min"] = 3, - ["max"] = 4, }, - ["sign"] = "", - }, - ["5386_DamagePer100DEX"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 10, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", + ["Staff"] = { + ["max"] = 8, + ["min"] = 5, }, - ["Gloves"] = { + ["Wand"] = { + ["max"] = 6, ["min"] = 3, - ["max"] = 4, }, ["sign"] = "", - }, - ["1557_AdditionalPierce"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1641_ReducedFreezeDurationPinnaclePresence"] = { + ["3030_ArcaneSurgeEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_928972227", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", - }, - ["Helmet"] = { - ["min"] = 57, - ["max"] = 70, + ["id"] = "explicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4000_PlayerReflectedDamagePinnaclePresence"] = { + ["3032_OnslaughtEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3178090061", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken", + ["id"] = "explicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 85, + }, + ["3034_CriticalStrikeChanceAgainstPoisonedEnemies"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["Dagger"] = { ["max"] = 100, + ["min"] = 80, }, ["sign"] = "", - }, - ["5176_ColdExposureEffectOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3658662726", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["id"] = "explicit.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["type"] = "explicit", }, - ["sign"] = "-", }, - ["4482_AttackImpaleChance"] = { - ["specialCaseData"] = { + ["3042_AttackSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 14, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["sign"] = "", + ["specialCaseData"] = { }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1338_EnergyShieldRecoveryRateUniquePresence"] = { + ["3043_ChaosResistanceWhileUsingFlask"] = { + ["Belt"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_587322642", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", + ["id"] = "explicit.stat_392168009", + ["text"] = "#% to Chaos Resistance during any Flask Effect", + ["type"] = "explicit", }, + }, + ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + ["max"] = 30, + ["min"] = 11, }, ["sign"] = "", - }, - ["2350_MarkEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_505694848", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", + ["id"] = "explicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + }, + ["3046_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, }, ["sign"] = "", - }, - ["8105_MinionReflectedDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_505327219", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage", - }, - ["Chest"] = { - ["min"] = 85, - ["max"] = 100, + ["id"] = "explicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8192_IncreasedAilmentEffectOnEnemies"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["3071_WarcryCooldownSpeed"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 17, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 17, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 17, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 35, }, - }, - ["1436_PhysicalDamageLifeLeechUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 45, + ["min"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2443166200", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 17, }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["Shield"] = { + ["max"] = 45, + ["min"] = 35, }, ["sign"] = "", - }, - ["1440_FireDamageLifeLeechPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1954944666", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", - }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1610_AvoidElementalStatusAilmentsPinnaclePresence"] = { - ["specialCaseData"] = { + ["3077_IncreasedOneHandedMeleeDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4241033239", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, - }, - }, - ["5387_DamagePer100INTPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2532279515", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", + ["id"] = "explicit.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 6, + }, + ["3078_IncreasedTwoHandedMeleeDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, }, ["sign"] = "", - }, - ["1795_ChanceToShockUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2621869142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", + ["id"] = "explicit.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 20, + }, + ["3097_AngerAuraEffect"] = { + ["1HMace"] = { ["max"] = 40, + ["min"] = 28, }, - ["sign"] = "", - }, - ["7190_GlobalMaimOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_720015764", - ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, }, - ["sign"] = "", - }, - ["1331_GlobalEnergyShieldPercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1114962813", - ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", + ["Staff"] = { + ["max"] = 60, + ["min"] = 48, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 23, - }, - ["Chest"] = { - ["min"] = 14, - ["max"] = 23, - }, - }, - ["1641_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + ["id"] = "explicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4742_BlindEffect"] = { - ["specialCaseData"] = { + ["3102_WrathAuraEffect"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 28, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 17, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, }, - ["sign"] = "", - }, - ["1642_ReducedIgniteDurationOnSelfUniquePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2520245478", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", + ["Staff"] = { + ["max"] = 60, + ["min"] = 48, }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, }, ["sign"] = "", - }, - ["2723_ArmourPenetrationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2909740133", - ["text"] = "While a Unique Enemy is in your Presence, Overwhelm #% Physical Damage Reduction", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1989_ManaReservationEfficiencyUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2358903592", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 15, + ["3107_HatredAuraEffect"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 28, }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, }, - }, - ["3101_PurityOfLightningEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1445513967", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, }, - ["Chest"] = { - ["min"] = 49, + ["Staff"] = { ["max"] = 60, + ["min"] = 48, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, }, ["sign"] = "", - }, - ["3845_RallyingCryWarcryEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4147277532", - ["text"] = "#% increased Rallying Cry Buff Effect", + ["id"] = "explicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["3110_CannotBePoisoned"] = { ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1440_FireDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3430693940", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + }, + ["3112_PhysicalDamageAvoidance"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["5796_FasterBleedDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4106235309", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["3114_FireDamageAvoidance"] = { ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["max"] = 10, + ["min"] = 5, }, - }, - ["5702_EnergyShieldFromGlovesBootsPinnaclePresence"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1388739249", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["Quiver"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Helmet"] = { - ["min"] = 57, - ["max"] = 70, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["5749_EvasionRatingHelmetBootsUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2408490382", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 45, - ["max"] = 61, + }, + ["3114_FireDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["5702_EnergyShieldFromGlovesBootsUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4288334466", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + }, + ["3115_ColdDamageAvoidance"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["1449_LightningDamageLifeLeechPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1896842319", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + }, + ["3115_ColdDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["5176_ColdExposureEffectOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005701891", - ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 11, - ["max"] = 16, + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", }, - ["sign"] = "-", }, - ["2199_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { - ["specialCaseData"] = { + ["3116_LightningDamageAvoidance"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3995172058", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["Chest"] = { + ["max"] = 10, + ["min"] = 4, }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 4, }, ["sign"] = "", - }, - ["2203_PhysicalDamageTakenAsChaosUberUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2393004388", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", }, - ["Helmet"] = { + }, + ["3116_LightningDamageAvoidanceMaven"] = { + ["Boots"] = { + ["max"] = 10, ["min"] = 8, + }, + ["Shield"] = { ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", - }, - ["1616_ChanceToAvoidPoisonPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2714750784", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", }, }, - ["1698_PhysicalAddedAsColdPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1425454108", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["3118_UnholyMightOnKillPercentChance"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 5, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 10, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 5, }, - }, - ["1348_LifeRecoveryRatePinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 25, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2761472996", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", + ["Staff"] = { + ["max"] = 25, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 16, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - }, - ["3097_AngerAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_778803098", - ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["id"] = "explicit.stat_3991482957", + ["text"] = "#% chance to gain Unholy Might for 10 seconds on Kill", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4342_ArmourFromHelmetGlovesPinnaclePresence"] = { - ["specialCaseData"] = { + ["3121_OnslaugtOnKillPercentChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3330140563", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["1HSword"] = { + ["max"] = 25, + ["min"] = 5, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 5, }, - }, - ["2200_PhysicalDamageTakenAsColdUber"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["2HSword"] = { + ["max"] = 25, + ["min"] = 5, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 5, }, - ["sign"] = "", - }, - ["3107_HatredAuraEffectUniquePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4218330172", - ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + ["Claw"] = { + ["max"] = 25, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - }, - ["1727_ConvertPhysicalToChaosPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2204282073", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", - }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["2350_MarkEffectPinnaclePresence"] = { + ["3129_LightningDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1138753695", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks", - }, - ["Gloves"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1356_ManaRecoveryRatePinnaclePresence"] = { + ["3130_ColdDamageTakenPercentage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4117139221", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", - }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 16, + ["id"] = "explicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["5481_MalevolenceAuraEffect"] = { + ["3132_FlaskChargeOnCrit"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", + ["id"] = "explicit.stat_1546046884", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", }, + }, + ["3137_NearbyEnemiesAreBlinded"] = { ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["3098_PurityOfElementsEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3541970927", - ["text"] = "Purity of Elements has #% increased Aura Effect", + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", }, + }, + ["3137_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["2241_ChanceToBleedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_64193828", - ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 40, + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["4764_BodyDamageTakenPerIntelligencePinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3801851872", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", + ["3147_CriticalChanceAgainstBlindedEnemies"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 80, }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + ["Claw"] = { + ["max"] = 100, + ["min"] = 80, }, ["sign"] = "", - }, - ["2199_PhysicalDamageTakenAsFireUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "explicit.stat_1939202111", + ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 6, + }, + ["3172_MinionAttacksTauntOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["AnyJewel"] = { ["max"] = 8, + ["min"] = 3, }, ["sign"] = "", - }, - ["6437_IntimidatingCryCooldownRecoveryUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3381588096", - ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "explicit.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "explicit", }, }, - ["1742_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { + ["3174_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2425364074", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 8, + ["id"] = "explicit.stat_2355615476", + ["text"] = "#% to Critical Strike Multiplier against Enemies that are on Full Life", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["8570_SeismicCryExertedDamageUniquePresence"] = { - ["specialCaseData"] = { + ["3196_IncreasedDamageFromAuras"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1505297139", - ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 29, - ["max"] = 41, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["1354_ManaRegenerationPinnaclePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4222133389", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Helmet"] = { - ["min"] = 49, - ["max"] = 60, + ["2HMace"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "", - }, - ["1610_AvoidElementalStatusAilments"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["Bow"] = { + ["max"] = 4, + ["min"] = 4, }, - }, - ["1989_ManaReservationEfficiency"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 12, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "explicit.stat_3729445224", + ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + ["type"] = "explicit", }, }, - ["1206_IncreasedAccuracyPercentPinnaclePresence"] = { + ["3199_TrapCooldownRecoveryAndDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2086047206", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", - }, - ["Gloves"] = { - ["min"] = 21, - ["max"] = 28, + ["id"] = "explicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["924_ChanceToSuppressSpellsUniquePresence"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 12, + ["3203_ChancetoGainPhasingOnKill"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3998961962", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Suppress Spell Damage", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 3, }, - }, - ["4541_GlobalCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_668321613", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["specialCaseData"] = { }, - }, - ["1335_EnergyShieldRegenerationPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_26006636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "explicit", }, + }, + ["3212_ChanceToLoseManaOnSkillUse"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "explicit.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + }, + ["3213_ChanceToRecoverManaOnSkillUse"] = { ["Amulet"] = { - ["min"] = 29, - ["max"] = 32, + ["max"] = 10, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 32, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["975_AttackDamage"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_308309328", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", + ["type"] = "explicit", }, + }, + ["3217_TrapAreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "explicit.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["type"] = "explicit", }, + }, + ["3286_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { }, - }, - ["2727_ColdResistancePenetrationUniquePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1477049675", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_2395088636", + ["text"] = "Throw an additional Mine", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["3296_ElementalDamagePercentMaven"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "explicit", }, }, - ["1347_LifeRegenerationRate"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["3301_ChanceForDoubleStunDuration"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 7, }, - ["sign"] = "", - ["Amulet"] = { + ["2HMace"] = { + ["max"] = 25, ["min"] = 7, - ["max"] = 12, }, - ["Boots"] = { + ["2HWeapon"] = { + ["max"] = 25, ["min"] = 7, - ["max"] = 12, }, - }, - ["3107_HatredAuraEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", + ["id"] = "explicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "explicit", }, + }, + ["3303_AuraEffect"] = { ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["max"] = 30, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["4586_BattlemagesCryWarcryEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3173180145", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "explicit", }, }, - ["2316_FasterIgniteDamage"] = { + ["3304_AuraEffectOnEnemies"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["type"] = "explicit", }, }, - ["2728_LightningResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["3349_PowerFrenzyOrEnduranceChargeOnKill"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 16, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 16, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["max"] = 10, + ["min"] = 3, }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["Bow"] = { + ["max"] = 16, + ["min"] = 16, }, - }, - ["4764_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["Claw"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_553122931", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", + ["id"] = "explicit.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + }, + ["338_AreaDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["5386_DamagePer100DEXPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1870591253", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", + ["id"] = "explicit.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "explicit", }, + }, + ["339_AdditionalTrapsThrownSupported"] = { ["Gloves"] = { - ["min"] = 5, - ["max"] = 6, + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["2203_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3904394775", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + }, + ["339_TrapDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", - }, - ["3099_PurityOfFireEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1926772156", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["342_MineDamageTrapSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["7190_GlobalMaimOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "explicit", }, + }, + ["342_TrapDamageMineSupported"] = { ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["2726_FireResistancePenetrationPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1175129684", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["type"] = "explicit", }, }, - ["6437_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["346_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3945581778", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["3014_IncreasedStunThreshold"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["3030_ArcaneSurgeEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 17, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["1727_ConvertPhysicalToChaosUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1623369100", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", + ["id"] = "explicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + }, + ["348_TotemDamageSpellSupported"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", - }, - ["1354_ManaRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["348_TotemSpeedSpellSupported"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", - }, - ["4112_TravelSkillCooldownRecoveryUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2986495340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", }, }, - ["2728_LightningResistancePenetrationUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1598254831", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", + ["3496_LocalAttackReduceEnemyElementalResistance"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 6, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 6, }, - ["sign"] = "", - ["Amulet"] = { + ["1HSword"] = { + ["max"] = 16, ["min"] = 6, - ["max"] = 8, }, - ["Helmet"] = { + ["1HWeapon"] = { + ["max"] = 16, ["min"] = 6, - ["max"] = 8, }, - }, - ["1697_PhysicalAddedAsFirePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1335630001", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", + ["2HMace"] = { + ["max"] = 16, + ["min"] = 6, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 6, }, - }, - ["5641_ExertedAttackDamage"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", + ["Bow"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["Claw"] = { + ["max"] = 16, + ["min"] = 6, }, - ["sign"] = "", - }, - ["8105_MinionReflectedDamage"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3056045252", - ["text"] = "Minions take #% reduced Reflected Damage", + ["Staff"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Chest"] = { - ["min"] = 45, - ["max"] = 70, + ["Wand"] = { + ["max"] = 16, + ["min"] = 6, }, ["sign"] = "", - }, - ["3101_PurityOfLightningEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_45589825", - ["text"] = "Purity of Lightning has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["1347_LifeRegenerationRateUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1916766878", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", + ["3496_LocalElementalPenetration"] = { + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 6, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 6, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 15, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 6, }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, }, - }, - ["1616_ChanceToAvoidPoisonUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3553907672", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", + ["2HMace"] = { + ["max"] = 12, + ["min"] = 6, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 6, }, - }, - ["1700_PhysicalDamageAddedAsChaosPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3490650294", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["Bow"] = { + ["max"] = 12, + ["min"] = 6, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 10, + ["Claw"] = { + ["max"] = 12, + ["min"] = 6, }, - }, - ["8765_SpellsHinderOnHitChancePinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 12, + ["min"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_604515066", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["Wand"] = { + ["max"] = 12, + ["min"] = 6, }, ["sign"] = "", - }, - ["3845_RallyingCryWarcryEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1381761351", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", }, + }, + ["3497_LocalFireDamageAndPen"] = { ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["specialCaseData"] = { }, - }, - ["1989_ManaReservationEfficiencyPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4213793369", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["3497_LocalFireDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 18, + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 18, + ["1HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - }, - ["1720_ConvertPhysicalToFirePinnaclePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3764409984", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["2HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["2HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["4177_IncreasedAccuracyPerFrenzy"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3126680545", - ["text"] = "# to Accuracy Rating per Frenzy Charge", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 43, - ["max"] = 60, + ["Bow"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "+", - }, - ["8192_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1016769968", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["Claw"] = { + ["max"] = 7, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 32, - ["max"] = 41, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Helmet"] = { - ["min"] = 32, - ["max"] = 41, + ["Wand"] = { + ["max"] = 7, + ["min"] = 5, }, - }, - ["1610_AvoidElementalStatusAilmentsUniquePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3264420229", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", }, }, - ["1312_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1980216452", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", - }, - ["specialCaseData"] = { - }, + ["3497_LocalFireDamageTwoHandAndPen"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 34, - }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 34, - }, - }, - ["3014_IncreasedStunThresholdUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_266654028", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", }, }, - ["8105_MinionReflectedDamageUniquePresence"] = { - ["specialCaseData"] = { + ["3497_LocalFirePenetration"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1499657170", - ["text"] = "While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 65, - ["max"] = 85, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - }, - ["6057_GeneralsCryCooldownRecovery"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3637727672", - ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["3947_ChanceToAvoidBleeding"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["8365_PrideAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2163876658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, }, ["sign"] = "", - }, - ["1662_SkillEffectDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - }, - ["Amulet"] = { - ["min"] = 7, - ["max"] = 18, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["6437_IntimidatingCryCooldownRecovery"] = { + ["3498_LocalColdDamageAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1134560807", - ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", }, }, - ["6577_LightningExposureEffectOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["3498_LocalColdDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2876365933", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["1HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "-", - }, - ["924_ChanceToSuppressSpells"] = { - ["Gloves"] = { + ["1HWeapon"] = { + ["max"] = 7, ["min"] = 5, - ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["2HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "+", - ["Amulet"] = { + ["2HSword"] = { + ["max"] = 7, ["min"] = 5, - ["max"] = 10, }, - }, - ["3108_DeterminationAuraEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2366356855", - ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", + ["Bow"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Claw"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["5388_DamagePer100STRPinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3183308031", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Gloves"] = { + ["Wand"] = { + ["max"] = 7, ["min"] = 5, - ["max"] = 6, }, ["sign"] = "", - }, - ["5176_ColdExposureEffectOnHitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1699220089", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", }, - ["sign"] = "-", }, - ["5641_ExertedAttackDamageUniquePresence"] = { + ["3498_LocalColdDamageTwoHandAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291139981", - ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", - }, - ["Gloves"] = { - ["min"] = 29, - ["max"] = 41, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3100_PurityOfIceEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["3498_LocalColdPenetration"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3786274521", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - }, - ["2203_PhysicalDamageTakenAsChaosUber"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - }, - ["4277_AncestralCryExertedDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1799586622", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 38, - ["max"] = 47, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["1346_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1123587207", - ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 0.3, - ["max"] = 0.4, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["4177_FlatAccuracyPerFrenzyChargeUniquePresence"] = { + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475859964", - ["text"] = "While a Unique Enemy is in your Presence, # to Accuracy Rating per Frenzy Charge", - }, - ["Gloves"] = { - ["min"] = 52, - ["max"] = 66, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1346_LifeRegenerationPercentPerEnduranceCharge"] = { + ["3499_LocalLightningDamageAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 0.2, - ["max"] = 0.3, + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", }, }, - ["4763_BodyDamageTakenPerDexterityUniquePresence"] = { - ["specialCaseData"] = { + ["3499_LocalLightningDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1682072497", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", + ["1HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + ["1HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - }, - ["5828_FireExposureEffectOnHit"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1309840354", - ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["2HAxe"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 11, - ["max"] = 16, + ["2HMace"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "-", - }, - ["4342_ArmourFromHelmetGlovesUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 7, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1586470077", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Bow"] = { + ["max"] = 7, + ["min"] = 5, }, - }, - ["975_AttackDamageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4061200499", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + ["Claw"] = { + ["max"] = 7, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 7, + ["min"] = 5, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 41, + ["Wand"] = { + ["max"] = 7, + ["min"] = 5, }, - }, - ["3104_GraceAuraEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3019_WarcrySpeed"] = { + ["3499_LocalLightningDamageTwoHandAndPen"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 26, + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", }, }, - ["5386_DamagePer100DEXUniquePresence"] = { - ["specialCaseData"] = { + ["3499_LocalLightningPenetration"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_535580777", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - }, - ["4541_GlobalCooldownRecovery"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, }, - }, - ["3105_HasteAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1065477979", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, }, - ["sign"] = "", - }, - ["3097_AngerAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1167349834", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, }, ["sign"] = "", - }, - ["1791_ChanceToFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 30, + }, + ["3504_MinionAddedChaosDamage"] = { + ["AbyssJewel"] = { + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 32.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["3102_WrathAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1850144024", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", + ["id"] = "explicit.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + }, + ["3505_MinionAddedColdDamage"] = { + ["AbyssJewel"] = { + ["max"] = 43, + ["min"] = 5.5, + }, + ["AnyJewel"] = { + ["max"] = 43, + ["min"] = 5.5, }, ["sign"] = "", - }, - ["5749_EvasionRatingHelmetBootsPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2980409921", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", + ["id"] = "explicit.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 57, - ["max"] = 70, + }, + ["3506_MinionAddedFireDamage"] = { + ["AbyssJewel"] = { + ["max"] = 43, + ["min"] = 5.5, + }, + ["AnyJewel"] = { + ["max"] = 43, + ["min"] = 5.5, }, ["sign"] = "", - }, - ["4112_TravelSkillCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2308278768", - ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["id"] = "explicit.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + ["type"] = "explicit", }, }, - ["1788_ChanceToIgnitePinnaclePresence"] = { + ["3507_MinionAddedLightningDamage"] = { + ["AbyssJewel"] = { + ["max"] = 41.5, + ["min"] = 5, + }, + ["AnyJewel"] = { + ["max"] = 41.5, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1030674088", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", + ["id"] = "explicit.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + ["type"] = "explicit", }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + }, + ["3508_MinionAddedPhysicalDamage"] = { + ["AbyssJewel"] = { + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["AnyJewel"] = { + ["max"] = 32.5, + ["min"] = 3.5, }, ["sign"] = "", - }, - ["3109_DisciplineAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_334238649", - ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", + ["id"] = "explicit.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["350_ChanceToFreezeShockIgniteProliferation"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["3098_PurityOfElementsEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_221690080", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", + ["id"] = "explicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "explicit", }, + }, + ["3520_RegenerateLifeOver1Second"] = { ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", - }, - ["3030_ArcaneSurgeEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3163099942", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", - }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "explicit.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["2201_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { - ["specialCaseData"] = { + ["352_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3947691353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - }, - ["3097_AngerAuraEffect"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - }, - ["1662_SkillEffectDurationPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Amulet"] = { - ["min"] = 23, - ["max"] = 30, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["4000_PlayerReflectedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1941017392", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken", + ["id"] = "explicit.stat_2985291457", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 65, - ["max"] = 85, + }, + ["353_IncreasedAttackSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["1445_ColdDamageLifeLeechPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_339123312", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", - }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["938_SpellBlockPercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1358320252", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", + ["353_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["1662_SkillEffectDurationUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 24, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["5828_FireExposureEffectOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1629531681", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", }, + }, + ["354_BlindOnHitSupported"] = { ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { }, - ["sign"] = "-", - }, - ["2728_LightningResistancePenetrationPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_550672859", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["355_SupportedByMeleeSplashDamage"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["2913_PoisonOnHit"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["sign"] = "", - }, - ["2199_PhysicalDamageTakenAsFireUberUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1283684786", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["3102_WrathAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_399528178", - ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["356_SupportedByCastOnCritWeapon"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["1348_LifeRecoveryRateUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1481249164", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + }, + ["360_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["6409_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1774377226", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "explicit", }, }, - ["975_AttackDamagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3133935886", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", + ["361_LocalIncreasedAttackSpeedMultistrike"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { - ["min"] = 44, - ["max"] = 53, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["2200_PhysicalDamageTakenAsColdUberUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_848890513", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - }, - ["919_BlockPercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "explicit", }, }, - ["1388_AllResistances"] = { + ["362_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 16, + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1338_EnergyShieldRecoveryRate"] = { + ["362_ProjectileSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + }, + ["363_SupportedByLifeLeech"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", - }, - ["1356_ManaRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + }, + ["365_CriticalStrikeMultiplierSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["1722_ConvertPhysicalToColdPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3567752586", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + }, + ["367_IncreasedWeaponElementalDamagePercentSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["3100_PurityOfIceEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1944316218", - ["text"] = "Purity of Ice has #% increased Aura Effect", + ["id"] = "explicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["369_SupportedByInspirationWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["1642_ReducedIgniteDurationOnSelfPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3042217102", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", - }, - ["Helmet"] = { - ["min"] = 57, - ["max"] = 70, + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", }, - ["sign"] = "", }, - ["3105_HasteAuraEffect"] = { + ["369_WeaponSpellDamageReducedMana"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1240056437", - ["text"] = "Haste has #% increased Aura Effect", + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["371_DisplaySocketedGemsSupportedByFortify"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - }, - ["3845_RallyingCryWarcryEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2063107864", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", }, + }, + ["371_LocalPhysicalDamagePercentFortify"] = { ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", }, }, - ["2201_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["371_SupportedByFortifyWeapon"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_196824923", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", }, + }, + ["372_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["3101_PurityOfLightningEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_908556575", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["372_MineDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", - }, - ["3098_PurityOfElementsEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_348693938", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["374_IncreasedCastSpeedFasterCasting"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - }, - ["1335_EnergyShieldRegeneration"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["374_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 21, - ["max"] = 26, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 26, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", }, }, - ["1388_AllResistancesUniquePresence"] = { + ["377_MinionLifeSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2358153166", - ["text"] = "While a Unique Enemy is in your Presence, #% to all Elemental Resistances", - }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 22, + ["id"] = "explicit.stat_1337327984", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "explicit", }, - ["sign"] = "+", }, - ["1697_PhysicalAddedAsFire"] = { + ["378_SupportedByLesserMultipleProjectilesDamage"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "explicit.stat_584144941", + ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", + ["type"] = "explicit", + }, + }, + ["3794_OfferingEffect"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 16, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "explicit", }, }, - ["1449_LightningDamageLifeLeechUniquePresence"] = { + ["379_MinionDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2824722288", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", + ["id"] = "explicit.stat_808939569", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "explicit", }, + }, + ["3813_DamageDuringFlaskEffect"] = { ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["max"] = 40, + ["min"] = 19, }, ["sign"] = "", - }, - ["3099_PurityOfFireEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2539726203", - ["text"] = "Purity of Fire has #% increased Aura Effect", + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["384_ChillEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["1720_ConvertPhysicalToFireImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "explicit.stat_13669281", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "explicit", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + }, + ["386_ColdDamagePrefixColdPenetration"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", - }, - ["4765_BodyDamageTakenPerStrengthUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3389591826", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", + ["id"] = "explicit.stat_1991958615", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + }, + ["387_DisplaySupportedByManaLeech"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", - }, - ["1356_ManaRecoveryRateUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1217759839", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + }, + ["387_DisplaySupportedByManaLeechMaven"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, ["sign"] = "", - }, - ["3019_WarcrySpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2255001736", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + }, + ["391_ShockEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1106668565", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", }, }, - ["8765_SpellsHinderOnHitChanceUniquePresence"] = { + ["393_ChanceToPoisonSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423886807", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", }, + }, + ["393_PoisonDamageSupported"] = { ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["6409_InfernalCryWarcryAreaOfEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3199255605", - ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["393_PoisonDamageWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", }, }, - ["5481_MalevolenceAuraEffectUniquePresence"] = { + ["393_PoisonDurationSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1327020319", - ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["3947_AvoidBleedAndPoison"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 41, }, ["sign"] = "", - }, - ["1788_ChanceToIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["3947_ChanceToAvoidBleeding"] = { + ["AbyssJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["Boots"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["3947_MovementVelocityDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["3950_AreaOfEffectIfKilledRecently"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["395_WeaponSpellDamageControlledDestruction"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3718597497", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "explicit", + }, + }, + ["3961_FlaskChanceToNotConsumeCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + }, + ["396_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + }, + ["396_SupportedByEnduranceChargeOnStunWeapon"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + }, + ["3970_MaximumEnduranceChargesMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2713233613", + ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["398_DisplaySocketedGemsGetReducedReservation"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["3992_MovementSpeedIfEnemySlainRecently"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["3995_DualWieldingCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2546185479", + ["text"] = "#% to Critical Strike Multiplier while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["3997_ArmourAndEvasionRating"] = { + ["Belt"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["Quiver"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2316658489", + ["text"] = "# to Armour and Evasion Rating", + ["type"] = "explicit", + }, + }, + ["3998_ElementalPenetrationDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["3999_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["4001_PowerChargeOnBlock"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, + ["4001_PowerChargeOnBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, + ["4002_NearbyEnemiesChilledOnBlock"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", + ["type"] = "explicit", + }, + }, + ["4003_SelfColdDamageTakenPerFrenzy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["4004_AddedColdDamagePerFrenzyCharge"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["4006_AddedFireDamageIfBlockedRecently"] = { + ["Shield"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["type"] = "explicit", + }, + }, + ["4011_ElusiveOnCriticalStrike"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, + ["4011_ElusiveOnCriticalStrikeMaven"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, + ["4039_IncreaseProjectileAttackDamagePerAccuracy"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["4043_ElementalDamageTakenWhileStationary"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", + ["type"] = "explicit", + }, + }, + ["4044_PhysicalDamageReductionWhileNotMoving"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "explicit", + }, + }, + ["4047_ManaRegenerationMaven"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + }, + ["404_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["409_DisplaySocketedSkillsChain"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", + ["type"] = "explicit", + }, + }, + ["410_SocketedSkillsCriticalChance"] = { + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 3.5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have #% Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["414_SocketedAttacksDamageFinal"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "explicit", + }, + }, + ["415_SocketedAttackCriticalStrikeChance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have #% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["4165_GainArmourIfBlockedRecently"] = { + ["Shield"] = { + ["max"] = 800, + ["min"] = 500, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4091848539", + ["text"] = "# Armour if you've Blocked Recently", + ["type"] = "explicit", + }, + }, + ["416_SocketedAttackCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have #% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["417_SocketedAttacksManaCost"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have # to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["417_SocketedAttacksManaCostMaven"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have # to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["4180_AccuracyIfNoEnemySlainRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["4189_FrenzyChargeWhenHit"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_881914531", + ["text"] = "#% chance to gain a Frenzy Charge when Hit", + ["type"] = "explicit", + }, + }, + ["418_SocketedGemsHaveMoreAttackAndCastSpeed"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["4199_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3039589351", + ["text"] = "#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["4203_AdditionalBlockWith5NearbyEnemies"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1214532298", + ["text"] = "#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", + ["type"] = "explicit", + }, + }, + ["420_DisplaySupportedSkillsDealDamageOnLowLife"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "explicit", + }, + }, + ["421_SocketedGemsDealMoreElementalDamage"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "explicit", + }, + }, + ["4226_PhysicalDamageReductionDuringFocus"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "explicit", + }, + }, + ["4228_ReducedPhysicalDamageTakenIfNotHitRecently"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3603666270", + ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["type"] = "explicit", + }, + }, + ["4232_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["4238_AdditionalPhysicalDamageReductionWhileMoving"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2713357573", + ["text"] = "#% additional Physical Damage Reduction while moving", + ["type"] = "explicit", + }, + }, + ["4247_MaximumManaIncreasePercentMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", + ["type"] = "explicit", + }, + }, + ["424_SocketedGemsDealAdditionalFireDamage"] = { + ["Gloves"] = { + ["max"] = 200, + ["min"] = 200, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "explicit", + }, + }, + ["425_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["4260_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skill Gems", + ["type"] = "explicit", + }, + }, + ["4279_AngerReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["4280_AngerReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["428_DisplayMovementSkillsCostNoMana"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "explicit", + }, + }, + ["429_SocketedSkillsAttackSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["4301_ArcticArmourReservationCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["4302_ArcticArmourReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["4309_CullingStrikeMaven"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1785568076", + ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["type"] = "explicit", + }, + }, + ["430_SocketedSkillsCastSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["4312_AreaOfEffectIfStunnedEnemyRecently"] = { + ["1HMace"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["4315_AreaOfEffectPer50Strength"] = { + ["1HMace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", + ["type"] = "explicit", + }, + }, + ["4317_AreaOfEffectPerEnduranceCharge"] = { + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["4317_EnduranceChargeIfHitRecentlyMaven"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["432_DisplaySocketedSkillsFork"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", + ["type"] = "explicit", + }, + }, + ["433_SocketedSpellsDamageFinal"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", + ["type"] = "explicit", + }, + }, + ["4343_ArmourIncreasedByUncappedFireResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["type"] = "explicit", + }, + }, + ["4347_FortifyEffectMaven"] = { + ["Helmet"] = { + ["max"] = 500, + ["min"] = 500, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153004860", + ["text"] = "# to Armour while Fortified", + ["type"] = "explicit", + }, + }, + ["4348_IncreasedArmourIfNoEnemySlainRecently"] = { + ["AbyssJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["434_SocketedSpellCriticalStrikeChance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have #% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["435_SocketedSpellCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have #% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["436_SocketedSpellsManaCost"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["type"] = "explicit", + }, + }, + ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 0.5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["4389_AttackAndCastSpeedIfHitRecently"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1483753325", + ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["4390_AdditionalChanceToEvadeMaven"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_223937937", + ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, + ["4396_AttackAndCastSpeedWhileFocused"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "explicit", + }, + }, + ["4412_ChanceToGainOnslaughtOnKillMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", + ["type"] = "explicit", + }, + }, + ["4439_AddedFireDamagePerStrength"] = { + ["1HAxe"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "explicit", + }, + }, + ["4442_AddedLightningDamagePerIntelligence"] = { + ["1HMace"] = { + ["max"] = 3.5, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 3.5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 4.5, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 3.5, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 3.5, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 4.5, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 3.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["4459_AttackSpeedIfEnemyKilledRecently"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4459_AttackSpeedKilledRecently"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4460_AttackSpeedHitRecently"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4137521191", + ["text"] = "#% increased Attack Speed if you've been Hit Recently", + ["type"] = "explicit", + }, + }, + ["4462_AttackSpeedIfCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["4465_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["4467_IncreasedAttackSpeedPerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["4470_ManaGainPerTargetMaven"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_779663446", + ["text"] = "#% increased Attack Speed while not on Low Mana", + ["type"] = "explicit", + }, + }, + ["4479_AttacksBlindOnHitChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4480_AttacksTauntOnHitChance"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4482_AttackImpaleChance"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4482_AttackImpaleChanceMaven"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4482_ImpaleChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4485_AddedColdDamagePerDexterity"] = { + ["1HAxe"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["4496_EnchantmentElusive"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "explicit", + }, + }, + ["4498_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["4504_ChanceToAvoidProjectilesMaven"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3114696875", + ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", + ["type"] = "explicit", + }, + }, + ["4523_AilmentDamage"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Quiver"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Ring"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "explicit", + }, + }, + ["4531_ChanceToAvoidProjectiles"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, + ["4531_ChanceToAvoidProjectilesMaven"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, + ["4532_BleedChanceAndDurationForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4532_BleedDamageAndDuration"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4532_BleedDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4532_FasterBleedDamageMaven"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["453_SupportDamageOverTime"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "explicit", + }, + }, + ["4541_GlobalCooldownRecovery"] = { + ["AbyssJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["4547_ColdDamageESLeech"] = { + ["Amulet"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["4549_FireDamageESLeech"] = { + ["Amulet"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["4550_LightningDamageESLeech"] = { + ["Amulet"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_308127151", + ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["4558_ColdExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["4559_FireExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["4560_LightningExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["4564_MinionDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "explicit", + }, + }, + ["4573_PhysicalDamageOverTimeTaken"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_511024200", + ["text"] = "#% reduced Physical Damage taken over time", + ["type"] = "explicit", + }, + }, + ["4583_DesecratedGroundEffectEffectivenessMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1953432004", + ["text"] = "Unaffected by Poison", + ["type"] = "explicit", + }, + }, + ["4739_OnHitBlindChilledEnemies"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", + ["type"] = "explicit", + }, + }, + ["4750_AttackBlockIfBlockedAttackRecently"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3789765926", + ["text"] = "#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["type"] = "explicit", + }, + }, + ["4814_CannotBeChilledOrFrozenWhileMoving"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", + ["type"] = "explicit", + }, + }, + ["4825_CorruptedBloodImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + }, + ["4829_CannotBeShockedOrIgnitedWhileMoving"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "explicit", + }, + }, + ["4875_CastSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["4876_CastSpeedIfEnemyKilledRecently"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4876_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4877_CastSpeedIfCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["4878_CastSpeedIfMinionKilledRecently"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["type"] = "explicit", + }, + }, + ["5016_SpellBlockChanceIfHitRecently"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101206134", + ["text"] = "#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["type"] = "explicit", + }, + }, + ["5020_CrushOnHitChance"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", + ["type"] = "explicit", + }, + }, + ["5024_AttackSpeedDoubleDamage"] = { + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["5024_DoubleDamageChance"] = { + ["1HAxe"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["5026_DoubleDamageStunnedRecently"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4224978303", + ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["5030_ChanceToDealDoubleDamageWhileFocused"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "explicit", + }, + }, + ["5035_ChanceWhenHitForArmourToBeDoubled"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "explicit", + }, + }, + ["5036_AdditionalChanceToEvade"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, + ["5036_AdditionalChanceToEvadeMaven"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, + ["5041_FortifyOnMeleeStun"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + }, + ["5041_GainFortifyOnStunChance"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + }, + ["5048_GainEnduranceChargeOnHittingBleedingEnemy"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1536266147", + ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", + ["type"] = "explicit", + }, + }, + ["5050_GainEnduranceChargeOnTauntingEnemies"] = { + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1657549833", + ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", + ["type"] = "explicit", + }, + }, + ["5052_AccuracyRatingPerFrenzyChargeUber"] = { + ["1HSword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3769211656", + ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["type"] = "explicit", + }, + }, + ["5055_ChanceToGainOnslaughtOnFlaskUse"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1324450398", + ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["type"] = "explicit", + }, + }, + ["5077_ChanceToIntimidateOnHit"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, + ["5085_ChanceToUnnerveOnHit"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, + ["5088_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["type"] = "explicit", + }, + }, + ["5091_ChaosResistanceAgainstDamageOverTime"] = { + ["Belt"] = { + ["max"] = 43, + ["min"] = 31, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Quiver"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2266636761", + ["text"] = "#% Chaos Resistance against Damage Over Time", + ["type"] = "explicit", + }, + }, + ["5111_GlobalChaosGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67169579", + ["text"] = "# to Level of all Chaos Skill Gems", + ["type"] = "explicit", + }, + }, + ["5121_ChanceToChillAttackersOnBlock"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + }, + ["5151_ColdAilmentDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5153_AbyssJewelChillEffect"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5153_ChillEffectSupported"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5155_ColdAndChaosDamageResistance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["5171_PhysicalDamageTakenAsColdUberMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5188_GlobalColdGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skill Gems", + ["type"] = "explicit", + }, + }, + ["5207_ConsecratedGroundStationary"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, + ["5207_ConsecratedGroundStationaryMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, + ["5253_CritChanceShockedEnemies"] = { + ["Belt"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["5253_LightningResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["5259_CriticalChanceIncreasedByUncappedLightningResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["5265_CriticalStrikeChanceIfKilledRecently"] = { + ["1HAxe"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 31, + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, + ["5265_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, + ["5266_ReducedShockEffectOnSelfMaven"] = { + ["Helmet"] = { + ["max"] = 75, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1434381067", + ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", + ["type"] = "explicit", + }, + }, + ["5267_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["5267_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["5270_GainAccuracyEqualToStrengthMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511370818", + ["text"] = "#% increased Critical Strike Chance per 10 Strength", + ["type"] = "explicit", + }, + }, + ["5296_CriticalStrikeMultiplierIfEnemySlainRecently"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 26, + }, + ["AbyssJewel"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 26, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 26, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2937483991", + ["text"] = "#% to Critical Strike Multiplier if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["5297_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 18, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_536929014", + ["text"] = "#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["5299_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1478247313", + ["text"] = "#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["5300_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 17, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3992439283", + ["text"] = "#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["5302_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 35, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 35, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3527458221", + ["text"] = "#% to Critical Strike Multiplier if you have Blocked Recently", + ["type"] = "explicit", + }, + }, + ["5332_OLDAdditionalCurseOnEnemiesMaven"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, + ["5333_AdditionalCurseOnEnemiesMaven"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, + ["5338_CurseDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["5356_DamageWithBowSkills"] = { + ["Quiver"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, + ["5366_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["5376_DamageIfEnemySlainRecently"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["5379_ReducedBurnDurationMaven"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_430821956", + ["text"] = "#% increased Damage if you've been Ignited Recently", + ["type"] = "explicit", + }, + }, + ["5390_DamagePer15Dexterity"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "explicit", + }, + }, + ["5391_DamagePer15Intelligence"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "explicit", + }, + }, + ["5392_DamagePer15Strength"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "explicit", + }, + }, + ["5393_DamagePerBlockChance"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3400437584", + ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["5400_IncreasedDamagePerPowerCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 17, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 17, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["5400_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["5403_DamageVSAbyssMonsters"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["5404_ColdResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, + ["5404_DamageChilledEnemies"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, + ["5408_DamageOnFullLife"] = { + ["1HAxe"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["1HMace"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["1HSword"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["2HAxe"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["Dagger"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 120, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_592020238", + ["text"] = "#% increased Damage when on Full Life", + ["type"] = "explicit", + }, + }, + ["5418_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 80, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["5423_DamageRemovedFromManaBeforeLifeWhileFocused"] = { + ["Chest"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "explicit", + }, + }, + ["5431_DamageTakenGainedAsLife"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5431_LifeRecoupForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5450_FasterAilmentDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, + ["5481_MalevolenceAuraEffect"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["5492_DeterminationReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["5493_DeterminationReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["5497_GlobalDexterityGemLevel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_146924886", + ["text"] = "# to Level of all Dexterity Skill Gems", + ["type"] = "explicit", + }, + }, + ["5504_DisciplineReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["5505_DisciplineReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["5594_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["1HMace"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["1HSword"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 42, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + }, + ["5613_IncreasedWeaponElementalDamagePercentSupported"] = { + ["1HAxe"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["1HMace"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["1HSword"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["2HAxe"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["2HMace"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["2HSword"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["2HWeapon"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["Claw"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["Dagger"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["Wand"] = { + ["max"] = 37, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + }, + ["5625_ReducedElementalReflectTaken"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + }, + ["5625_ReducedElementalReflectTakenMaven"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + }, + ["5639_ElusiveOnCriticalStrikeMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "explicit", + }, + }, + ["563_CurseOnHitCriticalWeakness"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["5641_ExertedAttackDamage"] = { + ["Ring"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["564_CurseOnHitPoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["5654_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + }, + ["5654_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + }, + ["566_CurseOnHitWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["5690_EnchantmentIntimidate"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["type"] = "explicit", + }, + }, + ["5691_EnchantmentMaim"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + ["type"] = "explicit", + }, + }, + ["5693_EnchantmentWither"] = { + ["AbyssJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1032614900", + ["text"] = "Enemies Withered by you have #% to all Resistances", + ["type"] = "explicit", + }, + }, + ["5694_EnemiesHaveReducedEvasionIfHitRecently"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773891268", + ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + ["type"] = "explicit", + }, + }, + ["5719_MaximumEnergyShieldOnKillPercentMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2698606393", + ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["5724_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { + ["Belt"] = { + ["max"] = 200, + ["min"] = 90, + }, + ["Chest"] = { + ["max"] = 200, + ["min"] = 90, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["5726_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { + ["1HMace"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["1HWeapon"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["AbyssJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["AnyJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["BaseJewel"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["Claw"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Dagger"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_588560583", + ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["5729_FlatEnergyShieldRegeneration"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["5746_DodgeChanceDuringFocus"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 32, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "explicit", + }, + }, + ["5750_EvasionIncreasedByUncappedColdResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "explicit", + }, + }, + ["5751_LifeRegenerationPerEvasionDuringFocus"] = { + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "explicit", + }, + }, + ["5753_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { + ["1HAxe"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["1HSword"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["1HWeapon"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HAxe"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HSword"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HWeapon"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["AbyssJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["AnyJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["BaseJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["Bow"] = { + ["max"] = 1000, + ["min"] = 1000, + }, + ["Claw"] = { + ["max"] = 500, + ["min"] = 500, + }, + ["Dagger"] = { + ["max"] = 500, + ["min"] = 500, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2935548106", + ["text"] = "# to Evasion Rating if Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["5760_GlobalEvasionRatingPercentOnFullLife"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Global Evasion Rating when on Full Life", + ["type"] = "explicit", + }, + }, + ["5762_EvasionRatingWhileMoving"] = { + ["AbyssJewel"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["AnyJewel"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", + ["type"] = "explicit", + }, + }, + ["5786_LuckyCriticalsDuringFocus"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "explicit", + }, + }, + ["5786_LuckyCriticalsDuringFocusCDR"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", + ["type"] = "explicit", + }, + }, + ["5796_FasterBleedDamage"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + }, + ["5796_FasterBleedDamageMaven"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + }, + ["5797_FasterPoisonDamage"] = { + ["1HSword"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["5797_FasterPoisonDamageMaven"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["5800_FireAndChaosDamageResistance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["581_FireBurstOnHit"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", + ["type"] = "explicit", + }, + }, + ["5821_PhysicalDamageTakenAsFireUberMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5834_GlobalFireGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_599749213", + ["text"] = "# to Level of all Fire Skill Gems", + ["type"] = "explicit", + }, + }, + ["5894_FocusCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_LuckyCriticalsDuringFocusCDR"] = { + ["Belt"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_ShockNearbyEnemiesOnFocusCDR"] = { + ["Ring"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_SkillsCostNoManaWhileFocusedCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5894_TriggerSocketedSpellWhenYouFocusCDR"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["591_SummonWolfOnKillOld"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + }, + ["592_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["5933_GainRareMonsterModsOnKillChance"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2736829661", + ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", + ["type"] = "explicit", + }, + }, + ["5943_GainAccuracyEqualToStrength"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + }, + ["5943_GainAccuracyEqualToStrengthMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + }, + ["5955_GainArcaneSurgeOnCrit"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["5960_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["5974_EnduranceChargeIfHitRecently"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + }, + }, + ["5974_EnduranceChargeIfHitRecentlyMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + }, + }, + ["5983_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["Quiver"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["5988_FrenzyChargeOnHittingRareOrUnique"] = { + ["Quiver"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4179663748", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["type"] = "explicit", + }, + }, + ["598_TriggerOnRareAssassinsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6000_MaximumFrenzyChargesMaven"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2119664154", + ["text"] = "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["6005_GainOnslaughtDuringSoulGainPrevention"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["6034_GainRandomChargeOnBlock"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["type"] = "explicit", + }, + }, + ["603_TriggerOnRarePoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6045_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6045_GainVaalPactWhileFocused"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6045_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["605_TriggerOnRareWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2049471530", + ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6070_ChanceToFreezeAddedDamage"] = { + ["Ring"] = { + ["max"] = 37, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2233361223", + ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["type"] = "explicit", + }, + }, + ["6071_ChanceToIgniteAddedDamage"] = { + ["Ring"] = { + ["max"] = 42, + ["min"] = 28.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_794830148", + ["text"] = "Adds # to # Fire Damage against Ignited Enemies", + ["type"] = "explicit", + }, + }, + ["6073_ChanceToShockAddedDamage"] = { + ["Ring"] = { + ["max"] = 47, + ["min"] = 35.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["6086_GraceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6087_GraceReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6115_HatredReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6116_HatredReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6268_FreezeChanceAndDurationMaven"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1302208736", + ["text"] = "Freeze Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["6269_ShockChanceAndEffectMaven"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["6315_HitAndAilmentDamageCursedEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "explicit", + }, + }, + ["634_FlaskExtraMaxCharges"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1437957544", + ["text"] = "# to Maximum Charges", + ["type"] = "explicit", + }, + }, + ["637_FlaskFullRechargeOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["6388_ImmuneToStatusAilmentsWhileFocused"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "explicit", + }, + }, + ["6388_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", + ["type"] = "explicit", + }, + }, + ["638_FlaskFullRechargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2961372685", + ["text"] = "Recharges # Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["6391_ImpaleEffect"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 38, + ["min"] = 12, + }, + ["2HSword"] = { + ["max"] = 38, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 12, + }, + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 38, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 38, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "explicit", + }, + }, + ["639_FlaskChanceRechargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3738001379", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["642_FlaskIncreasedChargesAdded"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, + ["642_FlaskIncreasedRecoveryReducedEffect"] = { + ["Flask"] = { + ["max"] = 66, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, + ["6430_GlobalIntelligenceGemLevel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_493812998", + ["text"] = "# to Level of all Intelligence Skill Gems", + ["type"] = "explicit", + }, + }, + ["643_FlaskIncreasedHealingCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, + ["646_FlaskExtraLifeCostsMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, + ["6475_LifeRecoveryRateMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + }, + ["647_FlaskHealsMinions"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["6488_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "explicit", + }, + }, + ["6489_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["type"] = "explicit", + }, + }, + ["650_FlaskExtraManaCostsLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, + ["6513_MaximumLifeOnKillPercentMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3353368340", + ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["651_FlaskIncreasedHealingCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["651_FlaskIncreasedRecoveryAmount"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["651_FlaskManaRecoveryAtEnd"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["652_FlaskIncreasedRecoverySpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["652_FlaskPartialInstantRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["6544_LifeRegenerationRateWhileMoving"] = { + ["AbyssJewel"] = { + ["max"] = 1, + ["min"] = 0.5, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_908516597", + ["text"] = "Regenerate #% of Life per second while moving", + ["type"] = "explicit", + }, + }, + ["6546_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["654_FlaskUtilityIncreasedDuration"] = { + ["Flask"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, + ["6553_AbyssJewelShockEffect"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["6553_LightningAilmentEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["6553_ShockChanceAndEffect"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["6553_ShockEffectSupported"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["6555_LightningAndChaosDamageResistance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["656_FlaskIncreasedRecoveryOnLowLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["6570_PhysicalDamageTakenAsLightningUberMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["657_FlaskInstantRecoveryOnLowLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "explicit", + }, + }, + ["6583_GlobalLightningGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1147690586", + ["text"] = "# to Level of all Lightning Skill Gems", + ["type"] = "explicit", + }, + }, + ["658_FlaskPartialInstantRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["662_FlaskManaRecoveryAtEnd"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "explicit", + }, + }, + ["663_FlaskFullInstantRecovery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, + ["666_FlaskExtraManaCostsLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, + ["668_FlaskExtraLifeCostsMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["692_FlaskCurseImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "explicit", + }, + }, + ["693_LocalLifeFlaskAdditionalLifeRecovery"] = { + ["Flask"] = { + ["max"] = 40, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + ["type"] = "explicit", + }, + }, + ["6967_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["6971_LocalBleedDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HMace"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HSword"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HMace"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Bow"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Claw"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Dagger"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Wand"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_951608773", + ["text"] = "#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", + ["type"] = "explicit", + }, + }, + ["6974_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + }, + ["6975_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_768124628", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", + ["type"] = "explicit", + }, + }, + ["6978_LocalChanceToIntimidateOnHit"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, + ["6979_LocalChaosDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["6979_LocalChaosPenetration"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["6987_CullingStrikeOnBleedingEnemiesUber"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + }, + ["6995_PowerChargeOnManaSpent"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + }, + ["7008_NearbyEnemyChaosDamageResistance"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1902595112", + ["text"] = "Nearby Enemies have #% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7009_NearbyEnemyColdDamageResistance"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2674336304", + ["text"] = "Nearby Enemies have #% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["700_LocalFlaskImmuneToMaimAndHinder"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", + ["type"] = "explicit", + }, + }, + ["7010_NearbyEnemyElementalDamageTaken"] = { + ["Helmet"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["7011_NearbyEnemyFireDamageResistance"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914021960", + ["text"] = "Nearby Enemies have #% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["7013_NearbyEnemyLightningDamageResistance"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1849749435", + ["text"] = "Nearby Enemies have #% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["7015_NearbyEnemyPhysicalDamageTaken"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["701_LocalFlaskImmuneToMaimAndHinder"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + ["type"] = "explicit", + }, + }, + ["702_FlaskDispellsPoison"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3596333054", + ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, + ["7035_DexterityAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_IntelligenceAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_LocalAccuracyRatingAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_LocalItemQuality"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["7035_StrengthAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", + ["type"] = "explicit", + }, + }, + ["703_FlaskPoisonImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3596333054", + ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, + ["704_FlaskRemovesShock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1823903967", + ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", + ["type"] = "explicit", + }, + }, + ["705_FlaskShockImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1823903967", + ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", + ["type"] = "explicit", + }, + }, + ["7065_LifeGainPerBlindedEnemyHit"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1649099067", + ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["type"] = "explicit", + }, + }, + ["7069_ChanceToMaimSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["7069_LocalChanceToMaimPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["706_LocalLifeFlaskHinderNearbyEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1462364052", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", + ["type"] = "explicit", + }, + }, + ["7079_ChanceToPoisonSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["7079_LocalChanceToPoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["7079_LocalChanceToPoisonOnHitChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["7079_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["7079_PoisonDamageAndLocalChanceOnHit"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["707_LocalManaFlaskHinderNearbyEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2313899959", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", + ["type"] = "explicit", + }, + }, + ["7190_GlobalMaimOnHit"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["7197_MalevolenceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["7198_MalevolenceReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["7208_AddedManaRegenerationMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + }, + ["7212_ManaGainedOnSpellHit"] = { + ["Ring"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2474196346", + ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["type"] = "explicit", + }, + }, + ["7218_ManaGainedOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + }, + ["7218_RecoverManaPercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + }, + ["7223_MaximumManaOnKillPercentMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_630994130", + ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["7230_ManaRegeneratedIfYouveHitRecently"] = { + ["1HAxe"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["1HMace"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["1HSword"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["1HWeapon"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["2HAxe"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["2HMace"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["2HSword"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["2HWeapon"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["Bow"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["Claw"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Dagger"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Shield"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Staff"] = { + ["max"] = 0.8, + ["min"] = 0.8, + }, + ["Wand"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2602865453", + ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["7242_ManaRegenerationRateWhileMoving"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + }, + ["729_FlaskEffectReducedDuration"] = { + ["Flask"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + }, + ["730_FlaskBuffArmourWhileHealing"] = { + ["Flask"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1693613464", + ["text"] = "#% increased Armour during Effect", + ["type"] = "explicit", + }, + }, + ["731_FlaskBuffEvasionWhileHealing"] = { + ["Flask"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + ["type"] = "explicit", + }, + }, + ["733_FlaskBuffWardWhileHealing"] = { + ["Flask"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + ["type"] = "explicit", + }, + }, + ["737_FlaskBuffAccuracyWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337754340", + ["text"] = "#% increased Accuracy Rating during Effect", + ["type"] = "explicit", + }, + }, + ["738_FlaskBuffAttackSpeedWhileHealing"] = { + ["Flask"] = { + ["max"] = 17, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", + ["type"] = "explicit", + }, + }, + ["739_FlaskBuffCastSpeedWhileHealing"] = { + ["Flask"] = { + ["max"] = 17, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", + ["type"] = "explicit", + }, + }, + ["740_FlaskBuffMovementSpeedWhileHealing"] = { + ["Flask"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "explicit", + }, + }, + ["741_FlaskBuffStunRecoveryWhileHealing"] = { + ["Flask"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + ["type"] = "explicit", + }, + }, + ["742_FlaskBuffResistancesWhileHealing"] = { + ["Flask"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", + ["type"] = "explicit", + }, + }, + ["743_FlaskBuffLifeLeechWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["744_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { + ["Flask"] = { + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1456464057", + ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", + ["type"] = "explicit", + }, + }, + ["745_FlaskBuffAttackLifeLeechWhileHealing"] = { + ["Flask"] = { + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1173558568", + ["text"] = "#% of Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["746_FlaskBuffLifeLeechPermyriadWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["748_FlaskBuffManaLeechPermyriadWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_374891408", + ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", + ["type"] = "explicit", + }, + }, + ["749_FlaskBuffKnockbackWhileHealing"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_251342217", + ["text"] = "Adds Knockback to Melee Attacks during Effect", + ["type"] = "explicit", + }, + }, + ["756_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1053326368", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "explicit", + }, + }, + ["757_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_475518267", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + }, + ["758_FlaskBuffAvoidIgnite"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", + ["type"] = "explicit", + }, + }, + ["759_FlaskBuffAvoidShock"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "explicit", + }, + }, + ["764_FlaskBuffAvoidStunWhileHealing"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["764_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["764_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["766_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { + ["Flask"] = { + ["max"] = 34, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + ["type"] = "explicit", + }, + }, + ["7674_MapMonsterPacksVaalMapWorlds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "explicit", + }, + }, + ["768_FlaskBuffCriticalWhileHealing"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["768_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["772_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["type"] = "explicit", + }, + }, + ["774_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "explicit", + }, + }, + ["775_FlaskPoisonImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "explicit", + }, + }, + ["776_FlaskShockImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["type"] = "explicit", + }, + }, + ["778_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + }, + ["780_LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["781_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", + ["type"] = "explicit", + }, + }, + ["785_FlaskReflectReductionDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3842373291", + ["text"] = "#% reduced Reflected Damage taken during Effect", + ["type"] = "explicit", + }, + }, + ["7908_FortifyEffect"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_335507772", + ["text"] = "# to maximum Fortification", + ["type"] = "explicit", + }, + }, + ["7908_FortifyEffectMaven"] = { + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4.2, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_335507772", + ["text"] = "# to maximum Fortification", + ["type"] = "explicit", + }, + }, + ["7909_FortifyEffectWhileFocused"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_922014346", + ["text"] = "# to maximum Fortification while Focused", + ["type"] = "explicit", + }, + }, + ["7918_MaximumEnergyShieldFromBodyArmour"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["791_FlaskBuffChillFreezeDuration"] = { + ["Flask"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "explicit", + }, + }, + ["792_FlaskBuffCurseEffect"] = { + ["Flask"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "explicit", + }, + }, + ["7932_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["7933_MaximumLifeConvertedToEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + }, + ["7948_StrikeSkillsAdditionalTarget"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "explicit", + }, + }, + ["7952_MeleeDamageDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4091369450", + ["text"] = "#% increased Melee Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["7954_MovementSkillsFortifyOnHitChance"] = { + ["2HSword"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_59547568", + ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["type"] = "explicit", + }, + }, + ["7971_MeleeWeaponRangeIfKilledRecently"] = { + ["1HSword"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3255961830", + ["text"] = "# to Melee Strike Range if you have Killed Recently", + ["type"] = "explicit", + }, + }, + ["7981_MineAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["7984_MineDetonationSpeedAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", + ["type"] = "explicit", + }, + }, + ["7988_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 28.5, + ["min"] = 12, + }, + ["Quiver"] = { + ["max"] = 28.5, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["7994_AddedColdDamageIfCritRecently"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["7995_ColdDamageToAttacksPerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["7999_AddedFireDamageIfCritRecently"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3144358296", + ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8001_GlobalAddedFireDamagePerEnduranceCharge"] = { + ["Ring"] = { + ["max"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["8002_FireDamageToAttacksPerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["type"] = "explicit", + }, + }, + ["8004_AddedLightningDamageIfCritRecently"] = { + ["Gloves"] = { + ["max"] = 45.5, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_935623115", + ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8005_GlobalAddedLightningDamagePerPowerCharge"] = { + ["Ring"] = { + ["max"] = 6.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1917107159", + ["text"] = "# to # Lightning Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["8006_AddedLightningDamagePerShockedEnemyKilled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["8007_LightningDamageToAttacksPerIntelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["8010_AddedPhysicalDamageIfCritRecently"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2723101291", + ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8012_AttackImpaleChanceMaven"] = { + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1455766505", + ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", + ["type"] = "explicit", + }, + }, + ["8013_AddedPhysicalDamageVsPoisonedEnemies"] = { + ["Gloves"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_424026624", + ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", + ["type"] = "explicit", + }, + }, + ["8025_MinionAccuracyRatingFlat"] = { + ["AbyssJewel"] = { + ["max"] = 250, + ["min"] = 95, + }, + ["AnyJewel"] = { + ["max"] = 250, + ["min"] = 95, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have # to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8025_MinionFlatAccuracyRating"] = { + ["1HWeapon"] = { + ["max"] = 624, + ["min"] = 80, + }, + ["Wand"] = { + ["max"] = 624, + ["min"] = 80, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have # to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8027_MinionAccuracyRating"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8027_MinionAccuracyRatingForJewel"] = { + ["AnyJewel"] = { + ["max"] = 26, + ["min"] = 22, + }, + ["BaseJewel"] = { + ["max"] = 26, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8030_MinionAttackSpeedAndCastSpeed"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["8031_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4227567885", + ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["type"] = "explicit", + }, + }, + ["8036_MinionAttacksBlindOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2431643207", + ["text"] = "Minions have #% chance to Blind on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["8038_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["8043_AbyssMinionIgniteOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["8047_MinionCriticalStrikeChanceIncrease"] = { + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["8049_MinionCriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["8053_MinionDamageVSAbyssMonsters"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["8068_FlatMinionLifeRegeneration"] = { + ["AbyssJewel"] = { + ["max"] = 60, + ["min"] = 22, + }, + ["AnyJewel"] = { + ["max"] = 60, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3062329212", + ["text"] = "Minions Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["8071_MinionMaxElementalResistance"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_10224385", + ["text"] = "Minions have #% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["8086_MinionSpellsHinderOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["8104_MinionsRecoverMaximumLifeWhenYouFocus"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, + ["8104_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, + ["8135_MovementSpeedIfHitRecently"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3178542354", + ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["8138_MovementSpeedIfNotDamagedRecently"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + ["type"] = "explicit", + }, + }, + ["8150_MovementSpeedOnBurningChilledShockedGround"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["type"] = "explicit", + }, + }, + ["8186_NonChaosAddedAsChaos"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["8186_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["8186_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["8192_IncreasedAilmentDurationMaven"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["8192_IncreasedAilmentEffectOnEnemies"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["Boots"] = { + ["max"] = 60, + ["min"] = 16, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["8214_AdditionalTrapsThrownSupported"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220800126", + ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", + ["type"] = "explicit", + }, + }, + ["8218_GainEnduranceChargeWhileStationary"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["type"] = "explicit", + }, + }, + ["8271_EnemiesBlockedAreIntimidated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", + ["type"] = "explicit", + }, + }, + ["8275_SpiritAndPhantasmRefreshOnUnique"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1146215018", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["type"] = "explicit", + }, + }, + ["8289_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8307_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["Chest"] = { + ["max"] = 4000, + ["min"] = 1000, + }, + ["Shield"] = { + ["max"] = 4000, + ["min"] = 1000, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1539825365", + ["text"] = "# to Armour during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["8308_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { + ["1HAxe"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["1HMace"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["1HSword"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["1HWeapon"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HAxe"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HMace"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HSword"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["2HWeapon"] = { + ["max"] = 1000, + ["min"] = 500, + }, + ["AbyssJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["AnyJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["BaseJewel"] = { + ["max"] = 300, + ["min"] = 250, + }, + ["Staff"] = { + ["max"] = 1000, + ["min"] = 1000, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2368149582", + ["text"] = "# to Armour if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["8326_ReducedPhysicalReflectTaken"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + }, + ["8326_ReducedPhysicalReflectTakenMaven"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + }, + ["8327_GlobalPhysicalGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_619213329", + ["text"] = "# to Level of all Physical Skill Gems", + ["type"] = "explicit", + }, + }, + ["8369_PrideReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8370_PrideReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8378_ProjectileAttackDamageDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["8384_ProjectileDamagePerEnemyPierced"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["type"] = "explicit", + }, + }, + ["8412_PurityOfFireReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8413_PurityOfFireReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8415_PurityOfIceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8416_PurityOfIceReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8418_PurityOfLightningReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8419_PurityOfLightningReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8427_Quiver2AdditionalPierceOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["8442_SpiritAndPhantasmRefreshOnUnique"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2461719091", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["type"] = "explicit", + }, + }, + ["8463_RareOrUniqueMonsterDroppedItemRarity"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "explicit", + }, + }, + ["8508_ReflectDamageTaken"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "explicit", + }, + }, + ["8510_ReflectsShocks"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "explicit", + }, + }, + ["8529_RemoveBleedingOnWarcry"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936926420", + ["text"] = "Removes Bleeding when you use a Warcry", + ["type"] = "explicit", + }, + }, + ["8530_RemoveFreezeOnFlaskUse"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "explicit", + }, + }, + ["8534_RemoveIgniteOnFlaskUse"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "explicit", + }, + }, + ["8542_RemoveShockOnFlaskUse"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "explicit", + }, + }, + ["8549_RestoreManaAndEnergyShieldOnFocus"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "explicit", + }, + }, + ["8603_ChanceToShockAttackersOnBlock"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + }, + ["8610_ShockYourselfOnFocusCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["8611_ShockNearbyEnemiesOnFocus"] = { + ["Ring"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["8611_ShockNearbyEnemiesOnFocusCDR"] = { + ["Ring"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["8641_BrandAttachmentRange"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + }, + }, + ["8656_ManaCostTotalChannelled"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have # to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["8657_ManaCostBaseChannelled"] = { + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1178188780", + ["text"] = "Channelling Skills Cost # Mana", + ["type"] = "explicit", + }, + }, + ["8658_IncreasedManaAndCostNew"] = { + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have # to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["8658_ManaCostTotalNonChannelled"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have # to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["8659_IncreasedManaAndBaseCost"] = { + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost # Mana", + ["type"] = "explicit", + }, + }, + ["8659_ManaCostBaseNonChannelled"] = { + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost # Mana", + ["type"] = "explicit", + }, + }, + ["8661_SkillsCostNoManaWhileFocusedCDR"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "explicit", + }, + }, + ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 0.5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["8716_SpellBlockIfBlockedSpellRecently"] = { + ["Shield"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4263513561", + ["text"] = "#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", + ["type"] = "explicit", + }, + }, + ["8719_SpellsDoubleDamageChance"] = { + ["1HMace"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["8720_SpellsAdditionalUnleashSealMaven"] = { + ["Helmet"] = { + ["max"] = 75, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2897207025", + ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["8728_SpellDamageDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["8733_SpellDamagePer10Strength"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "explicit", + }, + }, + ["8734_SpellDamagePer16Dexterity"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "explicit", + }, + }, + ["8735_SpellDamagePer16Intelligence"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["8736_SpellDamagePer16Strength"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "explicit", + }, + }, + ["8765_SpellsHinderOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["8797_StatusAilmentsYouInflictDurationWhileFocused"] = { + ["Helmet"] = { + ["max"] = 90, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "explicit", + }, + }, + ["8829_GlobalStrengthGemLevel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339012908", + ["text"] = "# to Level of all Strength Skill Gems", + ["type"] = "explicit", + }, + }, + ["8886_AddedFireBurningEnemies"] = { + ["Belt"] = { + ["max"] = 47, + ["min"] = 31.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + }, + ["8886_FireResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + }, + ["8911_TailwindOnCriticalStrikeMaven"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2172944497", + ["text"] = "#% increased Effect of Tailwind on you", + ["type"] = "explicit", + }, + }, + ["8913_TailwindOnCriticalStrike"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8913_TailwindOnCriticalStrikeMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["8919_WarcryTauntedEnemiesTakeIncreasedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["type"] = "explicit", + }, + }, + ["8962_TrapAndMineThrowSpeed"] = { + ["Belt"] = { + ["max"] = 21, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["8968_TravelSkillsCannotBeExerted"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2174134106", + ["text"] = "Warcries cannot Exert Travel Skills", + ["type"] = "explicit", + }, + }, + ["8995_BurningGroundEffectEffectiveness"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "explicit", + }, + }, + ["8997_ChilledGroundEffectEffectivenessMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_937372143", + ["text"] = "Unaffected by Chill", + ["type"] = "explicit", + }, + }, + ["9000_ChilledGroundEffectEffectiveness"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "explicit", + }, + }, + ["9005_DesecratedGroundEffectEffectiveness"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4004298002", + ["text"] = "Unaffected by Desecrated Ground", + ["type"] = "explicit", + }, + }, + ["9011_BurningGroundEffectEffectivenessMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2635869389", + ["text"] = "Unaffected by Ignite", + ["type"] = "explicit", + }, + }, + ["9015_ShockedGroundEffectEffectivenessMaven"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1473289174", + ["text"] = "Unaffected by Shock", + ["type"] = "explicit", + }, + }, + ["9019_ShockedGroundEffectEffectiveness"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "explicit", + }, + }, + ["9037_SupportedByItemRarityUnique"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_121185030", + ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", + ["type"] = "explicit", + }, + }, + ["9050_VaalSoulCost"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_678245679", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["type"] = "explicit", + }, + }, + ["9090_WarcryAreaOfEffectMaven"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["9090_WarcryEffect"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["9097_WarcryAreaOfEffect"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["9097_WarcryAreaOfEffectMaven"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["9142_WrathReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9143_WrathReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9190_ConsecratedGroundStationaryMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4113372195", + ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", + ["type"] = "explicit", + }, + }, + ["919_BlockPercent"] = { + ["Boots"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["919_BlockPercentMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["9211_SpellsAdditionalUnleashSeal"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have # to maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["9211_SpellsAdditionalUnleashSealMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have # to maximum number of Seals", + ["type"] = "explicit", + }, + }, + ["9212_ZealotryAuraEffect"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["9213_ZealotryReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9214_ZealotryReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9217_ZeroChaosResistanceDelve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["type"] = "explicit", + }, + }, + ["9225_MinionLargerAggroRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "explicit", + }, + }, + ["922_SpellDamageSuppressed"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent #% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + }, + ["9232_Acrobatics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "explicit", + }, + }, + ["9233_PerfectAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "explicit", + }, + }, + ["9234_AncestralBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + }, + ["9235_AvatarOfFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + }, + ["9237_BloodMagic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + }, + ["9238_CallToArms"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "explicit", + }, + }, + ["923_ChanceToDodgeAndSpellDodge"] = { + ["Boots"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["923_ChanceToSuppressSpellsMavenOld"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["923_ChanceToSuppressSpellsOld"] = { + ["Chest"] = { + ["max"] = 21, + ["min"] = 18, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["9242_CrimsonDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "explicit", + }, + }, + ["9244_DivineShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "explicit", + }, + }, + ["9245_EldritchBattery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + }, + ["9246_ElementalEquilibrium"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + }, + ["9247_ElementalOverload"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "explicit", + }, + }, + ["924_ChanceToSuppressSpells"] = { + ["Boots"] = { + ["max"] = 22, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 22, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 22, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 22, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["9251_GhostDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "explicit", + }, + }, + ["9252_KeystoneGhostReaver"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "explicit", + }, + }, + ["9254_HexMaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "explicit", + }, + }, + ["9256_Impaler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "explicit", + }, + }, + ["9258_LetheShade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "explicit", + }, + }, + ["9259_Magebane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "explicit", + }, + }, + ["925_DualWieldingSpellBlockForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_138741818", + ["text"] = "#% Chance to Block Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["9261_MinionInstability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "explicit", + }, + }, + ["9262_TheAgnostic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "explicit", + }, + }, + ["9263_PainAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + }, + ["9264_PointBlank"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "explicit", + }, + }, + ["9269_Runebinder"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "explicit", + }, + }, + ["926_SpellBlockPercentageOnLowLife"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2253286128", + ["text"] = "#% Chance to Block Spell Damage while on Low Life", + ["type"] = "explicit", + }, + }, + ["9273_Solipsism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "explicit", + }, + }, + ["9275_IronGrip"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + }, + ["9276_SupremeEgo"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "explicit", + }, + }, + ["9278_VaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + }, + ["9279_VersatileCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "explicit", + }, + }, + ["9283_ResoluteTechnique"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + }, + ["9284_IronWill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + }, + ["929_StaffSpellBlockForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2120297997", + ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["930_BlockingBlocksSpellsUber"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["930_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["930_PowerChargeOnBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["930_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["932_BlockStaffForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["933_BlockingBlocksSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["933_BlockingBlocksSpellsUber"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["938_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["938_SpellBlockPercentage"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["938_SpellBlockPercentageMaven"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["939_BlockDualWieldingForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["939_BlockWhileDualWielding"] = { + ["1HAxe"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["953_AllAttributes"] = { + ["1HAxe"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + }, + ["953_AllAttributesForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + }, + ["954_Strength"] = { + ["1HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + }, + ["954_StrengthAndAvoidIgnite"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + }, + ["954_StrengthAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + }, + ["954_StrengthForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + }, + ["955_Dexterity"] = { + ["1HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 13, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + }, + ["955_DexterityAndAvoidFreeze"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + }, + ["955_DexterityAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + }, + ["955_DexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + }, + ["956_Intelligence"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + }, + ["956_IntelligenceAndAvoidShock"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + }, + ["956_IntelligenceAndLocalItemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + }, + ["956_IntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + }, + ["957_LocalAccuracyRatingStrengthDexterity"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["957_StrengthAndDexterity"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["957_StrengthDexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["958_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["958_StrengthAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["958_StrengthIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["959_DexterityAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["959_DexterityIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["959_LocalAttackSpeedDexterityIntelligence"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["960_PercentageAllAttributes"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + }, + ["961_PercentageStrength"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["961_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["962_PercentageDexterity"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["962_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["963_PercentageIntelligence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["963_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["968_AllDamage"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, + ["968_DamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, + ["970_TotemDamageAttackSupported"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["970_TotemDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["970_TotemDamageSpellSupported"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["971_TrapDamageCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["971_TrapDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["971_TrapDamageMineSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["971_TrapDamageOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HMace"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HWeapon"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HMace"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HWeapon"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Bow"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["971_TrapDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["973_MineDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["973_MineDamageOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HMace"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["1HWeapon"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HMace"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["2HWeapon"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Bow"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["973_MineDamageSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["973_MineDamageTrapSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["975_AttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["983_DamageWhileHoldingAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["987_DamageOverTimeForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, + ["987_DegenerationDamage"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, + ["988_PhysicalDamageOverTimePrefix"] = { + ["1HAxe"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "explicit", + }, + }, + ["991_ChaosDamageOverTimePrefix"] = { + ["1HSword"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "explicit", + }, + }, + }, + ["Implicit"] = { + ["implicit.stat_1002362373"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1017730114"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1017730114", + ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1050105434"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + ["subType"] = "Evasion/Energy Shield", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1054322244"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1069618951"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1069618951", + ["text"] = "Right ring slot: Minions take #% increased Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1124980805"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1124980805", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["type"] = "implicit", + }, + }, + ["implicit.stat_114734841"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1172810729"] = { + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1181501418"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1189760108"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1189760108", + ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1263158408"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1296614065"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1310194496"] = { + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["Belt"] = { + ["max"] = 24, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1313503107"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1313503107", + ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1379411836"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1389153006"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1423639565"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1423749435"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1423749435", + ["text"] = "#% to Damage over Time Multiplier for Bleeding", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1431238626"] = { + ["1HAxe"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HMace"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HSword"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HMace"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HSword"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Claw"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Dagger"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1431238626", + ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1434716233"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1443060084"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1504091975"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1504091975", + ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1504905117"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1504905117", + ["text"] = "Warcry Skills have # seconds to Cooldown", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1519615863"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1523888729"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1523888729", + ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1535626285"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1569101201"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1573130764"] = { + ["Quiver"] = { + ["max"] = 21, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1581907402"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1581907402", + ["text"] = "#% increased Explicit Modifier magnitudes", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1589917703"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Armour/Energy Shield", + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Armour/Energy Shield", + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Armour/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Armour/Energy Shield", + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1633778432"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1633778432", + ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1652515349"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Talisman", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1662717006"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1671376347"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1754445556"] = { + ["Quiver"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1774370437"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1774370437", + ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1782086450"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1795443614"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1795443614", + ["text"] = "Has Elder, Shaper and all Conqueror Influences", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1826802197"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1915414884"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1915414884", + ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2005503156"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2005503156", + ["text"] = "Taunts nearby Enemies on use", + ["type"] = "implicit", + }, + }, + ["implicit.stat_202275580"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_202275580", + ["text"] = "Properties are doubled while in a Breach", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2039822488"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2067062068"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2091591880"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2101383955"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2120297997"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2120297997", + ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2146730404"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2146730404", + ["text"] = "Creates Consecrated Ground on Use", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2154246560"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 25, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2162876159"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["Chest"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2170876738"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2170876738", + ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2192875806"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2192875806", + ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2231156303"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2239667237"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2239667237", + ["text"] = "Right ring slot: #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2250533757"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Helmet"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Shield"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2300185227"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2316658489"] = { + ["Belt"] = { + ["max"] = 320, + ["min"] = 260, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2316658489", + ["text"] = "# to Armour and Evasion Rating", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2375316951"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2387423236"] = { + ["Helmet"] = { + ["max"] = 106.5, + ["min"] = 4, + ["subType"] = "Evasion/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2451856207"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2451856207", + ["text"] = "Restores Ward on use", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2457848738"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2457848738", + ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2483795307"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2511217560"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2517001139"] = { + ["1HAxe"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Dagger"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2522672898"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2530372417"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_261342933"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_261342933", + ["text"] = "Secrets of Suffering", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2622251413"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "implicit", + }, + }, + ["implicit.stat_264042990"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_264042990", + ["text"] = "All Damage from Hits with This Weapon can Poison", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2672805335"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2748665614"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2763429652"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2797971005"] = { + ["Quiver"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_280731498"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 8, + ["min"] = 5, + ["subType"] = "Talisman", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2843214518"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2885144362"] = { + ["1HAxe"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 43.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2891184298"] = { + ["1HAxe"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2901986750"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2905515354"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2905515354", + ["text"] = "You take #% of Damage from Blocked Hits", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2915988346"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2923486259"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 13, + ["subType"] = "Evasion/Energy Shield", + }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2924279089"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2924279089", + ["text"] = "#% increased Attack Damage with Off Hand", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2974417149"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["Boots"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3032590688"] = { + ["Quiver"] = { + ["max"] = 21, + ["min"] = 2.5, + }, + ["Ring"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3141070085"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3143208761"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 12, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3182714256"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_321077055"] = { + ["1HAxe"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HMace"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HSword"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Dagger"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3261801346"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + }, + ["implicit.stat_328541901"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3291658075"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3299347043"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["Boots"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3311869501"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3311869501", + ["text"] = "Creates Chilled Ground on Use", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3319896421"] = { + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", + }, + }, + ["implicit.stat_335507772"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_335507772", + ["text"] = "# to maximum Fortification", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3372524247"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3374165039"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3375859421"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3375859421", + ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3423006863"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3441501978"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3489782002"] = { + ["1HAxe"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HMace"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HSword"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HWeapon"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HAxe"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HMace"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HSword"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HWeapon"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Belt"] = { + ["max"] = 80, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Claw"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Dagger"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Wand"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3531280422"] = { + ["1HAxe"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HMace"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HSword"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HWeapon"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HAxe"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HMace"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HSword"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Bow"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Claw"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Staff"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3556824919"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, + ["subType"] = "Talisman", + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3574189159"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3593843976"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3680664274"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, + ["subType"] = "Evasion/Energy Shield", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_369183568"] = { + ["Boots"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Shield"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369183568", + ["text"] = "#% increased Block Recovery", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3753703249"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3759663284"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3771516363"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["implicit.stat_387439868"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3962278098"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3964634628"] = { + ["1HAxe"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 47.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4067062424"] = { + ["Quiver"] = { + ["max"] = 2.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4077843608"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Talisman", + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4080418644"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4138979329"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4138979329", + ["text"] = "# to Maximum Power Charges and Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4139229725"] = { + ["Boots"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Chest"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Helmet"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139229725", + ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4180346416"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4180346416", + ["text"] = "# to Level of all Vaal Skill Gems", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4220027924"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4251717817"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4277795662"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Evasion/Energy Shield", + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4279053153"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4279053153", + ["text"] = "Right ring slot: #% increased Effect of Curses on you", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4282426229"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4282426229", + ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", + ["type"] = "implicit", + }, + }, + ["implicit.stat_450178102"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_450178102", + ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_532463031"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_532463031", + ["text"] = "Implicit Modifiers Cannot Be Changed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_538730182"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_538730182", + ["text"] = "Creates a Smoke Cloud on Use", + ["type"] = "implicit", + }, + }, + ["implicit.stat_538848803"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "implicit", + }, + }, + ["implicit.stat_563547620"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_563547620", + ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", + ["type"] = "implicit", + }, + }, + ["implicit.stat_587431675"] = { + ["1HAxe"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["1HMace"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["1HSword"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HMace"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HSword"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Talisman", + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Claw"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Dagger"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["implicit.stat_589489789"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_589489789", + ["text"] = "Can't use Flask in Fifth Slot", + ["type"] = "implicit", + }, + }, + ["implicit.stat_624954515"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["implicit.stat_640052854"] = { + ["1HAxe"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_640052854", + ["text"] = "Grants # Mana per Enemy Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_681332047"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_718638445"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "-", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_734614379"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["implicit.stat_736967255"] = { + ["Amulet"] = { + ["max"] = 31, + ["min"] = 19, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_744858137"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_744858137", + ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_789117908"] = { + ["Amulet"] = { + ["max"] = 56, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["implicit.stat_800141891"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "implicit", + }, + }, + ["implicit.stat_803737631"] = { + ["1HAxe"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HMace"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HSword"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HAxe"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HMace"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HSword"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HWeapon"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Bow"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Claw"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Staff"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["implicit.stat_821021828"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_836936635"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 1.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, + ["implicit.stat_846313030"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_846313030", + ["text"] = "You are Crushed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_884586851"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + }, + ["implicit.stat_967627487"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, + ["implicit.stat_983749596"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, + }, + ["PassiveNode"] = { + ["6663_AfflictionNotableAdrenaline"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4022743870", + ["text"] = "1 Added Passive Skill is Adrenaline", + ["type"] = "explicit", + }, + }, + ["6664_AfflictionNotableAdvanceGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1625939562", + ["text"] = "1 Added Passive Skill is Advance Guard", + ["type"] = "explicit", + }, + }, + ["6665_AfflictionNotableAerialist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848677307", + ["text"] = "1 Added Passive Skill is Aerialist", + ["type"] = "explicit", + }, + }, + ["6666_AfflictionNotableAerodynamics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4120556534", + ["text"] = "1 Added Passive Skill is Aerodynamics", + ["type"] = "explicit", + }, + }, + ["6667_AfflictionNotableAgentofDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122491961", + ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["type"] = "explicit", + }, + }, + ["6668_AfflictionNotableAggressiveDefence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154008618", + ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["type"] = "explicit", + }, + }, + ["6669_AfflictionNotableAlchemist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912949210", + ["text"] = "1 Added Passive Skill is Alchemist", + ["type"] = "explicit", + }, + }, + ["6670_AfflictionNotableAncestralEcho"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_957679205", + ["text"] = "1 Added Passive Skill is Ancestral Echo", + ["type"] = "explicit", + }, + }, + ["6671_AfflictionNotableAncestralGuidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387747995", + ["text"] = "1 Added Passive Skill is Ancestral Guidance", + ["type"] = "explicit", + }, + }, + ["6672_AfflictionNotableAncestralInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_77045106", + ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["type"] = "explicit", + }, + }, + ["6673_AfflictionNotableAncestralMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3998316", + ["text"] = "1 Added Passive Skill is Ancestral Might", + ["type"] = "explicit", + }, + }, + ["6674_AfflictionNotableAncestralPreservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3746703776", + ["text"] = "1 Added Passive Skill is Ancestral Preservation", + ["type"] = "explicit", + }, + }, + ["6675_AfflictionNotableAncestralReach"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3294884567", + ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["type"] = "explicit", + }, + }, + ["6676_AfflictionNotableAntifreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2622946553", + ["text"] = "1 Added Passive Skill is Antifreeze", + ["type"] = "explicit", + }, + }, + ["6677_AfflictionNotableAntivenom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774369953", + ["text"] = "1 Added Passive Skill is Antivenom", + ["type"] = "explicit", + }, + }, + ["6678_AfflictionNotableArcaneAdept"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_393565679", + ["text"] = "1 Added Passive Skill is Arcane Adept", + ["type"] = "explicit", + }, + }, + ["6679_AfflictionNotableArcaneHeroism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3901992019", + ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["type"] = "explicit", + }, + }, + ["6680_AfflictionNotableArcanePyrotechnics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043503530", + ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["type"] = "explicit", + }, + }, + ["6681_AfflictionNotableArcingShot"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3212859169", + ["text"] = "1 Added Passive Skill is Arcing Shot", + ["type"] = "explicit", + }, + }, + ["6682_AfflictionNotableAssertDominance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222265138", + ["text"] = "1 Added Passive Skill is Assert Dominance", + ["type"] = "explicit", + }, + }, + ["6683_AfflictionNotableAstonishingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2428334013", + ["text"] = "1 Added Passive Skill is Astonishing Affliction", + ["type"] = "explicit", + }, + }, + ["6684_AfflictionNotableBasicsofPain"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3084359503", + ["text"] = "1 Added Passive Skill is Basics of Pain", + ["type"] = "explicit", + }, + }, + ["6685_AfflictionNotableBattleHardened"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4188581520", + ["text"] = "1 Added Passive Skill is Battle-Hardened", + ["type"] = "explicit", + }, + }, + ["6686_AfflictionNotableBattlefieldDominator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1499057234", + ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["type"] = "explicit", + }, + }, + ["6687_AfflictionNotableBlacksmith"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1127706436", + ["text"] = "1 Added Passive Skill is Blacksmith", + ["type"] = "explicit", + }, + }, + ["6688_AfflictionNotableBlanketedSnow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085167979", + ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["type"] = "explicit", + }, + }, + ["6689_AfflictionNotableBlastFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693808153", + ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["type"] = "explicit", + }, + }, + ["6690_AfflictionNotableBlessed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_775689239", + ["text"] = "1 Added Passive Skill is Blessed", + ["type"] = "explicit", + }, + }, + ["6691_AfflictionNotableBlessedRebirth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1424794574", + ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["type"] = "explicit", + }, + }, + ["6692_AfflictionNotableBloodArtist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2284771334", + ["text"] = "1 Added Passive Skill is Blood Artist", + ["type"] = "explicit", + }, + }, + ["6693_AfflictionNotableBloodscent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3967765261", + ["text"] = "1 Added Passive Skill is Bloodscent", + ["type"] = "explicit", + }, + }, + ["6694_AfflictionNotableBlowback"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1612414696", + ["text"] = "1 Added Passive Skill is Blowback", + ["type"] = "explicit", + }, + }, + ["6695_AfflictionNotableBodyguards"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791125124", + ["text"] = "1 Added Passive Skill is Bodyguards", + ["type"] = "explicit", + }, + }, + ["6696_AfflictionNotableBornofChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2449392400", + ["text"] = "1 Added Passive Skill is Born of Chaos", + ["type"] = "explicit", + }, + }, + ["6697_AfflictionNotableBrandLoyalty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3198006994", + ["text"] = "1 Added Passive Skill is Brand Loyalty", + ["type"] = "explicit", + }, + }, + ["6698_AfflictionNotableBrewedforPotency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3250272113", + ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["type"] = "explicit", + }, + }, + ["6699_AfflictionNotableBroadside"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2205982416", + ["text"] = "1 Added Passive Skill is Broadside", + ["type"] = "explicit", + }, + }, + ["6700_AfflictionNotableBrushwithDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2900833792", + ["text"] = "1 Added Passive Skill is Brush with Death", + ["type"] = "explicit", + }, + }, + ["6701_AfflictionNotableBrutalInfamy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2068574831", + ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["type"] = "explicit", + }, + }, + ["6702_AfflictionNotableBurdenProjection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008682345", + ["text"] = "1 Added Passive Skill is Burden Projection", + ["type"] = "explicit", + }, + }, + ["6703_AfflictionNotableBurningBright"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4199056048", + ["text"] = "1 Added Passive Skill is Burning Bright", + ["type"] = "explicit", + }, + }, + ["6704_AfflictionNotableCalamitous"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3359207393", + ["text"] = "1 Added Passive Skill is Calamitous", + ["type"] = "explicit", + }, + }, + ["6705_AfflictionNotableCalltotheSlaughter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3317068522", + ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["type"] = "explicit", + }, + }, + ["6706_AfflictionNotableCapacitor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4025536654", + ["text"] = "1 Added Passive Skill is Capacitor", + ["type"] = "explicit", + }, + }, + ["6707_AfflictionNotableCarefulHandling"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_456502758", + ["text"] = "1 Added Passive Skill is Careful Handling", + ["type"] = "explicit", + }, + }, + ["6708_AfflictionNotableChillingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2834490860", + ["text"] = "1 Added Passive Skill is Chilling Presence", + ["type"] = "explicit", + }, + }, + ["6709_AfflictionNotableChipAway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_968069586", + ["text"] = "1 Added Passive Skill is Chip Away", + ["type"] = "explicit", + }, + }, + ["6710_AfflictionNotableCirclingOblivion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2129392647", + ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["type"] = "explicit", + }, + }, + ["6711_AfflictionNotableClarityofPurpose"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684087686", + ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["type"] = "explicit", + }, + }, + ["6712_AfflictionNotableColdBloodedKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836566759", + ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", + ["type"] = "explicit", + }, + }, + ["6713_AfflictionNotableColdConduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274505521", + ["text"] = "1 Added Passive Skill is Cold Conduction", + ["type"] = "explicit", + }, + }, + ["6714_AfflictionNotableColdtotheCore"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_744783843", + ["text"] = "1 Added Passive Skill is Cold to the Core", + ["type"] = "explicit", + }, + }, + ["6715_AfflictionNotableCombatRhythm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122505794", + ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["type"] = "explicit", + }, + }, + ["6716_AfflictionNotableCompoundInjury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4018305528", + ["text"] = "1 Added Passive Skill is Compound Injury", + ["type"] = "explicit", + }, + }, + ["6717_AfflictionNotableConfidentCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3930242735", + ["text"] = "1 Added Passive Skill is Confident Combatant", + ["type"] = "explicit", + }, + }, + ["6718_AfflictionNotableConjuredWall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4105031548", + ["text"] = "1 Added Passive Skill is Conjured Wall", + ["type"] = "explicit", + }, + }, + ["6719_AfflictionNotableConservationofEnergy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2083777017", + ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["type"] = "explicit", + }, + }, + ["6720_AfflictionNotableCookedAlive"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2938895712", + ["text"] = "1 Added Passive Skill is Cooked Alive", + ["type"] = "explicit", + }, + }, + ["6721_AfflictionNotableCorrosiveElements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777139212", + ["text"] = "1 Added Passive Skill is Corrosive Elements", + ["type"] = "explicit", + }, + }, + ["6722_AfflictionNotableCremator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1153801980", + ["text"] = "1 Added Passive Skill is Cremator", + ["type"] = "explicit", + }, + }, + ["6723_AfflictionNotableCryWolf"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1821748178", + ["text"] = "1 Added Passive Skill is Cry Wolf", + ["type"] = "explicit", + }, + }, + ["6724_AfflictionNotableCultLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2026112251", + ["text"] = "1 Added Passive Skill is Cult-Leader", + ["type"] = "explicit", + }, + }, + ["6725_AfflictionNotableDaringIdeas"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534405517", + ["text"] = "1 Added Passive Skill is Daring Ideas", + ["type"] = "explicit", + }, + }, + ["6726_AfflictionNotableDarkDiscourse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462115791", + ["text"] = "1 Added Passive Skill is Doedre's Spite", + ["type"] = "explicit", + }, + }, + ["6727_AfflictionNotableDarkIdeation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1603621602", + ["text"] = "1 Added Passive Skill is Dark Ideation", + ["type"] = "explicit", + }, + }, + ["6728_AfflictionNotableDarkMessenger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3784610129", + ["text"] = "1 Added Passive Skill is Dark Messenger", + ["type"] = "explicit", + }, + }, + ["6729_AfflictionNotableDartingMovements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_846491278", + ["text"] = "1 Added Passive Skill is Darting Movements", + ["type"] = "explicit", + }, + }, + ["6730_AfflictionNotableDeadlyRepartee"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1013470938", + ["text"] = "1 Added Passive Skill is Deadly Repartee", + ["type"] = "explicit", + }, + }, + ["6731_AfflictionNotableDeepChill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1703766309", + ["text"] = "1 Added Passive Skill is Deep Chill", + ["type"] = "explicit", + }, + }, + ["6732_AfflictionNotableDeepCuts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_410939404", + ["text"] = "1 Added Passive Skill is Deep Cuts", + ["type"] = "explicit", + }, + }, + ["6733_AfflictionNotableMiseryEverlasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3832665876", + ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["type"] = "explicit", + }, + }, + ["6734_AfflictionNotableUncompromising"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_382360671", + ["text"] = "1 Added Passive Skill is Uncompromising", + ["type"] = "explicit", + }, + }, + ["6735_AfflictionNotableDevastator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3711553948", + ["text"] = "1 Added Passive Skill is Devastator", + ["type"] = "explicit", + }, + }, + ["6736_AfflictionNotableDisciples"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3177526694", + ["text"] = "1 Added Passive Skill is Disciples", + ["type"] = "explicit", + }, + }, + ["6737_AfflictionNotableSelfControl"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3025453294", + ["text"] = "1 Added Passive Skill is Self-Control", + ["type"] = "explicit", + }, + }, + ["6738_AfflictionNotableDiseaseVector"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_183591019", + ["text"] = "1 Added Passive Skill is Disease Vector", + ["type"] = "explicit", + }, + }, + ["6739_AfflictionNotableDisorientingDisplay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206911230", + ["text"] = "1 Added Passive Skill is Disorienting Display", + ["type"] = "explicit", + }, + }, + ["6740_AfflictionNotableDisorientingWounds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3351136461", + ["text"] = "1 Added Passive Skill is Disorienting Wounds", + ["type"] = "explicit", + }, + }, + ["6741_AfflictionNotableDistilledPerfection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3652138990", + ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["type"] = "explicit", + }, + }, + ["6742_AfflictionNotableDoedresApathy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1381945089", + ["text"] = "1 Added Passive Skill is Doedre's Apathy", + ["type"] = "explicit", + }, + }, + ["6743_AfflictionNotableDoedresGluttony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2695848124", + ["text"] = "1 Added Passive Skill is Doedre's Gluttony", + ["type"] = "explicit", + }, + }, + ["6744_AfflictionNotableDoryanisLesson"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228455793", + ["text"] = "1 Added Passive Skill is Doryani's Lesson", + ["type"] = "explicit", + }, + }, + ["6745_AfflictionNotableDragonHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038955006", + ["text"] = "1 Added Passive Skill is Dragon Hunter", + ["type"] = "explicit", + }, + }, + ["6746_AfflictionNotableDreadMarch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3087667389", + ["text"] = "1 Added Passive Skill is Dread March", + ["type"] = "explicit", + }, + }, + ["6747_AfflictionNotableDrivetheDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1911162866", + ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["type"] = "explicit", + }, + }, + ["6748_AfflictionNotableEldritchInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3737604164", + ["text"] = "1 Added Passive Skill is Eldritch Inspiration", + ["type"] = "explicit", + }, + }, + ["6749_AfflictionNotableElegantForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289714529", + ["text"] = "1 Added Passive Skill is Elegant Form", + ["type"] = "explicit", + }, + }, + ["6750_AfflictionNotableEmpoweredEnvoy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2032453153", + ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["type"] = "explicit", + }, + }, + ["6751_AfflictionNotableEndbringer"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2150878631", + ["text"] = "1 Added Passive Skill is Endbringer", + ["type"] = "explicit", + }, + }, + ["6752_AfflictionNotableEnduringComposure"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043284086", + ["text"] = "1 Added Passive Skill is Enduring Composure", + ["type"] = "explicit", + }, + }, + ["6753_AfflictionNotableEnduringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2522970386", + ["text"] = "1 Added Passive Skill is Enduring Focus", + ["type"] = "explicit", + }, + }, + ["6754_AfflictionNotableEnduringWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252724319", + ["text"] = "1 Added Passive Skill is Enduring Ward", + ["type"] = "explicit", + }, + }, + ["6755_AfflictionNotableEnergyFromNaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195518432", + ["text"] = "1 Added Passive Skill is Energy From Naught", + ["type"] = "explicit", + }, + }, + ["6756_AfflictionNotableEssenceRush"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1096136223", + ["text"] = "1 Added Passive Skill is Essence Rush", + ["type"] = "explicit", + }, + }, + ["6757_AfflictionNotableEternalSuffering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144634814", + ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["type"] = "explicit", + }, + }, + ["6758_AfflictionNotableEvilEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["6759_AfflictionNotableExpansiveMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394918362", + ["text"] = "1 Added Passive Skill is Expansive Might", + ["type"] = "explicit", + }, + }, + ["6760_AfflictionNotableExpendability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2020075345", + ["text"] = "1 Added Passive Skill is Expendability", + ["type"] = "explicit", + }, + }, + ["6761_AfflictionNotableExpertSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2084371547", + ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["type"] = "explicit", + }, + }, + ["6762_AfflictionNotableExplosiveForce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2017927451", + ["text"] = "1 Added Passive Skill is Explosive Force", + ["type"] = "explicit", + }, + }, + ["6763_AfflictionNotableExposureTherapy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_131358113", + ["text"] = "1 Added Passive Skill is Exposure Therapy", + ["type"] = "explicit", + }, + }, + ["6764_AfflictionNotableEyeoftheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3818661553", + ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["type"] = "explicit", + }, + }, + ["6765_AfflictionNotableEyetoEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_392942015", + ["text"] = "1 Added Passive Skill is Eye to Eye", + ["type"] = "explicit", + }, + }, + ["6766_AfflictionNotableFanofBlades"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2484082827", + ["text"] = "1 Added Passive Skill is Fan of Blades", + ["type"] = "explicit", + }, + }, + ["6767_AfflictionNotableFantheFlames"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2918755450", + ["text"] = "1 Added Passive Skill is Fan the Flames", + ["type"] = "explicit", + }, + }, + ["6768_AfflictionNotableFasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_37078857", + ["text"] = "1 Added Passive Skill is Fasting", + ["type"] = "explicit", + }, + }, + ["6769_AfflictionNotableFearsomeWarrior"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3134222965", + ["text"] = "1 Added Passive Skill is Fearsome Warrior", + ["type"] = "explicit", + }, + }, + ["6770_AfflictionNotableFeastofFlesh"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2396755365", + ["text"] = "1 Added Passive Skill is Feast of Flesh", + ["type"] = "explicit", + }, + }, + ["6771_AfflictionNotableFeastingFiends"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383245807", + ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["type"] = "explicit", + }, + }, + ["6772_AfflictionNotableFeedtheFury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3944525413", + ["text"] = "1 Added Passive Skill is Feed the Fury", + ["type"] = "explicit", + }, + }, + ["6773_AfflictionNotableFettle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1353571444", + ["text"] = "1 Added Passive Skill is Fettle", + ["type"] = "explicit", + }, + }, + ["6774_AfflictionNotableFireAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3188756614", + ["text"] = "1 Added Passive Skill is Fire Attunement", + ["type"] = "explicit", + }, + }, + ["6775_AfflictionNotableFirstAmongEquals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1134501245", + ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["type"] = "explicit", + }, + }, + ["6776_AfflictionNotableLordofDrought"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2055715585", + ["text"] = "1 Added Passive Skill is Lord of Drought", + ["type"] = "explicit", + }, + }, + ["6777_AfflictionNotableFlexibleSentry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_982290947", + ["text"] = "1 Added Passive Skill is Flexible Sentry", + ["type"] = "explicit", + }, + }, + ["6778_AfflictionNotableFlowofLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350430215", + ["text"] = "1 Added Passive Skill is Flow of Life", + ["type"] = "explicit", + }, + }, + ["6779_AfflictionNotableFollowThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984980429", + ["text"] = "1 Added Passive Skill is Follow-Through", + ["type"] = "explicit", + }, + }, + ["6780_AfflictionNotableForceMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1904581068", + ["text"] = "1 Added Passive Skill is Force Multiplier", + ["type"] = "explicit", + }, + }, + ["6781_AfflictionNotableBlizzardCaller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3758712376", + ["text"] = "1 Added Passive Skill is Blizzard Caller", + ["type"] = "explicit", + }, + }, + ["6782_AfflictionNotableFueltheFight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3599340381", + ["text"] = "1 Added Passive Skill is Fuel the Fight", + ["type"] = "explicit", + }, + }, + ["6783_AfflictionNotableFuriousAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3415827027", + ["text"] = "1 Added Passive Skill is Furious Assault", + ["type"] = "explicit", + }, + }, + ["6784_AfflictionNotableGenius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763732093", + ["text"] = "1 Added Passive Skill is Genius", + ["type"] = "explicit", + }, + }, + ["6785_AfflictionNotableGladiatorialCombat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1543731719", + ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["type"] = "explicit", + }, + }, + ["6786_AfflictionNotableGladiatorsFortitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1591995797", + ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["type"] = "explicit", + }, + }, + ["6787_AfflictionNotableGracefulExecution"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1903496649", + ["text"] = "1 Added Passive Skill is Graceful Execution", + ["type"] = "explicit", + }, + }, + ["6788_AfflictionNotableSublimeForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2251304016", + ["text"] = "1 Added Passive Skill is Sublime Form", + ["type"] = "explicit", + }, + }, + ["6789_AfflictionNotableGrandDesign"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350900742", + ["text"] = "1 Added Passive Skill is Grand Design", + ["type"] = "explicit", + }, + }, + ["6790_AfflictionNotableGrimOath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194205899", + ["text"] = "1 Added Passive Skill is Grim Oath", + ["type"] = "explicit", + }, + }, + ["6791_AfflictionNotableGroundedCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309218394", + ["text"] = "1 Added Passive Skill is Introspection", + ["type"] = "explicit", + }, + }, + ["6792_AfflictionNotableGuerillaTactics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1882129725", + ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["type"] = "explicit", + }, + }, + ["6793_AfflictionNotableHaemorrhage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_72129119", + ["text"] = "1 Added Passive Skill is Haemorrhage", + ["type"] = "explicit", + }, + }, + ["6794_AfflictionNotableHauntingShout"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1080363357", + ["text"] = "1 Added Passive Skill is Haunting Shout", + ["type"] = "explicit", + }, + }, + ["6795_AfflictionNotableHeartofIron"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1483358825", + ["text"] = "1 Added Passive Skill is Heart of Iron", + ["type"] = "explicit", + }, + }, + ["6796_AfflictionNotableHeavyHitter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3640252904", + ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["type"] = "explicit", + }, + }, + ["6797_AfflictionNotableExploitWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_50129423", + ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["type"] = "explicit", + }, + }, + ["6798_AfflictionNotableHeraldry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3274270612", + ["text"] = "1 Added Passive Skill is Heraldry", + ["type"] = "explicit", + }, + }, + ["6799_AfflictionNotableHexBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2341828832", + ["text"] = "1 Added Passive Skill is Hex Breaker", + ["type"] = "explicit", + }, + }, + ["6800_AfflictionNotableHibernator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2294919888", + ["text"] = "1 Added Passive Skill is Hibernator", + ["type"] = "explicit", + }, + }, + ["6801_AfflictionNotableHitandRun"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2665170385", + ["text"] = "1 Added Passive Skill is Hit and Run", + ["type"] = "explicit", + }, + }, + ["6802_AfflictionNotableHolisticHealth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3667965781", + ["text"] = "1 Added Passive Skill is Holistic Health", + ["type"] = "explicit", + }, + }, + ["6803_AfflictionNotableHolyConquest"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3898572660", + ["text"] = "1 Added Passive Skill is Holy Conquest", + ["type"] = "explicit", + }, + }, + ["6804_AfflictionNotableHoundsMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_555800967", + ["text"] = "1 Added Passive Skill is Hound's Mark", + ["type"] = "explicit", + }, + }, + ["6805_AfflictionNotableHulkingCorpses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3467711950", + ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["type"] = "explicit", + }, + }, + ["6806_AfflictionNotableImprovisor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_810219447", + ["text"] = "1 Added Passive Skill is Improvisor", + ["type"] = "explicit", + }, + }, + ["6807_AfflictionNotableInsatiableKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904970959", + ["text"] = "1 Added Passive Skill is Insatiable Killer", + ["type"] = "explicit", + }, + }, + ["6808_AfflictionNotableInspiredOppression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872380586", + ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["type"] = "explicit", + }, + }, + ["6809_AfflictionNotableInsulated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_212648555", + ["text"] = "1 Added Passive Skill is Insulated", + ["type"] = "explicit", + }, + }, + ["6810_AfflictionNotableIntensity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2785835061", + ["text"] = "1 Added Passive Skill is Intensity", + ["type"] = "explicit", + }, + }, + ["6811_AfflictionNotableInvigoratingPortents"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262034536", + ["text"] = "1 Added Passive Skill is Invigorating Portents", + ["type"] = "explicit", + }, + }, + ["6812_AfflictionNotableIronBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3258653591", + ["text"] = "1 Added Passive Skill is Iron Breaker", + ["type"] = "explicit", + }, + }, + ["6813_AfflictionNotableLastingImpression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_426715778", + ["text"] = "1 Added Passive Skill is Lasting Impression", + ["type"] = "explicit", + }, + }, + ["6814_AfflictionNotableLeadByExample"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195406641", + ["text"] = "1 Added Passive Skill is Lead By Example", + ["type"] = "explicit", + }, + }, + ["6815_AfflictionNotableLifefromDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2337273077", + ["text"] = "1 Added Passive Skill is Life from Death", + ["type"] = "explicit", + }, + }, + ["6816_AfflictionNotableTempttheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_348883745", + ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["type"] = "explicit", + }, + }, + ["6817_AfflictionNotableLiquidInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1094635162", + ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["type"] = "explicit", + }, + }, + ["6818_AfflictionNotableLowTolerance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3989400244", + ["text"] = "1 Added Passive Skill is Low Tolerance", + ["type"] = "explicit", + }, + }, + ["6819_AfflictionNotableMageBane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684155617", + ["text"] = "1 Added Passive Skill is Mage Bane", + ["type"] = "explicit", + }, + }, + ["6820_AfflictionNotableMageHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2118664144", + ["text"] = "1 Added Passive Skill is Mage Hunter", + ["type"] = "explicit", + }, + }, + ["6821_AfflictionNotableMagnifier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2886441936", + ["text"] = "1 Added Passive Skill is Magnifier", + ["type"] = "explicit", + }, + }, + ["6822_AfflictionNotableMartialMastery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1015189426", + ["text"] = "1 Added Passive Skill is Martial Mastery", + ["type"] = "explicit", + }, + }, + ["6823_AfflictionNotableMartialMomentum"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2978494217", + ["text"] = "1 Added Passive Skill is Martial Momentum", + ["type"] = "explicit", + }, + }, + ["6824_AfflictionNotableMartialProwess"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1152182658", + ["text"] = "1 Added Passive Skill is Martial Prowess", + ["type"] = "explicit", + }, + }, + ["6825_AfflictionNotableMasterofCommand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257074218", + ["text"] = "1 Added Passive Skill is Master of Command", + ["type"] = "explicit", + }, + }, + ["6826_AfflictionNotableMasterofFear"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771217016", + ["text"] = "1 Added Passive Skill is Master of Fear", + ["type"] = "explicit", + }, + }, + ["6827_AfflictionNotableMasterofFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1462135249", + ["text"] = "1 Added Passive Skill is Master of Fire", + ["type"] = "explicit", + }, + }, + ["6828_AfflictionNotableMasterOfTheMaelstrom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_185592058", + ["text"] = "1 Added Passive Skill is Master of the Maelstrom", + ["type"] = "explicit", + }, + }, + ["6829_AfflictionNotableMastertheFundamentals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585232432", + ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["type"] = "explicit", + }, + }, + ["6830_AfflictionNotableMendersWellspring"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291434923", + ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["type"] = "explicit", + }, + }, + ["6831_AfflictionNotableMilitarism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154709486", + ["text"] = "1 Added Passive Skill is Militarism", + ["type"] = "explicit", + }, + }, + ["6832_AfflictionNotableMindfulness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2595115995", + ["text"] = "1 Added Passive Skill is Mindfulness", + ["type"] = "explicit", + }, + }, + ["6833_AfflictionNotableMobMentality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1048879642", + ["text"] = "1 Added Passive Skill is Mob Mentality", + ["type"] = "explicit", + }, + }, + ["6834_AfflictionNotableMoltenOnesMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3875792669", + ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["type"] = "explicit", + }, + }, + ["6835_AfflictionNotableMysticalWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2314111938", + ["text"] = "1 Added Passive Skill is Mystical Ward", + ["type"] = "explicit", + }, + }, + ["6836_AfflictionNotableNaturalVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_510654792", + ["text"] = "1 Added Passive Skill is Natural Vigour", + ["type"] = "explicit", + }, + }, + ["6837_AfflictionNotableNoWitnesses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722480396", + ["text"] = "1 Added Passive Skill is No Witnesses", + ["type"] = "explicit", + }, + }, + ["6838_AfflictionNotableNonFlammable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_731840035", + ["text"] = "1 Added Passive Skill is Non-Flammable", + ["type"] = "explicit", + }, + }, + ["6839_AfflictionNotableNumbingElixir"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1028754276", + ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["type"] = "explicit", + }, + }, + ["6840_AfflictionNotableOnewiththeShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1976069869", + ["text"] = "1 Added Passive Skill is One with the Shield", + ["type"] = "explicit", + }, + }, + ["6841_AfflictionNotableOpenness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_633943719", + ["text"] = "1 Added Passive Skill is Openness", + ["type"] = "explicit", + }, + }, + ["6842_AfflictionNotableOpportunisticFusilade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4281625943", + ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["type"] = "explicit", + }, + }, + ["6843_AfflictionNotableOverlord"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250169390", + ["text"] = "1 Added Passive Skill is Overlord", + ["type"] = "explicit", + }, + }, + ["6844_AfflictionNotableOvershock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3777170562", + ["text"] = "1 Added Passive Skill is Overshock", + ["type"] = "explicit", + }, + }, + ["6845_AfflictionNotableOverwhelmingMalice"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770408103", + ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["type"] = "explicit", + }, + }, + ["6846_AfflictionNotableParalysis"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272503233", + ["text"] = "1 Added Passive Skill is Paralysis", + ["type"] = "explicit", + }, + }, + ["6847_AfflictionNotablePeaceAmidstChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1734275536", + ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", + ["type"] = "explicit", + }, + }, + ["6848_AfflictionNotablePeakVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722821275", + ["text"] = "1 Added Passive Skill is Peak Vigour", + ["type"] = "explicit", + }, + }, + ["6849_AfflictionNotablePhlebotomist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3057154383", + ["text"] = "1 Added Passive Skill is Phlebotomist", + ["type"] = "explicit", + }, + }, + ["6850_AfflictionNotablePowerfulAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1005475168", + ["text"] = "1 Added Passive Skill is Powerful Assault", + ["type"] = "explicit", + }, + }, + ["6851_AfflictionNotablePowerfulWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_164032122", + ["text"] = "1 Added Passive Skill is Powerful Ward", + ["type"] = "explicit", + }, + }, + ["6852_AfflictionNotablePracticedCaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3435403756", + ["text"] = "1 Added Passive Skill is Practiced Caster", + ["type"] = "explicit", + }, + }, + ["6853_AfflictionNotablePreciseCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3860179422", + ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["type"] = "explicit", + }, + }, + ["6854_AfflictionNotablePreciseFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2913581789", + ["text"] = "1 Added Passive Skill is Precise Focus", + ["type"] = "explicit", + }, + }, + ["6855_AfflictionNotablePreciseRetaliation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2335364359", + ["text"] = "1 Added Passive Skill is Precise Retaliation", + ["type"] = "explicit", + }, + }, + ["6856_AfflictionNotablePressurePoints"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3391925584", + ["text"] = "1 Added Passive Skill is Pressure Points", + ["type"] = "explicit", + }, + }, + ["6857_AfflictionNotablePrimordialBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_622362787", + ["text"] = "1 Added Passive Skill is Primordial Bond", + ["type"] = "explicit", + }, + }, + ["6858_AfflictionNotablePrismaticCarapace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3492924480", + ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["type"] = "explicit", + }, + }, + ["6859_AfflictionNotablePrismaticDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1149662934", + ["text"] = "1 Added Passive Skill is Prismatic Dance", + ["type"] = "explicit", + }, + }, + ["6860_AfflictionNotablePrismaticHeart"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2342448236", + ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["type"] = "explicit", + }, + }, + ["6861_AfflictionNotableProdigiousDefense"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1705633890", + ["text"] = "1 Added Passive Skill is Prodigious Defence", + ["type"] = "explicit", + }, + }, + ["6862_AfflictionNotableProvocateur"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_814369372", + ["text"] = "1 Added Passive Skill is Provocateur", + ["type"] = "explicit", + }, + }, + ["6863_AfflictionNotablePureAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507409483", + ["text"] = "1 Added Passive Skill is Pure Agony", + ["type"] = "explicit", + }, + }, + ["6864_AfflictionNotablePureAptitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3509724289", + ["text"] = "1 Added Passive Skill is Pure Aptitude", + ["type"] = "explicit", + }, + }, + ["6865_AfflictionNotablePureCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3950683692", + ["text"] = "1 Added Passive Skill is Electric Presence", + ["type"] = "explicit", + }, + }, + ["6866_AfflictionNotablePureGuile"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1621496909", + ["text"] = "1 Added Passive Skill is Pure Guile", + ["type"] = "explicit", + }, + }, + ["6867_AfflictionNotablePureMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2372915005", + ["text"] = "1 Added Passive Skill is Pure Might", + ["type"] = "explicit", + }, + }, + ["6868_AfflictionNotablePurposefulHarbinger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_507505131", + ["text"] = "1 Added Passive Skill is Purposeful Harbinger", + ["type"] = "explicit", + }, + }, + ["6869_AfflictionNotableQuickandDeadly"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169345147", + ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["type"] = "explicit", + }, + }, + ["6870_AfflictionNotableQuickGetaway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1626818279", + ["text"] = "1 Added Passive Skill is Quick Getaway", + ["type"] = "explicit", + }, + }, + ["6871_AfflictionNotableRapidInfusion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570474940", + ["text"] = "1 Added Passive Skill is Rapid Infusion", + ["type"] = "explicit", + }, + }, + ["6872_AfflictionNotableRattlingBellow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4288473380", + ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["type"] = "explicit", + }, + }, + ["6873_AfflictionNotableRazeandPillage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038897629", + ["text"] = "1 Added Passive Skill is Raze and Pillage", + ["type"] = "explicit", + }, + }, + ["6874_AfflictionNotableReadiness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_845306697", + ["text"] = "1 Added Passive Skill is Readiness", + ["type"] = "explicit", + }, + }, + ["6875_AfflictionNotableRemarkable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691431951", + ["text"] = "1 Added Passive Skill is Remarkable", + ["type"] = "explicit", + }, + }, + ["6876_AfflictionNotableRend"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4263287206", + ["text"] = "1 Added Passive Skill is Rend", + ["type"] = "explicit", + }, + }, + ["6877_AfflictionNotableRenewal"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3607300552", + ["text"] = "1 Added Passive Skill is Renewal", + ["type"] = "explicit", + }, + }, + ["6878_AfflictionNotableRepeater"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2233272527", + ["text"] = "1 Added Passive Skill is Repeater", + ["type"] = "explicit", + }, + }, + ["6879_AfflictionNotableReplenishingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1496043857", + ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["type"] = "explicit", + }, + }, + ["6880_AfflictionNotableRiotQueller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_254194892", + ["text"] = "1 Added Passive Skill is Riot Queller", + ["type"] = "explicit", + }, + }, + ["6881_AfflictionNotableRotResistant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713945233", + ["text"] = "1 Added Passive Skill is Rot-Resistant", + ["type"] = "explicit", + }, + }, + ["6882_AfflictionNotableRoteReinforcement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2478282326", + ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["type"] = "explicit", + }, + }, + ["6883_AfflictionNotableRottenClaws"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2289610642", + ["text"] = "1 Added Passive Skill is Rotten Claws", + ["type"] = "explicit", + }, + }, + ["6884_AfflictionNotableRunThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1488030420", + ["text"] = "1 Added Passive Skill is Run Through", + ["type"] = "explicit", + }, + }, + ["6885_AfflictionNotableSadist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3638731729", + ["text"] = "1 Added Passive Skill is Sadist", + ["type"] = "explicit", + }, + }, + ["6886_AfflictionNotableSage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_478147593", + ["text"] = "1 Added Passive Skill is Sage", + ["type"] = "explicit", + }, + }, + ["6887_AfflictionNotableSapPsyche"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715786975", + ["text"] = "1 Added Passive Skill is Sap Psyche", + ["type"] = "explicit", + }, + }, + ["6888_AfflictionNotableSavageResponse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222635921", + ["text"] = "1 Added Passive Skill is Savage Response", + ["type"] = "explicit", + }, + }, + ["6889_AfflictionNotableSavourtheMoment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3539175001", + ["text"] = "1 Added Passive Skill is Savour the Moment", + ["type"] = "explicit", + }, + }, + ["6890_AfflictionNotableScintillatingIdea"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2589589781", + ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["type"] = "explicit", + }, + }, + ["6891_AfflictionNotableSealMender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_876846990", + ["text"] = "1 Added Passive Skill is Seal Mender", + ["type"] = "explicit", + }, + }, + ["6892_AfflictionNotableSecondSkin"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2773515950", + ["text"] = "1 Added Passive Skill is Second Skin", + ["type"] = "explicit", + }, + }, + ["6893_AfflictionNotableSeekerRunes"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2261237498", + ["text"] = "1 Added Passive Skill is Seeker Runes", + ["type"] = "explicit", + }, + }, + ["6894_AfflictionNotableSelfFulfillingProphecy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2644533453", + ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["type"] = "explicit", + }, + }, + ["6895_AfflictionNotableSepticSpells"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4290522695", + ["text"] = "1 Added Passive Skill is Septic Spells", + ["type"] = "explicit", + }, + }, + ["6896_AfflictionNotableSetandForget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101250813", + ["text"] = "1 Added Passive Skill is Set and Forget", + ["type"] = "explicit", + }, + }, + ["6897_AfflictionNotableShiftingShadow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1476913894", + ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["type"] = "explicit", + }, + }, + ["6898_AfflictionNotableShriekingBolts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2783012144", + ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["type"] = "explicit", + }, + }, + ["6899_AfflictionNotableSkeletalAtrophy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290215329", + ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["type"] = "explicit", + }, + }, + ["6900_AfflictionNotableSkullbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_315697256", + ["text"] = "1 Added Passive Skill is Skullbreaker", + ["type"] = "explicit", + }, + }, + ["6901_AfflictionNotableSleeplessSentries"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3993957711", + ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["type"] = "explicit", + }, + }, + ["6902_AfflictionNotableSmitetheWeak"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_540300548", + ["text"] = "1 Added Passive Skill is Smite the Weak", + ["type"] = "explicit", + }, + }, + ["6903_AfflictionNotableSmokingRemains"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2322980282", + ["text"] = "1 Added Passive Skill is Smoking Remains", + ["type"] = "explicit", + }, + }, + ["6904_AfflictionNotableSnaringSpirits"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319205340", + ["text"] = "1 Added Passive Skill is Snaring Spirits", + ["type"] = "explicit", + }, + }, + ["6905_AfflictionNotableSnowstorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1595367309", + ["text"] = "1 Added Passive Skill is Snowstorm", + ["type"] = "explicit", + }, + }, + ["6906_AfflictionNotableSpecialReserve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4235300427", + ["text"] = "1 Added Passive Skill is Special Reserve", + ["type"] = "explicit", + }, + }, + ["6907_AfflictionNotableSpikedConcoction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372255769", + ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["type"] = "explicit", + }, + }, + ["6908_AfflictionNotableSpringBack"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3603695769", + ["text"] = "1 Added Passive Skill is Spring Back", + ["type"] = "explicit", + }, + }, + ["6909_AfflictionNotableStalwartCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350668735", + ["text"] = "1 Added Passive Skill is Volatile Presence", + ["type"] = "explicit", + }, + }, + ["6910_AfflictionNotableSteadyTorment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500334379", + ["text"] = "1 Added Passive Skill is Steady Torment", + ["type"] = "explicit", + }, + }, + ["6911_AfflictionNotableStoicFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1088949570", + ["text"] = "1 Added Passive Skill is Stoic Focus", + ["type"] = "explicit", + }, + }, + ["6912_AfflictionNotableStormDrinker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2087561637", + ["text"] = "1 Added Passive Skill is Storm Drinker", + ["type"] = "explicit", + }, + }, + ["6913_AfflictionNotableStormrider"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_889728548", + ["text"] = "1 Added Passive Skill is Stormrider", + ["type"] = "explicit", + }, + }, + ["6914_AfflictionNotableStormsHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1122051203", + ["text"] = "1 Added Passive Skill is Storm's Hand", + ["type"] = "explicit", + }, + }, + ["6915_AfflictionNotableStreamlined"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1397498432", + ["text"] = "1 Added Passive Skill is Streamlined", + ["type"] = "explicit", + }, + }, + ["6916_AfflictionNotableStrikeLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_282062371", + ["text"] = "1 Added Passive Skill is Strike Leader", + ["type"] = "explicit", + }, + }, + ["6917_AfflictionNotableStubbornStudent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383914651", + ["text"] = "1 Added Passive Skill is Stubborn Student", + ["type"] = "explicit", + }, + }, + ["6918_AfflictionNotableStudentofDecay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3202667190", + ["text"] = "1 Added Passive Skill is Student of Decay", + ["type"] = "explicit", + }, + }, + ["6919_AfflictionNotableSublimeSensation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1364858171", + ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["type"] = "explicit", + }, + }, + ["6920_AfflictionNotableSummerCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3881737087", + ["text"] = "1 Added Passive Skill is Mortifying Aspect", + ["type"] = "explicit", + }, + }, + ["6921_AfflictionNotableSupercharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3226074658", + ["text"] = "1 Added Passive Skill is Supercharge", + ["type"] = "explicit", + }, + }, + ["6922_AfflictionNotableSurefootedStriker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3410752193", + ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["type"] = "explicit", + }, + }, + ["6923_AfflictionNotableSurgingVitality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2410501331", + ["text"] = "1 Added Passive Skill is Surging Vitality", + ["type"] = "explicit", + }, + }, + ["6924_AfflictionNotableSurpriseSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3051562738", + ["text"] = "1 Added Passive Skill is Surprise Sabotage", + ["type"] = "explicit", + }, + }, + ["6925_AfflictionNotableTemperedArrowheads"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2631806437", + ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["type"] = "explicit", + }, + }, + ["6926_AfflictionNotableThaumophage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_177215332", + ["text"] = "1 Added Passive Skill is Thaumophage", + ["type"] = "explicit", + }, + }, + ["6927_AfflictionNotableThunderstruck"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1741700339", + ["text"] = "1 Added Passive Skill is Thunderstruck", + ["type"] = "explicit", + }, + }, + ["6928_AfflictionNotableTitanicSwings"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930275641", + ["text"] = "1 Added Passive Skill is Titanic Swings", + ["type"] = "explicit", + }, + }, + ["6929_AfflictionNotableTouchofCruelty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2780712583", + ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["type"] = "explicit", + }, + }, + ["6930_AfflictionNotableToweringThreat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3536778624", + ["text"] = "1 Added Passive Skill is Towering Threat", + ["type"] = "explicit", + }, + }, + ["6931_AfflictionNotableUnholyGrace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4186213466", + ["text"] = "1 Added Passive Skill is Unholy Grace", + ["type"] = "explicit", + }, + }, + ["6932_AfflictionNotableUnspeakableGifts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_729163974", + ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["type"] = "explicit", + }, + }, + ["6933_AfflictionNotableUntouchable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2758966888", + ["text"] = "1 Added Passive Skill is Untouchable", + ["type"] = "explicit", + }, + }, + ["6934_AfflictionNotableUnwaveringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_367638058", + ["text"] = "1 Added Passive Skill is Unwavering Focus", + ["type"] = "explicit", + }, + }, + ["6935_AfflictionNotableUnwaveringlyEvil"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788982914", + ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["type"] = "explicit", + }, + }, + ["6936_AfflictionNotableVastPower"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1996576560", + ["text"] = "1 Added Passive Skill is Vast Power", + ["type"] = "explicit", + }, + }, + ["6937_AfflictionNotableVengefulCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2620267328", + ["text"] = "1 Added Passive Skill is Righteous Path", + ["type"] = "explicit", + }, + }, + ["6938_AfflictionNotableVeteranDefender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_664010431", + ["text"] = "1 Added Passive Skill is Veteran Defender", + ["type"] = "explicit", + }, + }, + ["6939_AfflictionNotableViciousBite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_882876854", + ["text"] = "1 Added Passive Skill is Vicious Bite", + ["type"] = "explicit", + }, + }, + ["6940_AfflictionNotableViciousGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4054656914", + ["text"] = "1 Added Passive Skill is Vicious Guard", + ["type"] = "explicit", + }, + }, + ["6941_AfflictionNotableViciousSkewering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_567971948", + ["text"] = "1 Added Passive Skill is Vicious Skewering", + ["type"] = "explicit", + }, + }, + ["6942_AfflictionNotableVictimMaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1936135020", + ["text"] = "1 Added Passive Skill is Victim Maker", + ["type"] = "explicit", + }, + }, + ["6943_AfflictionNotableVileReinvigoration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_647201233", + ["text"] = "1 Added Passive Skill is Vile Reinvigoration", + ["type"] = "explicit", + }, + }, + ["6944_AfflictionNotableVitalFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2134141047", + ["text"] = "1 Added Passive Skill is Vital Focus", + ["type"] = "explicit", + }, + }, + ["6945_AfflictionNotableVividHues"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3957006524", + ["text"] = "1 Added Passive Skill is Vivid Hues", + ["type"] = "explicit", + }, + }, + ["6946_AfflictionNotableWallofMuscle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1363668533", + ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["type"] = "explicit", + }, + }, + ["6947_AfflictionNotableWardbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2454339320", + ["text"] = "1 Added Passive Skill is Forbidden Words", + ["type"] = "explicit", + }, + }, + ["6948_AfflictionNotableWarningCall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_578355556", + ["text"] = "1 Added Passive Skill is Warning Call", + ["type"] = "explicit", + }, + }, + ["6949_AfflictionNotableWastingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066820199", + ["text"] = "1 Added Passive Skill is Wasting Affliction", + ["type"] = "explicit", + }, + }, + ["6950_AfflictionNotableWeightAdvantage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2244243943", + ["text"] = "1 Added Passive Skill is Weight Advantage", + ["type"] = "explicit", + }, + }, + ["6951_AfflictionNotableWhispersofDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["6952_AfflictionNotableWickedPall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1616734644", + ["text"] = "1 Added Passive Skill is Wicked Pall", + ["type"] = "explicit", + }, + }, + ["6953_AfflictionNotableWidespreadDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678643716", + ["text"] = "1 Added Passive Skill is Widespread Destruction", + ["type"] = "explicit", + }, + }, + ["6954_AfflictionNotableWillShaper"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1162352537", + ["text"] = "1 Added Passive Skill is Will Shaper", + ["type"] = "explicit", + }, + }, + ["6955_AfflictionNotableWindup"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1938661964", + ["text"] = "1 Added Passive Skill is Wind-up", + ["type"] = "explicit", + }, + }, + ["6956_AfflictionNotableWinterCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_792262925", + ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["type"] = "explicit", + }, + }, + ["6957_AfflictionNotableWinterProwler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755881431", + ["text"] = "1 Added Passive Skill is Winter Prowler", + ["type"] = "explicit", + }, + }, + ["6958_AfflictionNotableWishforDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_608164368", + ["text"] = "1 Added Passive Skill is Wish for Death", + ["type"] = "explicit", + }, + }, + ["6959_AfflictionNotableWizardry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3078065247", + ["text"] = "1 Added Passive Skill is Wizardry", + ["type"] = "explicit", + }, + }, + ["6960_AfflictionNotableWoundAggravation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_69078820", + ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["type"] = "explicit", + }, + }, + ["6961_AfflictionNotableWrappedinFlame"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_241783558", + ["text"] = "1 Added Passive Skill is Wrapped in Flame", + ["type"] = "explicit", + }, + }, + }, + ["Scourge"] = { + ["1000_SpellDamage"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "scourge", + }, + }, + ["1007_PhysicalDamagePercent"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "scourge", + }, + }, + ["1018_GlobalDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3988349707", + ["text"] = "#% to Damage over Time Multiplier", + ["type"] = "scourge", + }, + }, + ["1022_PhysicalDamageOverTimeMultiplier"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", + ["type"] = "scourge", + }, + }, + ["1026_FireDamageOverTimeMultiplier"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", + ["type"] = "scourge", + }, + }, + ["1031_ColdDamageOverTimeMultiplier"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", + ["type"] = "scourge", + }, + }, + ["1034_ChaosDamageOverTimeMultiplier"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", + ["type"] = "scourge", + }, + }, + ["1050_LocalPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["1HMace"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["1HSword"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["1HWeapon"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["2HAxe"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["2HSword"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["Bow"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["Claw"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["Dagger"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["Staff"] = { + ["max"] = 20.5, + ["min"] = 6.5, + }, + ["Wand"] = { + ["max"] = 10.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "scourge", + }, + }, + ["1131_FireDamagePercentage"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "scourge", + }, + }, + ["1136_LocalFireDamage"] = { + ["1HAxe"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 81.5, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 81.5, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 81.5, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 81.5, + ["min"] = 26.5, + }, + ["Bow"] = { + ["max"] = 81.5, + ["min"] = 26.5, + }, + ["Claw"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 81.5, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 53.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "scourge", + }, + }, + ["1140_ColdDamagePercentage"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "scourge", + }, + }, + ["1145_LocalColdDamage"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["2HAxe"] = { + ["max"] = 74, + ["min"] = 27, + }, + ["2HMace"] = { + ["max"] = 74, + ["min"] = 27, + }, + ["2HSword"] = { + ["max"] = 74, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 74, + ["min"] = 23, + }, + ["Bow"] = { + ["max"] = 74, + ["min"] = 23, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Staff"] = { + ["max"] = 74, + ["min"] = 27, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "scourge", + }, + }, + ["1151_LightningDamagePercentage"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "scourge", + }, + }, + ["1156_LocalLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["1HMace"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["1HSword"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["1HWeapon"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["2HAxe"] = { + ["max"] = 113, + ["min"] = 38, + }, + ["2HMace"] = { + ["max"] = 113, + ["min"] = 38, + }, + ["2HSword"] = { + ["max"] = 113, + ["min"] = 38, + }, + ["2HWeapon"] = { + ["max"] = 113, + ["min"] = 30.5, + }, + ["Bow"] = { + ["max"] = 113, + ["min"] = 30.5, + }, + ["Claw"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["Dagger"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["Staff"] = { + ["max"] = 113, + ["min"] = 38, + }, + ["Wand"] = { + ["max"] = 59.5, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "scourge", + }, + }, + ["1159_IncreasedChaosDamage"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "scourge", + }, + }, + ["1163_LocalChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 46, + ["min"] = 17.5, + }, + ["2HMace"] = { + ["max"] = 46, + ["min"] = 17.5, + }, + ["2HSword"] = { + ["max"] = 46, + ["min"] = 17.5, + }, + ["2HWeapon"] = { + ["max"] = 46, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 46, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 46, + ["min"] = 17.5, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "scourge", + }, + }, + ["1176_SpellAddedPhysicalDamage"] = { + ["1HMace"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "scourge", + }, + }, + ["1177_SpellAddedFireDamage"] = { + ["1HMace"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "scourge", + }, + }, + ["1178_SpellAddedColdDamage"] = { + ["1HMace"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 45.5, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30.5, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "scourge", + }, + }, + ["1179_SpellAddedLightningDamage"] = { + ["1HMace"] = { + ["max"] = 32.5, + ["min"] = 17.5, + }, + ["1HWeapon"] = { + ["max"] = 32.5, + ["min"] = 17.5, + }, + ["2HWeapon"] = { + ["max"] = 48.5, + ["min"] = 26, + }, + ["Dagger"] = { + ["max"] = 32.5, + ["min"] = 17.5, + }, + ["Staff"] = { + ["max"] = 48.5, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 32.5, + ["min"] = 17.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "scourge", + }, + }, + ["1183_IncreasedAttackSpeed"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "scourge", + }, + }, + ["1206_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "scourge", + }, + }, + ["1218_IncreasedCastSpeed"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "scourge", + }, + }, + ["1231_CriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "scourge", + }, + }, + ["1237_CriticalStrikeChanceWithBows"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "scourge", + }, + }, + ["1260_CriticalStrikeMultiplier"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", + ["type"] = "scourge", + }, + }, + ["1267_CriticalStrikeMultiplierWithBows"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", + ["type"] = "scourge", + }, + }, + ["1283_ReducedExtraDamageFromCrits"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "scourge", + }, + }, + ["1288_StunThresholdReduction"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "scourge", + }, + }, + ["129_LocalIncreaseSocketedStrengthGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", + ["type"] = "scourge", + }, + }, + ["130_LocalIncreaseSocketedDexterityGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", + ["type"] = "scourge", + }, + }, + ["1311_LocalPhysicalDamageReductionRating"] = { + ["Boots"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Helmet"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "scourge", + }, + }, + ["1319_LocalEvasionRating"] = { + ["Boots"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["Helmet"] = { + ["max"] = 150, + ["min"] = 30, + }, + ["sign"] = "+", + ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "scourge", + }, + }, + ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", + ["type"] = "scourge", + }, + }, + ["1329_LocalEnergyShield"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "+", + ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "scourge", + }, + }, + ["132_LocalIncreaseSocketedGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", + ["type"] = "scourge", + }, + }, + ["1335_EnergyShieldRegeneration"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "scourge", + }, + }, + ["1338_EnergyShieldRecoveryRate"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "scourge", + }, + }, + ["1339_IncreasedLife"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "scourge", + }, + }, + ["1341_MaximumLifeIncreasePercent"] = { + ["Belt"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "scourge", + }, + }, + ["1344_LifeRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "scourge", + }, + }, + ["1347_LifeRegenerationRate"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "scourge", + }, + }, + ["1348_LifeRecoveryRate"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "scourge", + }, + }, + ["1349_IncreasedMana"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 23, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 23, + }, + ["Ring"] = { + ["max"] = 40, + ["min"] = 23, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "scourge", + }, + }, + ["1350_MaximumManaIncreasePercent"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "scourge", + }, + }, + ["1352_AddedManaRegeneration"] = { + ["Helmet"] = { + ["max"] = 9.2, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "scourge", + }, + }, + ["1354_ManaRegeneration"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "scourge", + }, + }, + ["1356_ManaRecoveryRate"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "scourge", + }, + }, + ["1366_ItemFoundRarityIncrease"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "scourge", + }, + }, + ["1379_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skill Gems", + ["type"] = "scourge", + }, + }, + ["137_LocalIncreaseSocketedFireGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", + ["type"] = "scourge", + }, + }, + ["1380_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skill Gems", + ["type"] = "scourge", + }, + }, + ["1381_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skill Gems", + ["type"] = "scourge", + }, + }, + ["1382_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skill Gems", + ["type"] = "scourge", + }, + }, + ["1383_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skill Gems", + ["type"] = "scourge", + }, + }, + ["1388_AllResistances"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "scourge", + }, + }, + ["138_LocalIncreaseSocketedColdGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", + ["type"] = "scourge", + }, + }, + ["1392_MaximumFireResist"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + ["type"] = "scourge", + }, + }, + ["1394_FireResistance"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "scourge", + }, + }, + ["1398_MaximumColdResist"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + ["type"] = "scourge", + }, + }, + ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", + ["type"] = "scourge", + }, + }, + ["1400_ColdResistance"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "scourge", + }, + }, + ["1403_MaximumLightningResistance"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + ["type"] = "scourge", + }, + }, + ["1405_LightningResistance"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 18, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "scourge", + }, + }, + ["1408_MaximumChaosResistance"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + ["type"] = "scourge", + }, + }, + ["1409_ChaosResistance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 30, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 10, }, - ["sign"] = "", - }, - ["3109_DisciplineAuraEffect"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", + ["Staff"] = { + ["max"] = 25, + ["min"] = 10, }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["Wand"] = { + ["max"] = 25, + ["min"] = 10, }, - ["sign"] = "", - }, - ["2201_PhysicalDamageTakenAsLightningUber"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["4765_BodyDamageTakenPerStrengthPinnaclePresence"] = { + ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_125264229", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", - }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + ["id"] = "scourge.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1722_ConvertPhysicalToColdUniquePresence"] = { + ["1411_MaximumElementalResistance"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1153825002", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", + ["id"] = "scourge.stat_1978899297", + ["text"] = "#% to all maximum Elemental Resistances", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + }, + ["1413_ChillEffectivenessOnSelf"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 31, }, ["sign"] = "", - }, - ["4277_AncestralCryExertedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3598887112", - ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 29, - ["max"] = 41, + ["id"] = "scourge.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "scourge", }, }, - ["2726_FireResistancePenetrationUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3425675761", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + ["1417_LifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, + ["Quiver"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Ring"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - }, - ["9212_ZealotryAuraEffectUniquePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3550578554", - ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", + ["id"] = "scourge.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["1434_PhysicalDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["2200_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2466412811", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "scourge.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + }, + ["1438_FireDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["3619_EnduringCryCooldownRecoveryUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2792560229", - ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "scourge.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "scourge", }, }, - ["4277_AncestralCryExertedDamage"] = { + ["143_IncreaseSocketedDurationGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2146663823", - ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["id"] = "scourge.stat_2115168758", + ["text"] = "# to Level of Socketed Duration Gems", + ["type"] = "scourge", }, }, - ["1445_ColdDamageLifeLeechHundredThousand"] = { + ["1443_ColdDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", + ["id"] = "scourge.stat_3999401129", ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "scourge", }, - ["Gloves"] = { + }, + ["1447_LightningDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, ["min"] = 0.2, - ["max"] = 0.7, }, ["sign"] = "", - }, - ["1699_PhysicalAddedAsLightningUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1918094957", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "scourge", }, }, - ["2241_ChanceToBleed"] = { + ["144_IncreasedSocketedAoEGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "scourge.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + }, + ["1450_ChaosDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["1699_PhysicalAddedAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "scourge.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "scourge", }, }, - ["1000_SpellDamage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["145_LocalIncreaseSocketedProjectileGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, - }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, - }, - }, - ["1627_IncreasedAilmentDurationPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_867827325", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", + ["type"] = "scourge", }, - ["sign"] = "", + }, + ["1467_ManaLeechPermyriad"] = { ["Amulet"] = { - ["min"] = 29, - ["max"] = 36, + ["max"] = 0.5, + ["min"] = 0.2, }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 36, + ["Gloves"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - }, - ["1320_GlobalEvasionRatingPercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3394288644", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", + ["Quiver"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 34, - }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 34, - }, - }, - ["3107_HatredAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1253537227", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", + ["id"] = "scourge.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "scourge", }, + }, + ["147_LocalIncreaseSocketedMeleeGemLevel"] = { ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["8365_PrideAuraEffect"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", + ["id"] = "scourge.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", + ["type"] = "scourge", }, + }, + ["148_LocalIncreaseSocketedMinionGemLevel"] = { ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["2316_FasterIgniteDamagePinnaclePresence"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1053495752", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["id"] = "scourge.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", + ["type"] = "scourge", }, }, - ["3105_HasteAuraEffectUniquePresence"] = { + ["149_LocalIncreaseSocketedAuraLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1060820709", - ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", + ["id"] = "scourge.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["1508_LifeGainPerTarget"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 2, }, ["sign"] = "", - }, - ["1720_ConvertPhysicalToFireUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_380027104", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["id"] = "scourge.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "scourge", }, + }, + ["1512_ManaGainPerTarget"] = { ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + ["max"] = 5, + ["min"] = 2, }, ["sign"] = "", - }, - ["4000_PlayerReflectedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3846810663", - ["text"] = "#% reduced Reflected Damage taken", + ["id"] = "scourge.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "scourge", }, + }, + ["1517_MaximumLifeOnKillPercent"] = { ["Chest"] = { - ["min"] = 45, - ["max"] = 70, + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - }, - ["3099_PurityOfFireEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2034940983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", + ["id"] = "scourge.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "scourge", }, + }, + ["1518_MaximumEnergyShieldOnKillPercent"] = { ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - }, - ["2727_ColdResistancePenetrationPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_403285636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "scourge.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "scourge", }, }, - ["1698_PhysicalAddedAsColdUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3171354842", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + ["1519_MaximumManaOnKillPercent"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 8, - }, - }, - ["1722_ConvertPhysicalToColdImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "scourge.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + }, + ["1525_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", - }, - ["2723_ArmourPenetrationPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_469487616", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Overwhelm #% Physical Damage Reduction", + ["id"] = "scourge.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 24, - ["max"] = 31, + }, + ["1526_GainManaOnBlock"] = { + ["Shield"] = { + ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", - }, - ["4742_BlindEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4122616021", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", + ["id"] = "scourge.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 22, - ["max"] = 29, + }, + ["1527_GainEnergyShieldOnBlock"] = { + ["Shield"] = { + ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", - }, - ["3947_ChanceToAvoidBleedingUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2651293339", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["id"] = "scourge.stat_450695450", + ["text"] = "Gain # Energy Shield when you Block", + ["type"] = "scourge", }, }, - ["8365_PrideAuraEffectUniquePresence"] = { + ["152_IncreaseSocketedCurseGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4039774101", - ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", + ["id"] = "scourge.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["1533_MinionLife"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - }, - ["6577_LightningExposureEffectOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_981753179", - ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", - }, - ["Gloves"] = { - ["min"] = 11, - ["max"] = 16, + ["id"] = "scourge.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "scourge", }, - ["sign"] = "-", }, - ["1348_LifeRecoveryRate"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["1541_IncreasedTotemLife"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 7, }, - ["Chest"] = { + ["Boots"] = { + ["max"] = 15, ["min"] = 7, - ["max"] = 12, }, ["sign"] = "", - }, - ["3019_WarcrySpeedPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2117066923", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 34, + ["id"] = "scourge.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "scourge", }, }, - ["8192_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2950684886", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["1545_TotemDuration"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 23, - ["max"] = 35, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "scourge.stat_2357996603", + ["text"] = "#% increased Totem Duration", + ["type"] = "scourge", }, }, - ["1312_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1371764251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", + ["1556_AdditionalChain"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 40, - }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 40, - }, - }, - ["2726_FireResistancePenetration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "scourge.stat_1787073323", + ["text"] = "Skills Chain # times", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["1557_AdditionalPierce"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "scourge.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "scourge", }, }, - ["1791_ChanceToFreezePinnaclePresence"] = { + ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4146719724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", + ["id"] = "scourge.stat_150668988", + ["text"] = "# to Level of Socketed Trap or Mine Gems", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + }, + ["1560_AdditionalArrows"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", - }, - ["4586_BattlemagesCryWarcryEffectPinnaclePresence"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1455812442", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["id"] = "scourge.stat_742529963", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "scourge", + }, + }, + ["1563_ProjectileSpeed"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 14, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "scourge", }, }, - ["924_ChanceToSuppressSpellsPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 12, + ["1565_MovementVelocity"] = { + ["Boots"] = { ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2998245080", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Suppress Spell Damage", + ["id"] = "scourge.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["1570_MinimumEnduranceCharges"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "+", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 15, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", + ["type"] = "scourge", }, }, - ["3014_IncreasedStunThresholdPinnaclePresence"] = { + ["1575_MinimumFrenzyCharges"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1513279759", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["id"] = "scourge.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", + ["type"] = "scourge", }, }, - ["1742_IncreasedManaRegenerationPerPowerCharge"] = { + ["157_LocalIncreaseSocketedSupportGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2847548062", - ["text"] = "#% increased Mana Regeneration Rate per Power Charge", - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 6, + ["id"] = "scourge.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1700_PhysicalDamageAddedAsChaosUniquePresence"] = { + ["1580_MinimumPowerCharges"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_620552892", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", + ["id"] = "scourge.stat_1999711879", + ["text"] = "# to Minimum Power Charges", + ["type"] = "scourge", }, - ["sign"] = "", + }, + ["1605_CannotBeFrozen"] = { ["Boots"] = { - ["min"] = 6, - ["max"] = 8, + ["max"] = 1, + ["min"] = 1, }, - }, - ["1557_AdditionalPierceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3924473787", - ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "scourge.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["3104_GraceAuraEffectUniquePresence"] = { + ["160_LocalSocketedWarcryGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3303144948", - ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", + ["id"] = "scourge.stat_1672793731", + ["text"] = "# to Level of Socketed Warcry Gems", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["1610_AvoidElementalStatusAilments"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 17, }, ["sign"] = "", - }, - ["9212_ZealotryAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2293353005", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", + ["id"] = "scourge.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + }, + ["1611_ChanceToAvoidFreezeAndChill"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, }, ["sign"] = "", - }, - ["5481_MalevolenceAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1033279468", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", + ["id"] = "scourge.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + }, + ["1612_ChanceToAvoidFreezeAndChill"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, }, ["sign"] = "", - }, - ["938_SpellBlockPercentagePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2996280658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["id"] = "scourge.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["1613_AvoidIgnite"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 14, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "scourge.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "scourge", }, }, - ["5697_EnemyLifeRegenerationRateUniquePresence"] = { + ["1615_AvoidShock"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2570471069", - ["text"] = "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["id"] = "scourge.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 77, - ["max"] = 91, + }, + ["1616_ChanceToAvoidPoison"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, }, ["sign"] = "", - }, - ["1700_PhysicalDamageAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "scourge.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "scourge", }, }, - ["4763_BodyDamageTakenPerDexterityPinnaclePresence"] = { + ["1618_AvoidStun"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2216092051", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", + ["id"] = "scourge.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + }, + ["1627_IncreasedAilmentDuration"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - }, - ["6057_GeneralsCryCooldownRecoveryUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_942266300", - ["text"] = "While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["id"] = "scourge.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "scourge", }, }, - ["1795_ChanceToShock"] = { - ["specialCaseData"] = { + ["1630_StunDurationIncreasePercent"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["1HMace"] = { + ["max"] = 25, + ["min"] = 17, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 30, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 17, }, - ["sign"] = "", - }, - ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 17, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 17, }, - ["sign"] = "", - ["Amulet"] = { + ["2HMace"] = { + ["max"] = 25, ["min"] = 17, - ["max"] = 28, }, - ["Chest"] = { + ["2HSword"] = { + ["max"] = 25, ["min"] = 17, - ["max"] = 28, }, - }, - ["1724_ConvertPhysicalToLightningUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1516273114", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["Belt"] = { + ["max"] = 25, + ["min"] = 17, }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + ["Bow"] = { + ["max"] = 25, + ["min"] = 17, }, - ["sign"] = "", - }, - ["3619_EnduringCryCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 25, + ["min"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_906749304", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["Dagger"] = { + ["max"] = 25, + ["min"] = 17, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 17, }, - }, - ["1388_AllResistancesPinnaclePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2251516251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all Elemental Resistances", - }, - ["Chest"] = { - ["min"] = 21, - ["max"] = 28, + ["id"] = "scourge.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["5697_EnemyLifeRegenerationRate"] = { + ["1634_SelfStatusAilmentDuration"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3903907406", - ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["id"] = "scourge.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "scourge", }, + }, + ["1641_ReducedFreezeDuration"] = { ["Helmet"] = { - ["min"] = 65, - ["max"] = 82, + ["max"] = 40, + ["min"] = 31, }, ["sign"] = "", - }, - ["3108_DeterminationAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1324460486", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", + ["id"] = "scourge.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + }, + ["1642_ReducedBurnDuration"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 31, }, ["sign"] = "", - }, - ["9212_ZealotryAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", + ["id"] = "scourge.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["1647_AreaOfEffect"] = { + ["Amulet"] = { + ["max"] = 13, + ["min"] = 10, }, ["sign"] = "", - }, - ["1452_ChaosDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1172401338", - ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", - }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["id"] = "scourge.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["938_SpellBlockPercentage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - }, - ["specialCaseData"] = { + ["1667_StunRecovery"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, - }, - }, - ["5639_ElusiveEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2413932980", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["id"] = "scourge.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "scourge", }, }, - ["5702_EnergyShieldFromGlovesBoots"] = { + ["1692_TrapThrowSpeed"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1234687045", - ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", - }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + ["id"] = "scourge.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1331_GlobalEnergyShieldPercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - }, - ["specialCaseData"] = { + ["1693_MineLayingSpeed"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 7, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 17, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 17, + ["tradeMod"] = { + ["id"] = "scourge.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "scourge", }, }, - ["4342_ArmourFromHelmetGloves"] = { - ["specialCaseData"] = { + ["169_IncreaseSocketedSupportGemQuality"] = { + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_791154540", - ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["1HMace"] = { + ["max"] = 12, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 9, }, - }, - ["5797_FasterPoisonDamageUniquePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3828039449", - ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { + ["2HMace"] = { + ["max"] = 12, ["min"] = 9, - ["max"] = 13, }, - }, - ["3947_ChanceToAvoidBleedingPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 12, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2610114836", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 9, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["Bow"] = { + ["max"] = 12, + ["min"] = 9, }, - }, - ["5697_EnemyLifeRegenerationRatePinnaclePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 12, + ["min"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3407071583", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["Dagger"] = { + ["max"] = 12, + ["min"] = 9, }, - ["Helmet"] = { - ["min"] = 89, - ["max"] = 100, + ["Shield"] = { + ["max"] = 12, + ["min"] = 9, }, - ["sign"] = "", - }, - ["1206_IncreasedAccuracyPercentUniquePresence"] = { + ["Staff"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2423625781", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", + ["id"] = "scourge.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", + ["type"] = "scourge", }, + }, + ["1720_ConvertPhysicalToFire"] = { ["Gloves"] = { - ["min"] = 15, - ["max"] = 24, + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["1724_ConvertPhysicalToLightningPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3718361973", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["id"] = "scourge.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "scourge", }, + }, + ["1722_ConvertPhysicalToCold"] = { ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["919_BlockPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3326567914", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 14, - }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 14, + ["tradeMod"] = { + ["id"] = "scourge.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "scourge", }, }, - ["6057_GeneralsCryCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_133006298", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate", + ["1724_ConvertPhysicalToLightning"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, - }, - }, - ["1727_PhysicalDamageConvertToChaosImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["id"] = "scourge.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "scourge", }, + }, + ["1727_PhysicalDamageConvertedToChaos"] = { ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", - }, - ["5797_FasterPoisonDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_995369618", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["id"] = "scourge.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "scourge", }, }, - ["1627_IncreasedAilmentDurationUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3341892633", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", - }, - ["specialCaseData"] = { + ["1738_MinionDamage"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 21, - ["max"] = 30, - }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 30, - }, - }, - ["1697_PhysicalAddedAsFireUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3549954477", - ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "scourge", }, }, - ["1791_ChanceToFreezeUniquePresence"] = { - ["specialCaseData"] = { + ["1743_ElementalDamagePercent"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1096728982", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 23, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 40, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 34, }, - ["sign"] = "", - }, - ["4482_AttackImpaleChancePinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 50, + ["min"] = 23, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2838459808", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", + ["Staff"] = { + ["max"] = 75, + ["min"] = 34, }, - ["Gloves"] = { - ["min"] = 35, + ["Wand"] = { ["max"] = 50, + ["min"] = 23, }, ["sign"] = "", - }, - ["4586_BattlemagesCryWarcryEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2426838124", - ["text"] = "#% increased Battlemage's Cry Buff Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "scourge.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "scourge", }, }, - ["5387_DamagePer100INTUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1894390763", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", - }, + ["1757_GlobalKnockbackChance"] = { ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", - }, - ["5641_ExertedAttackDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_376260015", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", + ["id"] = "scourge.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "scourge", }, + }, + ["1758_ProjectileDamage"] = { ["Gloves"] = { - ["min"] = 38, - ["max"] = 47, + ["max"] = 15, + ["min"] = 8, }, ["sign"] = "", - }, - ["3619_EnduringCryCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3617955571", - ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["id"] = "scourge.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "scourge", }, }, - ["3109_DisciplineAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1788_ChanceToIgnite"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2752131673", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 7, }, - ["sign"] = "", - }, - ["919_BlockPercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_725501141", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", + ["Staff"] = { + ["max"] = 15, + ["min"] = 7, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, - }, - }, - ["5387_DamagePer100INT"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", - }, - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "scourge.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1445_ColdDamageLifeLeechUniquePresence"] = { - ["specialCaseData"] = { + ["1791_ChanceToFreeze"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3357881628", - ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 7, }, - ["sign"] = "", - }, - ["4112_TravelSkillCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_850668052", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, - }, - }, - ["5796_FasterBleedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "scourge.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "scourge", }, - ["sign"] = "", - ["Boots"] = { + }, + ["1795_ChanceToShock"] = { + ["1HMace"] = { + ["max"] = 10, ["min"] = 5, + }, + ["1HWeapon"] = { ["max"] = 10, + ["min"] = 5, }, - }, - ["6409_InfernalCryWarcryAreaOfEffect"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_631097842", - ["text"] = "Infernal Cry has #% increased Area of Effect", + ["Staff"] = { + ["max"] = 15, + ["min"] = 7, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["1436_PhysicalDamageLifeLeechPinnaclePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2500914030", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", + ["id"] = "scourge.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + }, + ["1797_AreaDamage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 11, }, ["sign"] = "", - }, - ["4764_BodyDamageTakenPerIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2874488491", - ["text"] = "1% less Damage Taken per # Intelligence", - }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + ["id"] = "scourge.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["7190_GlobalMaimOnHitPinnaclePresence"] = { - ["specialCaseData"] = { + ["1801_CullingStrike"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4065516297", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1000_SpellDamagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_817495383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 44, - ["max"] = 53, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2727_ColdResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["8570_SeismicCryExertedDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1714653952", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["id"] = "scourge.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "scourge", }, - ["sign"] = "", + }, + ["1923_MaximumZombieCount"] = { ["Boots"] = { - ["min"] = 38, - ["max"] = 47, + ["max"] = 1, + ["min"] = 1, }, - }, - ["3102_WrathAuraEffect"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["id"] = "scourge.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["8765_SpellsHinderOnHitChance"] = { + ["1925_MaximumSkeletonCount"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["id"] = "scourge.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + }, + ["1933_ReducedCurseEffect"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", - }, - ["4541_GlobalCooldownRecoveryUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2491353340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["id"] = "scourge.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "scourge", }, }, - ["2723_ArmourPenetration"] = { + ["1938_GainManaAsExtraEnergyShield"] = { + ["Shield"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", + ["id"] = "scourge.stat_2663376056", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 19, + }, + ["1945_BeltIncreasedFlaskChargesGained"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 13, }, ["sign"] = "", - }, - ["1436_PhysicalDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["id"] = "scourge.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + }, + ["1951_BeltFlaskLifeRecoveryRate"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - }, - ["5388_DamagePer100STRUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4224921626", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", + ["id"] = "scourge.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + }, + ["1952_BeltFlaskManaRecoveryRate"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - }, - ["1346_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3225230656", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 0.4, - ["max"] = 0.5, + ["id"] = "scourge.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "scourge", }, }, - ["2241_ChanceToBleedPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4014428128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", + ["1964_AttackerTakesDamageNoRange"] = { + ["Belt"] = { + ["max"] = 100, + ["min"] = 20, }, - ["Gloves"] = { - ["min"] = 35, - ["max"] = 50, + ["Chest"] = { + ["max"] = 100, + ["min"] = 20, }, - ["sign"] = "", - }, - ["1699_PhysicalAddedAsLightningPinnaclePresence"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_632297605", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", + ["Shield"] = { + ["max"] = 100, + ["min"] = 20, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 10, - }, - }, - ["3108_DeterminationAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", + ["id"] = "scourge.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + }, + ["1993_ReducedReservation"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 6, }, ["sign"] = "", - }, - ["1698_PhysicalAddedAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "scourge.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "scourge", }, - ["sign"] = "", - ["Boots"] = { + }, + ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["Helmet"] = { + ["max"] = 5, ["min"] = 4, - ["max"] = 6, }, - }, - ["8570_SeismicCryExertedDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3252913608", - ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["id"] = "scourge.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "scourge", }, }, - ["5639_ElusiveEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3173079195", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", + ["2200_PhysicalDamageTakenAsCold"] = { + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, - }, - }, - ["2316_FasterIgniteDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2349328837", - ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["id"] = "scourge.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "scourge", }, }, - ["1616_ChanceToAvoidPoison"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["2201_PhysicalDamageTakenAsLightningPercent"] = { + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, - }, - }, - ["4765_BodyDamageTakenPerStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871491972", - ["text"] = "1% less Damage Taken per # Strength", + ["id"] = "scourge.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + }, + ["2203_PhysicalDamageTakenAsChaos"] = { + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4, }, ["sign"] = "", - }, - ["4482_AttackImpaleChanceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2391907787", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 40, + ["id"] = "scourge.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1557_AdditionalPiercePinnaclePresence"] = { + ["2210_AdditionalBlock"] = { + ["Shield"] = { + ["max"] = 9, + ["min"] = 2, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4045839821", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", + ["id"] = "scourge.stat_1702195217", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "scourge", }, + }, + ["2241_ChanceToBleed"] = { ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - }, - ["1795_ChanceToShockPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2459490852", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", + ["id"] = "scourge.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "scourge", }, + }, + ["2252_LightRadius"] = { ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + ["max"] = 35, + ["min"] = 16, }, ["sign"] = "", - }, - ["5796_FasterBleedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_738837643", - ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["id"] = "scourge.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "scourge", }, }, - ["5749_EvasionRatingFromHelmetBoots"] = { + ["2269_FlammabilityOnHit"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_623823763", - ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["id"] = "scourge.stat_654274615", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "scourge", }, + }, + ["2271_TemporalChainsOnHit"] = { ["Gloves"] = { - ["min"] = 33, - ["max"] = 50, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["1320_GlobalEvasionRatingPercent"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "scourge.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["2316_FasterIgniteDamage"] = { + ["1HMace"] = { + ["max"] = 9, + ["min"] = 4, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 28, + ["1HWeapon"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 8, }, - ["Chest"] = { - ["min"] = 17, - ["max"] = 28, + ["Wand"] = { + ["max"] = 9, + ["min"] = 4, }, - }, - ["1788_ChanceToIgniteUniquePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_874990741", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Ignite", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 40, + ["id"] = "scourge.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1320_GlobalEvasionRatingPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2386062386", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["2330_SummonTotemCastSpeed"] = { ["Amulet"] = { - ["min"] = 33, - ["max"] = 40, + ["max"] = 30, + ["min"] = 16, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 40, + ["Boots"] = { + ["max"] = 30, + ["min"] = 16, }, - }, - ["2913_PoisonOnHitPinnaclePresence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_532792006", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", + ["id"] = "scourge.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 35, - ["max"] = 50, + }, + ["2348_CurseEffectiveness"] = { + ["Shield"] = { + ["max"] = 12, + ["min"] = 9, }, ["sign"] = "", - }, - ["1642_ReducedIgniteDurationOnSelf"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "scourge.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + }, + ["2375_EnduranceChargeOnKillChance"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 5, }, ["sign"] = "", - }, - ["1641_ReducedFreezeDurationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3985862221", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", + ["id"] = "scourge.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + }, + ["2377_FrenzyChargeOnKillChance"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 5, }, ["sign"] = "", - }, - ["4763_BodyDamageTakenPerDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_824762042", - ["text"] = "1% less Damage Taken per # Dexterity", + ["id"] = "scourge.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + }, + ["2379_PowerChargeOnKillChance"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 5, }, ["sign"] = "", - }, - ["1440_FireDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["id"] = "scourge.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["5828_FireExposureEffectOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["2493_LocalMeleeWeaponRange"] = { + ["1HAxe"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_732411542", - ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["1HMace"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 1, }, - ["sign"] = "-", - }, - ["3030_ArcaneSurgeEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_664899091", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 22, - ["max"] = 29, + ["2HMace"] = { + ["max"] = 4, + ["min"] = 1, }, - ["sign"] = "", - }, - ["1627_IncreasedAilmentDuration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", + ["2HSword"] = { + ["max"] = 4, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 13, - ["max"] = 24, + ["Bow"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Helmet"] = { - ["min"] = 13, - ["max"] = 24, + ["Claw"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["4177_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_490830332", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, # to Accuracy Rating per Frenzy Charge", + ["Staff"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Gloves"] = { - ["min"] = 61, - ["max"] = 72, + ["Wand"] = { + ["max"] = 4, + ["min"] = 1, }, ["sign"] = "+", - }, - ["1338_EnergyShieldRecoveryRatePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_92591094", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate", - }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 16, + ["id"] = "scourge.stat_350598685", + ["text"] = "# to Weapon Range", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1452_ChaosDamageLifeLeechPinnaclePresence"] = { + ["2535_TotemElementalResistances"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_10259064", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", + ["id"] = "scourge.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + }, + ["2537_TotemPhysicalDamageReduction"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 11, }, ["sign"] = "", - }, - ["5797_FasterPoisonDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "scourge.stat_3616562963", + ["text"] = "Totems have #% additional Physical Damage Reduction", + ["type"] = "scourge", }, }, - ["1449_LightningDamageLifeLeechHundredThousand"] = { + ["2571_ReturningAttackProjectiles"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["id"] = "scourge.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + }, + ["2574_OnslaughtWhenHitForDuration"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 2, }, ["sign"] = "", - }, - ["2350_MarkEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_803185500", - ["text"] = "#% increased Effect of your Marks", + ["id"] = "scourge.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 17, + }, + ["2594_FishingCastDistance"] = { + ["FishingRod"] = { + ["max"] = 16, + ["min"] = 13, }, ["sign"] = "", - }, - ["1335_EnergyShieldRegenerationUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3806837783", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", + ["id"] = "scourge.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["2596_FishingRarity"] = { + ["FishingRod"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 29, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 29, + ["tradeMod"] = { + ["id"] = "scourge.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "scourge", }, }, - ["1724_ConvertPhysicalToLightningImplicit"] = { + ["2650_MinionBlockChance"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["id"] = "scourge.stat_3374054207", + ["text"] = "Minions have #% Chance to Block Attack Damage", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1452_ChaosDamageLifeLeechHundredThousand"] = { + ["2651_MinionSpellBlockChance"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", + ["id"] = "scourge.stat_2762046953", + ["text"] = "Minions have #% Chance to Block Spell Damage", + ["type"] = "scourge", }, + }, + ["2654_MinionAttackAndCastSpeed"] = { ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["max"] = 10, + ["min"] = 5, }, ["sign"] = "", - }, - ["6577_LightningExposureEffectOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1762412317", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["id"] = "scourge.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "scourge", }, + }, + ["2655_MinionAttackAndCastSpeed"] = { ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["max"] = 10, + ["min"] = 5, }, - ["sign"] = "-", - }, - ["1206_IncreasedAccuracyPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "scourge.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "scourge", }, - ["Gloves"] = { - ["min"] = 9, - ["max"] = 20, + }, + ["2657_MinionLifeLeech"] = { + ["Helmet"] = { + ["max"] = 0.7, + ["min"] = 0.2, }, ["sign"] = "", - }, - ["3100_PurityOfIceEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3499126604", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", + ["id"] = "scourge.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "scourge", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["2658_MinionLifeRegeneration"] = { + ["Helmet"] = { + ["max"] = 3.5, + ["min"] = 2, }, ["sign"] = "", - }, - ["5639_ElusiveEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["id"] = "scourge.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "scourge", }, }, - ["1742_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["2659_MinionElementalResistance"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1918872160", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 7, + ["id"] = "scourge.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1354_ManaRegenerationUniquePresence"] = { + ["2660_MinionChaosResistance"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 14, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_760444887", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", + ["id"] = "scourge.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 34, - ["max"] = 48, + }, + ["2703_GlobalChanceToBlindOnHit"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Quiver"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - }, - }, - ["Corrupted"] = { - ["1751_MaximumBlockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "scourge", }, }, - ["1931_AdditionalCurseOnEnemies"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", + ["2726_FireResistancePenetration"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 5, + ["min"] = 3, }, - ["sign"] = "", - }, - ["962_IncreasedDexterityStrengthCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["Dagger"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "scourge.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "scourge", }, }, - ["2199_PhysicalDamageTakenAsFirePercent"] = { - ["specialCaseData"] = { + ["2727_ColdResistancePenetration"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, + ["2HWeapon"] = { ["max"] = 8, + ["min"] = 6, }, - }, - ["188_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["Dagger"] = { + ["max"] = 5, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_150668988", - ["text"] = "# to Level of Socketed Trap or Mine Gems", + ["id"] = "scourge.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["938_SpellBlockPercentage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["2728_LightningResistancePenetration"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 2, ["max"] = 5, + ["min"] = 3, }, - ["Shield"] = { - ["min"] = 2, + ["Dagger"] = { ["max"] = 5, + ["min"] = 3, }, - }, - ["363_SupportedByLifeLeech"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["6526_LifeRegenerationWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2841027131", - ["text"] = "Regenerate # Life per second while moving", + ["id"] = "scourge.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "scourge", }, - ["sign"] = "", + }, + ["2737_ChanceToGainOnslaughtOnKill"] = { ["Boots"] = { - ["min"] = 100, - ["max"] = 100, + ["max"] = 10, + ["min"] = 5, }, - }, - ["1260_CriticalStrikeMultiplier"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["1HWeapon"] = { - ["min"] = 25, - ["max"] = 30, + ["id"] = "scourge.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["2602_CorruptFish"] = { + ["2913_PoisonOnHit"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2451060005", - ["text"] = "You can catch Corrupted Fish", + ["id"] = "scourge.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "scourge", }, }, - ["3946_BleedingImmunity"] = { + ["2935_CannotBeSlowedBelowValue"] = { + ["Boots"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_3816382471", + ["text"] = "Action Speed cannot be modified to below #% base value", + ["type"] = "scourge", }, }, - ["346_DisplaySocketedGemsGetAddedFireDamage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572192375", - ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", - }, - ["specialCaseData"] = { + ["3019_WarcrySpeed"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 12, - }, - ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 12, - }, - }, - ["1697_FireDamageAsPortionOfDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "scourge.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "scourge", }, }, - ["1413_ChillEffectivenessOnSelf"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", + ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", - }, - ["2926_MovementSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "scourge.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "scourge", }, }, - ["8192_IncreasedAilmentEffectOnEnemies"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 5, + ["3118_UnholyMightOnKillPercentChance"] = { + ["1HWeapon"] = { ["max"] = 7, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 8, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 5, + ["Claw"] = { ["max"] = 7, - }, - ["AnyJewel"] = { ["min"] = 5, - ["max"] = 7, }, - }, - ["1933_CurseEffectOnYouJewel"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", + ["Wand"] = { + ["max"] = 7, + ["min"] = 5, }, ["sign"] = "", - }, - ["357_SupportedByCastOnStun"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 12, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1079148723", - ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", + ["id"] = "scourge.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["3172_MinionAttacksTauntOnHitChance"] = { + ["Belt"] = { + ["max"] = 19, + ["min"] = 11, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 12, - ["max"] = 12, - }, - }, - ["2000_AreaOfEffectDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3001376862", - ["text"] = "#% reduced Area Damage taken from Hits", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "scourge.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "scourge", }, }, - ["3110_CannotBePoisoned"] = { + ["3203_ChancetoGainPhasingOnKill"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "scourge", }, }, - ["1641_ReducedFreezeDuration"] = { + ["3296_BasePenetrateElementalResistances"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "scourge.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["963_IncreasedStrengthIntelligenceCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { + ["3303_AuraEffect"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - }, - ["2725_ElementalPenetration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "scourge", }, - ["AbyssJewel"] = { + }, + ["343_DisplaySocketedGemsGetAddedChaosDamage"] = { + ["Gloves"] = { + ["max"] = 22, ["min"] = 1, - ["max"] = 1, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "scourge.stat_411460446", + ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", + ["type"] = "scourge", }, - ["AnyJewel"] = { + }, + ["351_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { + ["Gloves"] = { + ["max"] = 22, ["min"] = 1, - ["max"] = 1, }, - }, - ["8383_IncreasedProjectileDamageForEachChain"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1923210508", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 20, - ["max"] = 25, + ["id"] = "scourge.stat_1647529598", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", + ["type"] = "scourge", }, }, - ["1007_PhysicalDamagePercent"] = { + ["3521_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "scourge.stat_3643913768", + ["text"] = "Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["361_SupportedByMultistrike"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2501237765", - ["text"] = "Socketed Gems are supported by Level # Multistrike", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { + ["388_DisplaySupportedByAddedColdDamage"] = { + ["Gloves"] = { + ["max"] = 22, ["min"] = 1, - ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - }, - ["3108_IncreasedAuraEffectDeterminationCorrupted"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", + ["id"] = "scourge.stat_4020144606", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["type"] = "scourge", }, + }, + ["3947_ChanceToAvoidBleeding"] = { ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["max"] = 40, + ["min"] = 26, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "scourge.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "scourge", }, + }, + ["3961_FlaskChanceToNotConsumeCharges"] = { ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["max"] = 8, + ["min"] = 5, }, - }, - ["138_LocalIncreaseSocketedColdGemLevelCorrupted"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "scourge.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["968_IncreasedDamage"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["4480_AttacksTauntOnHitChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 11, }, - ["Chest"] = { - ["min"] = 40, - ["max"] = 50, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 11, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 11, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 11, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "scourge.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "scourge", }, }, - ["1597_PowerChargeOnCriticalStrikeChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["4482_MonsterImpaleOnHit"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 7, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "scourge.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "scourge", + }, + }, + ["4537_BaseChanceToDealTripleDamage"] = { + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 5, + ["min"] = 3, + }, ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 7, ["min"] = 5, + }, + ["2HSword"] = { ["max"] = 7, + ["min"] = 5, }, ["2HWeapon"] = { + ["max"] = 7, ["min"] = 5, + }, + ["Bow"] = { ["max"] = 7, + ["min"] = 5, }, - }, - ["366_SupportedByFork"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2062753054", - ["text"] = "Socketed Gems are supported by Level # Fork", + ["Dagger"] = { + ["max"] = 5, + ["min"] = 3, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["1709_LifeRegenerationRatePercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", + ["id"] = "scourge.stat_2445189705", + ["text"] = "#% chance to deal Triple Damage", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 1.6, - ["max"] = 2, + }, + ["4541_GlobalCooldownRecovery"] = { + ["Belt"] = { + ["max"] = 6, + ["min"] = 3, }, ["sign"] = "", - }, - ["1801_CullingStrike"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2524254339", - ["text"] = "Culling Strike", + ["id"] = "scourge.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "scourge", + }, + }, + ["4558_ColdExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 7, }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 12, + ["min"] = 7, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 18, + ["min"] = 10, }, - }, - ["350_DisplaySocketedGemGetsElementalProliferation"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 12, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["Staff"] = { + ["max"] = 18, + ["min"] = 10, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - }, - ["1611_ChanceToAvoidFreezeAndChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", + ["id"] = "scourge.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1612_ChanceToAvoidFreezeAndChill"] = { - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, - }, - ["specialCaseData"] = { + ["4559_FireExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 7, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 7, }, - ["Chest"] = { + ["2HWeapon"] = { + ["max"] = 18, ["min"] = 10, - ["max"] = 20, - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 20, + ["Dagger"] = { + ["max"] = 12, + ["min"] = 7, }, - ["Amulet"] = { + ["Staff"] = { + ["max"] = 18, ["min"] = 10, - ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["Wand"] = { + ["max"] = 12, + ["min"] = 7, }, - }, - ["1182_AddedLightningDamageSpellsAndAttacks"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", - }, - ["Ring"] = { - ["min"] = 7.5, - ["max"] = 28.5, + ["id"] = "scourge.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2280_CurseOnHitDespair"] = { - ["specialCaseData"] = { + ["4560_LightningExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 7, }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 10, }, - }, - ["8606_ShockEffect"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 12, + ["min"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", + ["Staff"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 30, + ["Wand"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - }, - ["2445_DamageRemovedFromManaBeforeLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "scourge.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["4743_BlindEnemiesWhenHit"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 11, }, ["sign"] = "", - }, - ["923_ChanceToSuppressSpellsOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 6, + ["id"] = "scourge.stat_26216403", + ["text"] = "#% chance to Blind Enemies when they Hit you", + ["type"] = "scourge", }, }, - ["1581_IncreasedMaximumPowerCharges"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 1, + ["4849_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { + ["Amulet"] = { ["max"] = 1, - }, - ["Helmet"] = { ["min"] = 1, - ["max"] = 1, }, - ["sign"] = "+", - }, - ["137_LocalIncreaseSocketedFireGemLevelCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "scourge.stat_736820284", + ["text"] = "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["8365_IncreasedAuraEffectPrideCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, - }, + ["5077_ChanceToIntimidateOnHit"] = { ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["max"] = 12, + ["min"] = 7, }, - }, - ["1183_IncreasedAttackSpeed"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "scourge.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["5085_ChanceToUnnerveOnHit"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 10, + ["specialCaseData"] = { }, - }, - ["1615_AvoidShock"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["id"] = "scourge.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["type"] = "scourge", }, - ["AbyssJewel"] = { - ["min"] = 20, + }, + ["5121_ChanceToChillAttackersOnBlock"] = { + ["Shield"] = { ["max"] = 25, - }, - ["specialCaseData"] = { + ["min"] = 14, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, - }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, - }, - }, - ["1994_ReducedReservationForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", + ["id"] = "scourge.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["3097_IncreasedAuraEffectAngerCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["5431_DamageTakenGainedAsLife"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, - }, - }, - ["2201_PhysicalDamageTakenAsLightningPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "scourge", }, }, - ["3107_IncreasedAuraEffectHatredCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["5455_DaytimeFishSize"] = { + ["FishingRod"] = { + ["max"] = 30, + ["min"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, - }, - }, - ["400_SocketedSkillsManaMultiplier"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", - }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 90, - ["max"] = 90, - }, - ["Chest"] = { - ["min"] = 95, - ["max"] = 95, - }, - }, - ["1283_ReducedExtraDamageFromCrits"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_1771018579", + ["text"] = "#% increased Size of Fish caught during Daytime", + ["type"] = "scourge", }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 50, - ["max"] = 50, + }, + ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 8, }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["Belt"] = { + ["max"] = 24, + ["min"] = 8, }, - }, - ["1341_MaximumLifeIncreasePercent"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 24, + ["min"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["Ring"] = { + ["max"] = 24, + ["min"] = 8, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 6, - ["max"] = 8, - }, - }, - ["362_SupportedByProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "scourge.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["5049_GainEnduranceChargeOnStunChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1582887649", - ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", - }, - ["specialCaseData"] = { + ["5625_ReducedElementalReflectTaken"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 41, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 7, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, - }, - }, - ["2770_ChargeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2839036860", - ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["id"] = "scourge.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2377_FrenzyChargeOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - }, - ["specialCaseData"] = { + ["5639_ElusiveEffect"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 11, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 9, - ["max"] = 11, + ["tradeMod"] = { + ["id"] = "scourge.stat_240857668", + ["text"] = "#% increased Elusive Effect", + ["type"] = "scourge", }, }, - ["1640_ReducedShockDuration"] = { - ["specialCaseData"] = { + ["5796_FasterBleedDamage"] = { + ["1HAxe"] = { + ["max"] = 13, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_99927264", - ["text"] = "#% reduced Shock Duration on you", + ["1HMace"] = { + ["max"] = 13, + ["min"] = 4, }, - ["sign"] = "", - }, - ["2497_ProjectileDamageTaken"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 13, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1425651005", - ["text"] = "#% reduced Damage taken from Projectile Hits", + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 4, }, - ["sign"] = "", - ["Shield"] = { + ["2HAxe"] = { + ["max"] = 13, ["min"] = 4, - ["max"] = 6, }, - }, - ["3130_ColdDamageTakenPercentage"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 13, + ["min"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", + ["2HSword"] = { + ["max"] = 13, + ["min"] = 4, }, - ["Chest"] = { + ["2HWeapon"] = { + ["max"] = 13, ["min"] = 4, - ["max"] = 6, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 8, }, ["sign"] = "", - }, - ["160_LocalSocketedWarcryGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1672793731", - ["text"] = "# to Level of Socketed Warcry Gems", + ["id"] = "scourge.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["1231_CriticalStrikeChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["5797_FasterPoisonDamage"] = { + ["1HSword"] = { + ["max"] = 13, + ["min"] = 4, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 4, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["2HSword"] = { + ["max"] = 13, + ["min"] = 4, }, - }, - ["5481_IncreasedAuraEffectMalevolenceCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 4, }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["Claw"] = { + ["max"] = 9, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 9, + ["min"] = 4, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, - }, - }, - ["1843_AddedFireDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 54, + ["id"] = "scourge.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "scourge", }, }, - ["2872_ChanceToTakeCriticalStrike"] = { + ["6097_GuardSkillCooldownRecovery"] = { + ["Belt"] = { + ["max"] = 19, + ["min"] = 14, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_165218607", - ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["id"] = "scourge.stat_3150300096", + ["text"] = "Guard Skills have #% increased Cooldown Recovery Rate", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1571_MaximumEnduranceCharges"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["6391_ImpaleEffect"] = { + ["1HAxe"] = { + ["max"] = 18, + ["min"] = 7, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 7, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["max"] = 18, + ["min"] = 7, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 7, }, - }, - ["1724_MonsterConvertPhysicalDamageToLightning"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["2HAxe"] = { + ["max"] = 18, + ["min"] = 7, }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, + ["2HMace"] = { + ["max"] = 18, + ["min"] = 7, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 18, + ["min"] = 7, }, - ["sign"] = "", - ["1HWeapon"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["Bow"] = { + ["max"] = 18, ["min"] = 10, - ["max"] = 20, }, - }, - ["2728_LightningResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["Claw"] = { + ["max"] = 18, + ["min"] = 7, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Dagger"] = { + ["max"] = 18, + ["min"] = 7, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_298173317", + ["text"] = "#% increased Impale Effect", + ["type"] = "scourge", }, - ["AnyJewel"] = { - ["min"] = 1, + }, + ["6475_LifeFlaskPassiveChargeGain"] = { + ["Belt"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["2840_LifeLeechRatePerCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3815042054", - ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", + ["id"] = "scourge.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1563_ProjectileSpeed"] = { + ["7008_NearbyEnemyChaosDamageResistance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - }, - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 8, + ["id"] = "scourge.stat_1902595112", + ["text"] = "Nearby Enemies have #% to Chaos Resistance", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1000_SpellDamage"] = { + ["7009_NearbyEnemyColdDamageResistance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 60, + ["id"] = "scourge.stat_2674336304", + ["text"] = "Nearby Enemies have #% to Cold Resistance", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1639_ReducedChillDuration"] = { + ["7011_NearbyEnemyFireDamageResistance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "scourge.stat_3914021960", + ["text"] = "Nearby Enemies have #% to Fire Resistance", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1161_ChaosDamage"] = { + ["7013_NearbyEnemyLightningDamageResistance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "scourge.stat_1849749435", + ["text"] = "Nearby Enemies have #% to Lightning Resistance", + ["type"] = "scourge", }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 11, + }, + ["7015_NearbyEnemyPhysicalDamageTaken"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", - }, - ["365_SupportedByCriticalMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", - }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 14, + ["id"] = "scourge.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1720_ConvertPhysicalToFire"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - }, + ["7190_GlobalMaimOnHit"] = { ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["max"] = 12, + ["min"] = 7, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, - }, - }, - ["2835_VaalSkillDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", + ["id"] = "scourge.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1995_PhysicalAttackDamageTaken"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", + ["7208_ManaFlaskPassiveChargeGain"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "-", - ["Amulet"] = { - ["min"] = 10, - ["max"] = 17, + ["tradeMod"] = { + ["id"] = "scourge.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["type"] = "scourge", }, - ["Shield"] = { + }, + ["8192_IncreasedAilmentEffectOnEnemies"] = { + ["Boots"] = { + ["max"] = 18, ["min"] = 10, - ["max"] = 17, }, - }, - ["1443_ColdDamageLifeLeechPermyriad"] = { - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "scourge.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["8326_ReducedPhysicalReflectTaken"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 41, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["tradeMod"] = { + ["id"] = "scourge.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "scourge", }, }, - ["3129_LightningDamageTaken"] = { + ["8390_ProjectilesSplitCount"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "scourge.stat_3464380325", + ["text"] = "Projectiles Split towards # targets", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["356_SupportedByCastOnCrit"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 12, + ["8501_ChaosResistancePenetration"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 12, - ["max"] = 12, + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["5153_ChillEffect"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 30, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", - }, - ["354_SupportedByBlind"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", + ["id"] = "scourge.stat_4264312960", + ["text"] = "Damage Penetrates #% Chaos Resistance", + ["type"] = "scourge", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + }, + ["8603_ChanceToShockAttackersOnBlock"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 14, }, ["sign"] = "", - }, - ["145_LocalIncreaseSocketedProjectileLevelCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", + ["id"] = "scourge.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["9283_ResoluteTechnique"] = { - ["specialCaseData"] = { + ["8636_BrandDuration"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3943945975", - ["text"] = "Resolute Technique", + ["Boots"] = { + ["max"] = 20, + ["min"] = 12, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_3089482869", + ["text"] = "Brand Skills have #% increased Duration", + ["type"] = "scourge", }, }, - ["359_SupportedByStun"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_689720069", - ["text"] = "Socketed Gems are supported by Level # Stun", + ["8641_BrandAttachmentRange"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 6, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "scourge.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "scourge", }, }, - ["1642_ReducedIgniteDurationOnSelf"] = { + ["8765_SpellsHinderOnHitChance"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "scourge.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2842_ManaLeechRatePerCorrupteditem"] = { + ["8827_StrengthAppliesToFishingReelSpeed"] = { + ["FishingRod"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2679819855", - ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", + ["id"] = "scourge.stat_4039414411", + ["text"] = "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2726_FireResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - }, - ["AbyssJewel"] = { - ["min"] = 1, + ["9232_Acrobatics"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "scourge", }, }, - ["1576_MaximumFrenzyCharges"] = { - ["Gloves"] = { - ["min"] = 1, + ["9233_PerfectAgony"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["id"] = "scourge.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "scourge", + }, + }, + ["9234_AncestralBond"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "scourge", }, - ["Boots"] = { - ["min"] = 1, + }, + ["9235_AvatarOfFire"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { }, - }, - ["4825_CorruptedBloodImmunity"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "scourge.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "scourge", }, - ["AbyssJewel"] = { - ["min"] = 1, + }, + ["9237_BloodMagic"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "scourge", }, - ["AnyJewel"] = { - ["min"] = 1, + }, + ["9238_CallToArms"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["4044_PhysicalDamageReductionWhileNotMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", + ["id"] = "scourge.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "scourge", }, + }, + ["9240_Conduit"] = { ["Chest"] = { - ["min"] = 3, - ["max"] = 5, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["139_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "scourge.stat_1994392904", + ["text"] = "Conduit", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["1555_AdditionalArrowChain"] = { + ["9242_CrimsonDance"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1001077145", - ["text"] = "Arrows Chain # times", + ["id"] = "scourge.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "scourge", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 1, + }, + ["9244_DivineShield"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["374_DisplaySocketedGemsGetFasterCast"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "scourge.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2836_DamageWhileDead"] = { + ["9245_EldritchBattery"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3582580206", - ["text"] = "#% increased Damage while Dead", + ["id"] = "scourge.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1331_MaximumEnergyShieldPercent"] = { + ["9246_ElementalEquilibrium"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "scourge.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["2596_FishingRarity"] = { + ["9247_ElementalOverload"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["id"] = "scourge.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["3947_ChanceToAvoidBleeding"] = { + ["9249_EternalYouth"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["id"] = "scourge.stat_1308467455", + ["text"] = "Eternal Youth", + ["type"] = "scourge", }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + }, + ["924_ChanceToSuppressSpells"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["144_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", + ["id"] = "scourge.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["9164_YouCannotBeHindered"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_721014846", - ["text"] = "You cannot be Hindered", - }, - ["AbyssJewel"] = { - ["min"] = 1, + ["9251_GhostDance"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "scourge", }, - ["AnyJewel"] = { - ["min"] = 1, + }, + ["9252_KeystoneGhostReaver"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["1859_AddedLightningDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 19.5, - ["max"] = 57, + ["id"] = "scourge.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "scourge", }, }, - ["2723_ArmourPenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["9253_GlancingBlows"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "scourge.stat_4266776872", + ["text"] = "Glancing Blows", + ["type"] = "scourge", }, }, - ["1410_MaximumResistances"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["9254_HexMaster"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "scourge.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "scourge", }, + }, + ["9256_Impaler"] = { ["Chest"] = { - ["min"] = 1, ["max"] = 1, - }, - }, - ["360_SupportedByAccuracy"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 12, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "scourge.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "scourge", }, }, - ["1613_AvoidIgnite"] = { - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["9257_IronReflexes"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, - }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["id"] = "scourge.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "scourge", }, + }, + ["9258_LetheShade"] = { ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["max"] = 1, + ["min"] = 1, }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 20, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "scourge.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "scourge", }, }, - ["2016_TrapsAllowed"] = { + ["9259_Magebane"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2224292784", - ["text"] = "Can have up to # additional Trap placed at a time", + ["id"] = "scourge.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "scourge", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 1, + }, + ["9260_ManaShield"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["1642_ReducedBurnDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "scourge.stat_373964381", + ["text"] = "Mind Over Matter", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["919_MonsterBlock"] = { + ["9261_MinionInstability"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "scourge.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1558_AdditionalArrowPierce"] = { + ["9262_TheAgnostic"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["id"] = "scourge.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "scourge", }, - ["2HWeapon"] = { - ["min"] = 1, + }, + ["9263_PainAttunement"] = { + ["Chest"] = { ["max"] = 1, + ["min"] = 1, }, - }, - ["1698_ColdDamageAsPortionOfDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "scourge.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "scourge", }, }, - ["1362_IncreasedItemQuantity"] = { + ["9264_PointBlank"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "scourge.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "scourge", }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["9266_MonsterNemesisOndarsGuile"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["Belt"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "scourge.stat_2606808909", + ["text"] = "Arrow Dancing", + ["type"] = "scourge", }, }, - ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["9268_ZealotsOath"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", - }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.8, + ["id"] = "scourge.stat_632761194", + ["text"] = "Zealot's Oath", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["1991_ReservationEfficiencyForJewel"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["9269_Runebinder"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, - }, - }, - ["961_IncreasedStrengthIntelligenceCorrupted"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "scourge.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "scourge", }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["9270_SacredBastion"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "scourge.stat_3868073741", + ["text"] = "Imbalanced Guard", + ["type"] = "scourge", }, }, - ["156_LocalIncreaseSocketedVaalGemLevel"] = { - ["Gloves"] = { + ["9273_Solipsism"] = { + ["Chest"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1170386874", - ["text"] = "# to Level of Socketed Vaal Gems", + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "scourge.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "scourge", }, + }, + ["9275_IronGrip"] = { ["Chest"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 2, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "scourge.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "scourge", }, - ["Boots"] = { + }, + ["9276_SupremeEgo"] = { + ["Chest"] = { + ["max"] = 1, ["min"] = 1, - ["max"] = 2, }, - }, - ["3042_AttackSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "scourge.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "scourge", }, }, - ["2203_PhysicalDamageTakenAsChaos"] = { + ["9277_UnwaveringStance"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "scourge", }, }, - ["143_IncreaseSocketedDurationGemLevel"] = { + ["9278_VaalPact"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2115168758", - ["text"] = "# to Level of Socketed Duration Gems", + ["id"] = "scourge.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "scourge", }, - ["sign"] = "+", }, - ["355_SupportedByMeleeSplash"] = { + ["9279_VersatileCombatant"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "scourge.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "scourge", }, - ["sign"] = "", }, - ["1866_AddedChaosDamageToBowAttacksCorrupted"] = { + ["9280_WickedWard"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 30, - ["max"] = 36, + ["id"] = "scourge.stat_1109343199", + ["text"] = "Wicked Ward", + ["type"] = "scourge", }, }, - ["1331_GlobalEnergyShieldPercent"] = { + ["9281_WindDancer"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 10, + ["id"] = "scourge.stat_4170338365", + ["text"] = "Wind Dancer", + ["type"] = "scourge", }, }, - ["3104_IncreasedAuraEffectGraceCorrupted"] = { + ["9283_ResoluteTechnique"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", + ["id"] = "scourge.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "scourge", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + }, + ["9284_IronWill"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "scourge.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "scourge", }, }, - ["1738_MinionDamage"] = { - ["BaseJewel"] = { + ["936_AdditionalSpellBlock"] = { + ["Shield"] = { + ["max"] = 9, ["min"] = 4, - ["max"] = 5, + }, + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "scourge.stat_19803471", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "scourge", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 20, + }, + ["954_StrengthImplicit"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 20, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["1HMace"] = { + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 20, }, - }, - ["5262_IncreasedCriticalStrikeUnderFlaskEffect"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 35, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2898434123", - ["text"] = "#% increased Critical Strike Chance during any Flask Effect", + ["2HSword"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 35, - ["max"] = 40, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, }, - }, - ["4045_AddedArmourWhileStationary"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2551779822", - ["text"] = "# Armour while stationary", + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "+", ["Boots"] = { - ["min"] = 35, - ["max"] = 322, - }, - }, - ["1560_AdditionalArrows"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, }, - }, - ["1388_AllResistancesCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, }, ["Ring"] = { - ["min"] = 14, - ["max"] = 16, + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "+", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 14, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "scourge.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "scourge", }, }, - ["369_SupportedByReducedMana"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1866911844", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["955_DexterityImplicit"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["max"] = 35, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 20, }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["max"] = 35, + ["min"] = 20, }, - }, - ["243_SupportedByLifeGainOnHit"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2032386732", - ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Bow"] = { + ["max"] = 35, + ["min"] = 20, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, }, - }, - ["1699_LightningDamageAsPortionOfDamage"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 35, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["Dagger"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["max"] = 35, + ["min"] = 20, }, - }, - ["2243_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3944782785", - ["text"] = "#% increased Attack Damage against Bleeding Enemies", + ["Ring"] = { + ["max"] = 35, + ["min"] = 20, }, + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", + ["tradeMod"] = { + ["id"] = "scourge.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "scourge", + }, + }, + ["956_IntelligenceImplicit"] = { + ["1HMace"] = { + ["max"] = 35, + ["min"] = 20, + }, ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 40, + ["max"] = 35, + ["min"] = 20, }, ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 40, + ["max"] = 35, + ["min"] = 20, }, - }, - ["1218_IncreasedCastSpeedFishing"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - }, - ["2235_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 35, + ["min"] = 20, }, - ["sign"] = "", - ["1HWeapon"] = { + ["Dagger"] = { + ["max"] = 35, ["min"] = 20, - ["max"] = 20, }, - ["2HWeapon"] = { + ["Gloves"] = { + ["max"] = 35, ["min"] = 20, - ["max"] = 20, }, - }, - ["4875_CastSpeedDuringFlaskEffect"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", + ["id"] = "scourge.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "scourge", + }, + }, + ["961_PercentageStrength"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["specialCaseData"] = { }, - }, - ["1565_MovementVelocity"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "scourge.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "scourge", }, - ["specialCaseData"] = { + }, + ["962_PercentageDexterity"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 10, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 2, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "scourge.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "scourge", }, }, - ["2200_PhysicalDamageTakenAsCold"] = { + ["963_PercentageIntelligence"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "scourge", }, }, - ["8757_DodgeSpellHitsWhileMoving"] = { + }, + ["Synthesis"] = { + ["1000_SpellDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2907896585", - ["text"] = "#% chance to Suppress Spell Damage while moving", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 6, - ["max"] = 10, }, }, - ["149_LocalIncreaseSocketedAuraLevelCorrupted"] = { + ["1003_SpellDamageWithStaff"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", ["type"] = "implicit", - ["id"] = "implicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", }, - ["sign"] = "+", }, - ["1147_AddedFireDamageSpellsAndAttacks"] = { + ["1005_SpellDamageWithShield"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", ["type"] = "implicit", - ["id"] = "implicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 25.5, }, - ["sign"] = "", }, - ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["1006_SpellDamageWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - }, - ["specialCaseData"] = { }, + }, + ["1007_PhysicalDamagePercent"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 24, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", }, }, - ["371_SupportedByFortify"] = { + ["1008_LocalPhysicalDamagePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, }, - ["sign"] = "", }, - ["1833_AddedPhysicalDamageToBowAttacksCorrupted"] = { + ["1010_MeleeDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 4.5, - ["max"] = 15.5, }, }, - ["1647_AreaOfEffect"] = { - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 5, - }, + ["1031_ColdDamageOverTimeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, - }, ["tradeMod"] = { + ["id"] = "implicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, - }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 30, - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 10, }, }, - ["244_SocketedGemsSupportedByLifetap"] = { + ["1034_ChaosDamageOverTimeMultiplier"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", ["type"] = "implicit", - ["id"] = "implicit.stat_1079239905", - ["text"] = "Socketed Gems are Supported by Level # Lifetap", - }, - ["specialCaseData"] = { }, + }, + ["1050_LocalPhysicalDamage"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, - }, - ["3102_IncreasedAuraEffectWrathCorrupted"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["specialCaseData"] = { }, + }, + ["1050_LocalPhysicalDamageTwoHanded"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", }, }, - ["8384_ProjectileDamagePerEnemyPierced"] = { + ["1077_AxeIncreasedPhysicalDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", ["type"] = "implicit", - ["id"] = "implicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 10, }, }, - ["1438_FireDamageLifeLeechPermyriad"] = { - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["1081_StaffIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["specialCaseData"] = { }, + }, + ["1089_ClawIncreasedPhysicalDamage"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["tradeMod"] = { + ["id"] = "implicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "implicit", }, }, - ["3118_UnholyMightOnKillPercentChance"] = { + ["1095_DaggerIncreasedPhysicalDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", ["type"] = "implicit", - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, }, - ["sign"] = "", }, - ["1662_SkillEffectDuration"] = { + ["1101_MaceIncreasedPhysicalDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 15, }, }, - ["1644_BurnDamage"] = { + ["1107_BowIncreasedPhysicalDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", ["type"] = "implicit", - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 40, }, - ["sign"] = "", }, - ["2727_ColdResistancePenetration"] = { + ["1112_SwordIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { }, + }, + ["1119_WandIncreasedPhysicalDamage"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "implicit", }, }, - ["152_LocalIncreaseSocketedCurseLevelCorrupted"] = { + ["1131_FireDamagePercentage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", }, - ["sign"] = "+", }, - ["2004_ChaosDamageTakenPercentage"] = { + ["1133_GlobalAddedFireDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, }, - ["sign"] = "", }, - ["1292_ImmuneToKnockback"] = { + ["1136_LocalFireDamage"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["924_ChanceToSuppressSpells"] = { + ["1136_LocalFireDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, }, + }, + ["1140_ColdDamagePercentage"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 4, - ["max"] = 9, - }, - }, - ["1409_ChaosResistance"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", }, + }, + ["1142_GlobalAddedColdDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 4, - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", }, }, - ["1559_AdditionalProjectilesCorrupted"] = { + ["1145_LocalColdDamage"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["9264_PointBlank"] = { + ["1145_LocalColdDamageTwoHand"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2896346114", - ["text"] = "Point Blank", - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["939_BlockWhileDualWielding"] = { + ["1151_LightningDamagePercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", }, + }, + ["1153_GlobalAddedLightningDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 6, - }, - }, - ["4502_AvoidMaimChance"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1126826428", - ["text"] = "You cannot be Maimed", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, }, + }, + ["1156_LocalLightningDamage"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1618_AvoidStun"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, - }, - ["specialCaseData"] = { }, + }, + ["1156_LocalLightningDamageTwoHand"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", }, }, - ["1447_LightningDamageLifeLeechPermyriad"] = { - ["2HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["1159_IncreasedChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - }, - ["1HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["specialCaseData"] = { }, + }, + ["1160_GlobalAddedChaosDamage"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["specialCaseData"] = { }, - }, - ["2834_ImmuneToSilence"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", ["type"] = "implicit", - ["id"] = "implicit.stat_1654414582", - ["text"] = "You cannot be Cursed with Silence", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, }, + }, + ["1163_LocalChaosDamage"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", }, }, - ["1615_ReducedShockChance"] = { + ["1163_LocalChaosDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", }, + }, + ["1177_SpellAddedFireDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1177_SpellAddedFireDamageTwoHand"] = { ["sign"] = "", - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", }, }, - ["2595_FishingQuantity"] = { + ["1178_SpellAddedColdDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "implicit", - ["id"] = "implicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", }, - ["sign"] = "", }, - ["256_SupportedByOnslaught"] = { + ["1178_SpellAddedColdDamageTwoHand"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "implicit", - ["id"] = "implicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, }, - ["sign"] = "", }, - ["1616_ChanceToAvoidPoison"] = { + ["1179_SpellAddedLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, }, + }, + ["1179_SpellAddedLightningDamageTwoHand"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1183_IncreasedAttackSpeed"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", }, }, - ["919_BlockPercent"] = { + ["1186_LocalIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, ["tradeMod"] = { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", }, + }, + ["1193_AxeIncreasedAttackSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, - }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9212_IncreasedAuraEffectZealotryCorrupted"] = { + ["1194_StaffIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", ["type"] = "implicit", - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, }, + }, + ["1195_ClawIncreasedAttackSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "implicit", + }, + }, + ["1196_DaggerIncreasedAttackSpeed"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "implicit", }, }, - ["5936_GainFrenzyChargeAfterSpending200Mana"] = { + ["1197_MaceIncreasedAttackSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", ["type"] = "implicit", - ["id"] = "implicit.stat_3868549606", - ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2839_ChaosDamagePerCorruptedItem"] = { + ["1198_BowIncreasedAttackSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "implicit", - ["id"] = "implicit.stat_4004011170", - ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", }, - ["sign"] = "", }, - ["963_IncreasedIntelligenceDexterityCorrupted"] = { + ["1199_SwordIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1200_WandIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "implicit", }, + }, + ["1205_IncreasedAccuracy"] = { + ["sign"] = "+", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["1206_IncreasedAccuracyPercent"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", }, }, - ["1148_AddedColdDamageToSpellsAndAttacks"] = { + ["1206_LocalAccuracyRatingIncrease"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 22, }, - ["sign"] = "", }, - ["5292_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { + ["1210_AxeIncreasedAccuracyRating"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2538120572", + ["text"] = "#% increased Accuracy Rating with Axes", ["type"] = "implicit", - ["id"] = "implicit.stat_240289863", - ["text"] = "#% to Critical Strike Multiplier during any Flask Effect", - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, - ["max"] = 25, }, }, - ["2275_CurseOnHitLevelVulnerability"] = { + ["1211_StaffIncreasedAccuracyRating"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1617235962", + ["text"] = "#% increased Accuracy Rating with Staves", ["type"] = "implicit", - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["1212_ClawIncreasedAccuracyRating"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1297965523", + ["text"] = "#% increased Accuracy Rating with Claws", ["type"] = "implicit", - ["id"] = "implicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", }, - ["sign"] = "+", }, - ["1722_ConvertPhysicalToCold"] = { + ["1213_DaggerIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2054715690", + ["text"] = "#% increased Accuracy Rating with Daggers", ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, }, + }, + ["1214_MaceIncreasedAccuracyRating"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_3208450870", + ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + ["type"] = "implicit", }, }, - ["962_IncreasedIntelligenceDexterityCorrupted"] = { + ["1215_BowIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, }, + }, + ["1216_SwordIncreasedAccuracyRating"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2090868905", + ["text"] = "#% increased Accuracy Rating with Swords", + ["type"] = "implicit", + }, + }, + ["1217_WandIncreasedAccuracyRating"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_2150183156", + ["text"] = "#% increased Accuracy Rating with Wands", + ["type"] = "implicit", }, }, ["1218_IncreasedCastSpeed"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", ["id"] = "implicit.stat_2891184298", ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["1219_CastSpeedWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "implicit", }, + }, + ["1220_CastSpeedWithShield"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "implicit", + }, + }, + ["1221_CastSpeedWithStaff"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "implicit", }, }, - ["2281_CurseOnHitEnfeeble"] = { + ["1230_SpellCriticalStrikeChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "implicit", - ["id"] = "implicit.stat_1625819882", - ["text"] = "Curse Enemies with Enfeeble on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2719_ImmunityToBlind"] = { + ["1231_CriticalStrikeChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["2737_ChanceToGainOnslaughtOnKill"] = { + ["1236_LocalCriticalStrikeChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "implicit", - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, }, - ["sign"] = "", }, - ["933_BlockingBlocksSpells"] = { + ["1260_CriticalStrikeMultiplier"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", }, + }, + ["1264_DaggerCriticalStrikeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_3998601568", + ["text"] = "#% to Critical Strike Multiplier with Daggers", + ["type"] = "implicit", }, }, - ["1366_IncreasedItemRarity"] = { + ["1265_MaceCriticalStrikeMultiplier"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_458899422", + ["text"] = "#% to Critical Strike Multiplier with Maces or Sceptres", ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 30, }, + }, + ["1266_AxeCriticalStrikeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_4219746989", + ["text"] = "#% to Critical Strike Multiplier with Axes", + ["type"] = "implicit", }, }, - ["1606_CannotBeIgnited"] = { + ["1267_BowCriticalStrikeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", ["type"] = "implicit", - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1851_AddedColdDamageToBowAttacksCorrupted"] = { + ["1268_SwordCriticalStrikeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_3114492047", + ["text"] = "#% to Critical Strike Multiplier with Swords", ["type"] = "implicit", - ["id"] = "implicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 13, - ["max"] = 48.5, }, }, - ["987_DamageOverTime"] = { + ["1269_WandCriticalStrikeMultiplier"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1241396104", + ["text"] = "#% to Critical Strike Multiplier with Wands", ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - }, - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 60, }, - ["sign"] = "", }, - ["3109_IncreasedAuraEffectDisciplineCorrupted"] = { + ["1270_ClawCriticalStrikeMultiplier"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2811834828", + ["text"] = "#% to Critical Strike Multiplier with Claws", ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + }, + ["1271_StaffCriticalStrikeMultiplier"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1474913037", + ["text"] = "#% to Critical Strike Multiplier with Staves", + ["type"] = "implicit", }, + }, + ["1283_ReducedExtraDamageFromCrits"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + }, + ["1288_StunThresholdReduction"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", }, }, - ["6069_AddedEvasionWhileMovingCorrupted"] = { + ["129_LocalIncreaseSocketedStrengthGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_3825877290", - ["text"] = "# to Global Evasion Rating while moving", }, + }, + ["130_LocalIncreaseSocketedDexterityGemLevel"] = { ["sign"] = "+", - ["Boots"] = { - ["min"] = 35, - ["max"] = 322, + ["specialCaseData"] = { }, - }, - ["961_IncreasedDexterityStrengthCorrupted"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, }, + }, + ["1311_LocalPhysicalDamageReductionRating"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["2207_PercentDamageGoesToMana"] = { ["tradeMod"] = { + ["id"] = "implicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 6, - }, - ["specialCaseData"] = { }, + }, + ["1312_GlobalPhysicalDamageReductionRatingPercent"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 3, - ["max"] = 6, + ["tradeMod"] = { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", }, }, - ["2274_CurseOnHitLevelTemporalChains"] = { + ["1313_LocalPhysicalDamageReductionRatingPercent"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { + ["id"] = "implicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_3433724931", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["367_SupportedByWeaponElementalDamage"] = { + ["1319_LocalEvasionRating"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { + ["id"] = "implicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", - }, - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 12, }, - ["sign"] = "", }, - ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { + ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", - }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.8, }, - ["sign"] = "+", }, - ["1804_HitsCauseMonsterFlee"] = { + ["1320_GlobalEvasionRatingPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "implicit", - ["id"] = "implicit.stat_3181974858", - ["text"] = "#% chance to Cause Monsters to Flee", - }, - ["specialCaseData"] = { }, + }, + ["1321_LocalEvasionRatingIncreasePercent"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "implicit", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["1327_IncreasedEvasionRatingPerFrenzyCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", ["type"] = "implicit", - ["id"] = "implicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { }, + }, + ["1328_EnergyShield"] = { ["sign"] = "+", - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", }, }, - ["2277_CurseOnHitLevelElementalWeakness"] = { + ["1329_LocalEnergyShield"] = { + ["sign"] = "+", ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { + ["id"] = "implicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, }, }, - ["1512_ManaGainPerTarget"] = { + ["132_LocalIncreaseSocketedGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { + ["id"] = "implicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", ["type"] = "implicit", - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 6, }, - ["sign"] = "", }, - ["2193_EnemiesCantLifeLeech"] = { + ["1330_LocalEnergyShieldPercent"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { + ["id"] = "implicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", ["type"] = "implicit", - ["id"] = "implicit.stat_4293455942", - ["text"] = "Enemies Cannot Leech Life From you", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, }, }, - }, - ["Scourge"] = { - ["1634_SelfStatusAilmentDuration"] = { + ["1331_GlobalEnergyShieldPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", }, + }, + ["1332_EnergyShieldDelay"] = { ["sign"] = "", - ["Boots"] = { - ["min"] = 17, - ["max"] = 25, + ["specialCaseData"] = { }, - }, - ["1349_IncreasedMana"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["Ring"] = { - ["min"] = 23, - ["max"] = 40, + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", }, + }, + ["1335_EnergyShieldRegeneration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 23, - ["max"] = 40, - }, - ["Belt"] = { - ["min"] = 23, - ["max"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", }, }, - ["1519_MaximumManaOnKillPercent"] = { + ["1338_EnergyShieldRecoveryRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["1339_IncreasedLife"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2271_TemporalChainsOnHit"] = { + ["1341_MaximumLifeIncreasePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4139135963", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", }, }, - ["9251_GhostDance"] = { + ["1344_LifeRegeneration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3590128077", - ["text"] = "Ghost Dance", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", }, }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["1346_LifeRegenerationPercentPerEnduranceCharge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_150668988", - ["text"] = "# to Level of Socketed Trap or Mine Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1352_AddedManaRegeneration"] = { + ["1348_LifeRecoveryRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - }, - ["Helmet"] = { - ["min"] = 0.8, - ["max"] = 9.2, + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9278_VaalPact"] = { + ["1349_IncreasedMana"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2257118425", - ["text"] = "Vaal Pact", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", }, }, - ["351_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { + ["1350_MaximumManaIncreasePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1647529598", - ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1260_CriticalStrikeMultiplier"] = { + ["1351_BaseManaRegeneration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 25, + ["id"] = "implicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1405_LightningResistance"] = { - ["Quiver"] = { - ["min"] = 18, - ["max"] = 35, - }, + ["1352_AddedManaRegeneration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 18, - ["max"] = 35, - }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["Amulet"] = { - ["min"] = 18, - ["max"] = 35, + ["id"] = "implicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "implicit", }, }, - ["1206_IncreasedAccuracyPercent"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 20, + ["1354_ManaRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Quiver"] = { - ["min"] = 11, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1758_ProjectileDamage"] = { + ["1356_ManaRecoveryRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 15, + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8192_IncreasedAilmentEffectOnEnemies"] = { + ["1362_ItemFoundQuantityIncrease"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 18, + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", }, }, ["1366_ItemFoundRarityIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3917489142", + ["id"] = "implicit.stat_3917489142", ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", }, - ["specialCaseData"] = { - }, + }, + ["1373_ExperienceIncrease"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "implicit", }, }, - ["1565_MovementVelocity"] = { + ["137_LocalIncreaseSocketedFireGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2250533757", - ["text"] = "#% increased Movement Speed", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 15, + ["id"] = "implicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", + ["type"] = "implicit", }, }, - ["169_IncreaseSocketedSupportGemQuality"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", - }, - ["2HWeapon"] = { - ["min"] = 9, - ["max"] = 12, - }, - ["specialCaseData"] = { - }, + ["1388_AllResistances"] = { ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 12, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", }, }, - ["1641_ReducedFreezeDuration"] = { + ["138_LocalIncreaseSocketedColdGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 40, + ["id"] = "implicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1795_ChanceToShock"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1538773178", - ["text"] = "#% chance to Shock", - }, + ["1392_MaximumFireResistanceImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + ["type"] = "implicit", }, }, - ["2654_MinionAttackAndCastSpeed"] = { + ["1394_FireResistance"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["7013_NearbyEnemyLightningDamageResistance"] = { + ["1398_MaximumColdResistanceImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1849749435", - ["text"] = "Nearby Enemies have #% to Lightning Resistance", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["1693_MineLayingSpeed"] = { + ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 15, + ["id"] = "implicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8636_BrandDuration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3089482869", - ["text"] = "Brand Skills have #% increased Duration", - }, + ["1400_ColdResistance"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, - }, - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, - }, - }, - ["1545_TotemDuration"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2357996603", - ["text"] = "#% increased Totem Duration", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", }, + }, + ["1403_MaximumLightningResistanceImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, - }, - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + ["type"] = "implicit", }, }, - ["1350_MaximumManaIncreasePercent"] = { + ["1405_LightningResistance"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", }, + }, + ["1408_MaximumChaosResistanceImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + ["type"] = "implicit", }, }, - ["2935_CannotBeSlowedBelowValue"] = { + ["1409_ChaosResistance"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3816382471", - ["text"] = "Action Speed cannot be modified to below #% base value", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 70, - ["max"] = 79, + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", }, }, ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2675603254", + ["id"] = "implicit.stat_2675603254", ["text"] = "# to Level of Socketed Chaos Gems", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", }, - ["9232_Acrobatics"] = { + ["1410_MaximumElementalResistanceImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_383557755", - ["text"] = "Acrobatics", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "implicit", }, }, - ["1612_ChanceToAvoidFreezeAndChill"] = { + ["1417_LifeLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1392_MaximumFireResist"] = { + ["1419_LifeLeechLocalPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "implicit", }, }, - ["956_IntelligenceImplicit"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, - }, + ["1432_LifeLeechFromAttacksPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1434_PhysicalDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "implicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["1438_FireDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["1443_ColdDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["1447_LightningDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", }, }, - ["1938_GainManaAsExtraEnergyShield"] = { + ["144_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2663376056", - ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", + ["id"] = "implicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", + ["type"] = "implicit", }, + }, + ["1450_ChaosDamageLifeLeechPermyriad"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 6, + ["specialCaseData"] = { }, - }, - ["1178_SpellAddedColdDamage"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "implicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", }, + }, + ["1454_ElementalDamageLeechedAsLifePermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45.5, - }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 30.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1508_LifeGainPerTarget"] = { + ["145_LocalIncreaseSocketedProjectileGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 10, + ["id"] = "implicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9269_Runebinder"] = { + ["1467_ManaLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4080245957", - ["text"] = "Runebinder", + ["id"] = "implicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1469_ManaLeechLocalPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "implicit", }, }, - ["1525_GainLifeOnBlock"] = { + ["146_LocalIncreaseSocketedBowGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_762600725", - ["text"] = "# Life gained when you Block", + ["id"] = "implicit.stat_2027269580", + ["text"] = "# to Level of Socketed Bow Gems", + ["type"] = "implicit", }, + }, + ["1473_AttackDamageManaLeech"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "implicit", }, }, ["147_LocalIncreaseSocketedMeleeGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_829382474", + ["id"] = "implicit.stat_829382474", ["text"] = "# to Level of Socketed Melee Gems", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", }, - ["145_LocalIncreaseSocketedProjectileGemLevel"] = { + ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2210_AdditionalBlock"] = { + ["1490_EnergyShieldLeechPermyriad"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1702195217", - ["text"] = "#% Chance to Block Attack Damage", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 2, - ["max"] = 9, + ["id"] = "implicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "implicit", }, }, - ["5797_FasterPoisonDamage"] = { + ["1499_MaximumLifeLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["id"] = "implicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "implicit", }, + }, + ["149_LocalIncreaseSocketedAuraLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 13, - }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "implicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", + ["type"] = "implicit", }, }, - ["129_LocalIncreaseSocketedStrengthGemLevel"] = { + ["1501_MaximumManaLeechRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2201_PhysicalDamageTakenAsLightningPercent"] = { + ["1502_MaximumEnergyShieldLeechRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "implicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1283_ReducedExtraDamageFromCrits"] = { + ["1506_LifeGainPerTargetLocal"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", }, + }, + ["1508_LifeGainPerTarget"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 13, - ["max"] = 25, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", }, }, - ["1610_AvoidElementalStatusAilments"] = { + ["1512_ManaGainPerTarget"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", }, + }, + ["1515_EnergyShieldGainPerTarget"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 17, - ["max"] = 25, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "implicit", }, }, - ["963_PercentageIntelligence"] = { + ["1516_LifeGainedFromEnemyDeath"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_656461285", - ["text"] = "#% increased Intelligence", - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1347_LifeRegenerationRate"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 15, + ["1517_MaximumLifeOnKillPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 15, + ["id"] = "implicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "implicit", }, + }, + ["1519_MaximumManaOnKillPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "implicit", + }, + }, + ["1525_GainLifeOnBlock"] = { ["sign"] = "", - ["Helmet"] = { - ["min"] = 7, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "implicit", }, }, - ["160_LocalSocketedWarcryGemLevel"] = { + ["1526_GainManaOnBlock"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1672793731", - ["text"] = "# to Level of Socketed Warcry Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["9238_CallToArms"] = { + ["1530_ManaGainedFromEnemyDeath"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3292262540", - ["text"] = "Call to Arms", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "implicit", }, }, - ["2316_FasterIgniteDamage"] = { + ["1533_MinionLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", }, + }, + ["1536_MinionMovementSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1557_AdditionalPierce"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 9, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", }, }, - ["8390_ProjectilesSplitCount"] = { + ["1558_ArrowAdditionalPierce"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3464380325", - ["text"] = "Projectiles Split towards # targets", + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1560_AdditionalArrows"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_742529963", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", }, }, ["1563_ProjectileSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3759663284", + ["id"] = "implicit.stat_3759663284", ["text"] = "#% increased Projectile Speed", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 14, - ["max"] = 25, + ["type"] = "implicit", }, }, - ["1018_GlobalDamageOverTimeMultiplier"] = { + ["1565_MovementVelocity"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3988349707", - ["text"] = "#% to Damage over Time Multiplier", - }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 16, + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["144_IncreasedSocketedAoEGemLevel"] = { + ["1570_MinimumEnduranceCharges"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1467_ManaLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["1571_MaximumEnduranceCharges"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "implicit", }, + }, + ["1575_MinimumFrenzyCharges"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", + ["type"] = "implicit", }, }, - ["1398_MaximumColdResist"] = { + ["1576_MaximumFrenzyCharges"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "implicit", }, }, - ["7190_GlobalMaimOnHit"] = { + ["157_LocalIncreaseSocketedSupportGemLevel"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", + ["type"] = "implicit", }, }, - ["1403_MaximumLightningResistance"] = { + ["1580_MinimumPowerCharges"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", + ["type"] = "implicit", }, }, - ["1354_ManaRegeneration"] = { - ["Ring"] = { - ["min"] = 18, - ["max"] = 45, + ["1581_IncreasedMaximumPowerCharges"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - }, - ["Amulet"] = { - ["min"] = 18, - ["max"] = 45, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 45, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "implicit", }, + }, + ["1597_PowerChargeOnCriticalStrikeChance"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 45, + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 18, - ["max"] = 45, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", }, }, - ["6097_GuardSkillCooldownRecovery"] = { + ["1600_FrenzyChargeOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3150300096", - ["text"] = "Guard Skills have #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 14, - ["max"] = 19, + ["id"] = "implicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "implicit", }, }, - ["7208_ManaFlaskPassiveChargeGain"] = { + ["1605_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1193925814", - ["text"] = "Mana Flasks gain # Charge every 3 seconds", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "implicit", }, }, - ["2657_MinionLifeLeech"] = { + ["1606_CannotBeIgnited"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2770782267", - ["text"] = "Minions Leech #% of Damage as Life", - }, - ["Helmet"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9277_UnwaveringStance"] = { + ["1608_CannotBeShocked"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1683578560", - ["text"] = "Unwavering Stance", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "implicit", }, }, - ["343_DisplaySocketedGemsGetAddedChaosDamage"] = { + ["1610_AvoidElementalStatusAilments"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_411460446", - ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9279_VersatileCombatant"] = { + ["1611_AvoidChill"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_593845252", - ["text"] = "Versatile Combatant", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", }, }, - ["9249_EternalYouth"] = { + ["1612_AvoidFreeze"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1308467455", - ["text"] = "Eternal Youth", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", }, }, - ["1642_ReducedBurnDuration"] = { + ["1613_AvoidIgnite"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 40, + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1925_MaximumSkeletonCount"] = { + ["1615_AvoidShock"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", }, }, - ["9259_Magebane"] = { + ["1616_ChanceToAvoidPoison"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4180925106", - ["text"] = "Magebane", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", }, }, - ["1443_ColdDamageLifeLeechPermyriad"] = { + ["1618_AvoidStun"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1409_ChaosResistance"] = { - ["Quiver"] = { - ["min"] = 10, - ["max"] = 25, - }, + ["1623_ChillAndFreezeDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 10, - ["max"] = 25, - }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 25, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 25, - }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 25, - }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 25, + ["id"] = "implicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "implicit", }, }, - ["1288_StunThresholdReduction"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["specialCaseData"] = { - }, + ["1624_ShockDuration"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "implicit", }, }, - ["1738_MinionDamage"] = { + ["1625_ChillAndFreezeDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 15, + ["id"] = "implicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1560_AdditionalArrows"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, - }, + ["1626_BurnDuration"] = { + ["sign"] = "", ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "implicit", }, }, - ["4482_MonsterImpaleOnHit"] = { + ["1630_StunDurationIncreasePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9234_AncestralBond"] = { + ["1634_SelfStatusAilmentDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2648570028", - ["text"] = "Ancestral Bond", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["1644_BurnDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, ["1647_AreaOfEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_280731498", + ["id"] = "implicit.stat_280731498", ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 13, - }, - ["sign"] = "", }, - ["3947_ChanceToAvoidBleeding"] = { + ["1650_ManaCostReduction"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3118_UnholyMightOnKillPercentChance"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - }, + ["1658_IncreaseManaCostFlat"] = { + ["sign"] = "-", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 7, - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", + ["type"] = "implicit", }, }, - ["1381_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1665_AvoidInterruptionWhileCasting"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skill Gems", + ["id"] = "implicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "implicit", }, + }, + ["1667_StunRecovery"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", }, }, - ["2252_LightRadius"] = { + ["168_SocketedGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1263695895", - ["text"] = "#% increased Light Radius", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 35, + ["id"] = "implicit.stat_3828613551", + ["text"] = "#% to Quality of Socketed Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["936_AdditionalSpellBlock"] = { + ["1692_TrapThrowSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_19803471", - ["text"] = "#% Chance to Block Spell Damage", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 4, - ["max"] = 9, + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", }, }, - ["1797_AreaDamage"] = { + ["1693_MineLayingSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4251717817", - ["text"] = "#% increased Area Damage", - }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 30, + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1408_MaximumChaosResistance"] = { + ["1697_PhysicalAddedAsFire"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", }, }, - ["9264_PointBlank"] = { + ["1699_PhysicalAddedAsLightning"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2896346114", - ["text"] = "Point Blank", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", }, }, - ["1618_AvoidStun"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 25, + ["169_IncreaseSocketedSupportGemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "implicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", + ["type"] = "implicit", }, + }, + ["1700_PhysicalAddedAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 17, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", }, }, - ["2651_MinionSpellBlockChance"] = { + ["1703_LightningAddedAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2762046953", - ["text"] = "Minions have #% Chance to Block Spell Damage", - }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 19, + ["id"] = "implicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["9240_Conduit"] = { + ["1705_ColdAddedAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1994392904", - ["text"] = "Conduit", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "implicit", }, }, - ["9260_ManaShield"] = { + ["1706_FireAddedAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_373964381", - ["text"] = "Mind Over Matter", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "implicit", }, }, - ["1613_AvoidIgnite"] = { + ["1709_LifeRegenerationRatePercentage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2241_ChanceToBleed"] = { + ["171_SocketedAoEGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 20, + ["id"] = "implicit.stat_768982451", + ["text"] = "#% to Quality of Socketed AoE Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1533_MinionLife"] = { + ["1720_ConvertPhysicalToFireImplicit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9235_AvatarOfFire"] = { + ["1722_ConvertPhysicalToColdImplicit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_346029096", - ["text"] = "Avatar of Fire", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", }, }, - ["1237_CriticalStrikeChanceWithBows"] = { + ["1724_ConvertPhysicalToLightningImplicit"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", }, + }, + ["1727_PhysicalDamageConvertToChaosImplicit"] = { ["sign"] = "", - ["Quiver"] = { - ["min"] = 17, - ["max"] = 25, + ["specialCaseData"] = { }, - }, - ["2330_SummonTotemCastSpeed"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", }, + }, + ["172_SocketedAuraGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2276941637", + ["text"] = "#% to Quality of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["1738_MinionDamage"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 16, - ["max"] = 30, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 30, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", }, }, - ["3019_WarcrySpeed"] = { + ["173_SocketedBowGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - }, - ["Amulet"] = { - ["min"] = 16, - ["max"] = 30, + ["id"] = "implicit.stat_3280600715", + ["text"] = "#% to Quality of Socketed Bow Gems", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9237_BloodMagic"] = { + ["1743_ElementalDamagePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2801937280", - ["text"] = "Blood Magic", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", }, }, - ["4541_GlobalCooldownRecovery"] = { + ["174_SocketedChaosGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 3, - ["max"] = 6, + ["id"] = "implicit.stat_2062835769", + ["text"] = "#% to Quality of Socketed Chaos Gems", + ["type"] = "implicit", }, }, - ["2571_ReturningAttackProjectiles"] = { + ["1751_MaximumBlockChance"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1658124062", - ["text"] = "Attack Projectiles Return to you", - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", }, }, - ["1791_ChanceToFreeze"] = { + ["1752_MaximumSpellBlockChance"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "implicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", + ["type"] = "implicit", }, + }, + ["1757_GlobalKnockbackChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "implicit", + }, + }, + ["1758_ProjectileDamage"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "implicit", }, }, - ["4849_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { + ["175_SocketedColdGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_736820284", - ["text"] = "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1164882313", + ["text"] = "#% to Quality of Socketed Cold Gems", + ["type"] = "implicit", }, }, - ["4559_FireExposureOnHit"] = { + ["176_SocketedDexterityGemQuality"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["id"] = "implicit.stat_2877754099", + ["text"] = "#% to Quality of Socketed Dexterity Gems", + ["type"] = "implicit", }, + }, + ["1788_ChanceToIgnite"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, - }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1952_BeltFlaskManaRecoveryRate"] = { + ["178_SocketedFireGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "implicit.stat_3422008440", + ["text"] = "#% to Quality of Socketed Fire Gems", + ["type"] = "implicit", }, + }, + ["1791_ChanceToFreeze"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 12, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["1131_FireDamagePercentage"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", }, + }, + ["1795_ChanceToShock"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5431_DamageTakenGainedAsLife"] = { + ["1797_AreaDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4558_ColdExposureOnHit"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", - }, + ["179_SocketedIntelligenceGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 12, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "implicit.stat_3174776455", + ["text"] = "#% to Quality of Socketed Intelligence Gems", + ["type"] = "implicit", }, }, - ["9275_IronGrip"] = { + ["1809_AttackAndCastSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_573347393", - ["text"] = "Iron Grip", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", }, }, - ["9244_DivineShield"] = { + ["180_SocketedLightningGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2048995720", - ["text"] = "Divine Shield", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1065580342", + ["text"] = "#% to Quality of Socketed Lightning Gems", + ["type"] = "implicit", }, }, - ["152_IncreaseSocketedCurseGemLevel"] = { + ["181_SocketedMeleeGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1396421504", + ["text"] = "#% to Quality of Socketed Melee Gems", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["5455_DaytimeFishSize"] = { + ["1822_GlobalFlaskLifeRecovery"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1771018579", - ["text"] = "#% increased Size of Fish caught during Daytime", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9242_CrimsonDance"] = { + ["183_SocketedProjectileGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_300702212", - ["text"] = "Crimson Dance", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2428621158", + ["text"] = "#% to Quality of Socketed Projectile Gems", + ["type"] = "implicit", }, }, - ["3203_ChancetoGainPhasingOnKill"] = { + ["184_SocketedStrengthGemQuality"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2918708827", - ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 11, - ["max"] = 25, + ["id"] = "implicit.stat_122841557", + ["text"] = "#% to Quality of Socketed Strength Gems", + ["type"] = "implicit", }, }, - ["1951_BeltFlaskLifeRecoveryRate"] = { + ["185_AbyssJewelEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["type"] = "implicit", }, + }, + ["1888_EnduranceChargeDuration"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 12, - ["max"] = 20, + ["specialCaseData"] = { }, - }, - ["1140_ColdDamagePercentage"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "implicit", }, + }, + ["1890_FrenzyChargeDuration"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, - }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["specialCaseData"] = { }, - }, - ["4480_AttacksTauntOnHitChance"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "implicit", }, + }, + ["1903_IncreasedSpellDamagePerPowerCharge"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 25, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "implicit", }, }, - ["7011_NearbyEnemyFireDamageResistance"] = { + ["1905_IncreasedPowerChargeDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3914021960", - ["text"] = "Nearby Enemies have #% to Fire Resistance", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["9261_MinionInstability"] = { + ["1920_IncreasedLifeLeechRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_433293234", - ["text"] = "Minion Instability", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "implicit", }, }, - ["1411_MaximumElementalResistance"] = { + ["1921_IncreasedManaLeechRate"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1978899297", - ["text"] = "#% to all maximum Elemental Resistances", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "implicit", }, }, - ["2703_GlobalChanceToBlindOnHit"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["1945_BeltIncreasedFlaskChargesGained"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 12, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9233_PerfectAgony"] = { + ["1946_BeltReducedFlaskChargesUsed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3884934810", - ["text"] = "Perfect Agony", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", }, }, - ["2913_PoisonOnHit"] = { + ["1949_BeltIncreasedFlaskDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 20, + ["id"] = "implicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1382_GlobalIncreaseLightningSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skill Gems", - }, + ["1964_AttackerTakesDamageNoRange"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["7009_NearbyEnemyColdDamageResistance"] = { + ["1989_ManaReservationEfficiency"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2674336304", - ["text"] = "Nearby Enemies have #% to Cold Resistance", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["1007_PhysicalDamagePercent"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - }, + ["1993_ReducedReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, - }, - ["sign"] = "", - }, - ["1177_SpellAddedFireDamage"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", }, + }, + ["1995_PhysicalAttackDamageTaken"] = { + ["sign"] = "-", ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 30.5, - }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", + ["type"] = "implicit", }, }, - ["9258_LetheShade"] = { + ["1998_FlatFireDamageTaken"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1678358883", - ["text"] = "Lethe Shade", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_614758785", + ["text"] = "# Fire Damage taken from Hits", + ["type"] = "implicit", }, }, - ["1339_IncreasedLife"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["AbyssJewel"] = { - ["min"] = 23, - ["max"] = 40, - }, + ["2006_DegenDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 23, - ["max"] = 40, - }, - ["AnyJewel"] = { - ["min"] = 23, - ["max"] = 40, - }, - }, - ["1388_AllResistances"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 12, + ["id"] = "implicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "implicit", }, + }, + ["2033_ReducedPhysicalDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 12, - }, - ["Shield"] = { - ["min"] = 6, - ["max"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", }, }, - ["1801_CullingStrike"] = { + ["2199_PhysicalDamageTakenAsFirePercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2524254339", - ["text"] = "Culling Strike", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", }, }, - ["1338_EnergyShieldRecoveryRate"] = { + ["2200_PhysicalDamageTakenAsCold"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1356_ManaRecoveryRate"] = { + ["2201_PhysicalDamageTakenAsLightningPercent"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9273_Solipsism"] = { + ["2203_PhysicalDamageTakenAsChaos"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_112130960", - ["text"] = "Solipsism", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", }, }, - ["1611_ChanceToAvoidFreezeAndChill"] = { + ["2210_AdditionalBlock"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2659_MinionElementalResistance"] = { + ["2235_LocalChanceToBleed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["961_PercentageStrength"] = { + ["2241_ChanceToBleed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["4537_BaseChanceToDealTripleDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2445189705", - ["text"] = "#% chance to deal Triple Damage", - }, + ["2252_LightRadius"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, - }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1438_FireDamageLifeLeechPermyriad"] = { + ["2275_CurseOnHitLevelVulnerability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1394_FireResistance"] = { - ["Quiver"] = { - ["min"] = 18, - ["max"] = 35, - }, + ["2277_CurseOnHitLevelElementalWeakness"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 18, - ["max"] = 35, - }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3372524247", - ["text"] = "#% to Fire Resistance", - }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + }, + ["2279_ConductivityOnHitLevel"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 18, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "implicit", }, }, - ["1335_EnergyShieldRegeneration"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["2280_CurseOnHitDespair"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 25, + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", }, + }, + ["2282_FlammabilityOnHitLevel"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 11, - ["max"] = 25, - }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "implicit", }, }, - ["149_LocalIncreaseSocketedAuraLevel"] = { + ["2283_FrostbiteOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1183_IncreasedAttackSpeed"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["2286_MeleeWeaponAndUnarmedRange"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_681332047", - ["text"] = "#% increased Attack Speed", - }, - ["Quiver"] = { - ["min"] = 4, - ["max"] = 10, + ["id"] = "implicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + ["type"] = "implicit", }, + }, + ["2311_ItemDropsOnGuardianDeath"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 4, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "implicit", }, }, - ["3172_MinionAttacksTauntOnHitChance"] = { + ["2316_FasterIgniteDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2911442053", - ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", }, + }, + ["2330_SummonTotemCastSpeed"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 19, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", }, }, ["2348_CurseEffectiveness"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2353576063", + ["id"] = "implicit.stat_2353576063", ["text"] = "#% increased Effect of your Curses", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 9, - ["max"] = 12, + ["type"] = "implicit", }, }, - ["1615_AvoidShock"] = { + ["2361_MovementSpeedWhilePhased"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1518_MaximumEnergyShieldOnKillPercent"] = { + ["2375_EnduranceChargeOnKillChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["388_DisplaySupportedByAddedColdDamage"] = { + ["2377_FrenzyChargeOnKillChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4020144606", - ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1179_SpellAddedLightningDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - }, + ["2379_PowerChargeOnKillChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 48.5, - }, - ["1HWeapon"] = { - ["min"] = 17.5, - ["max"] = 32.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1341_MaximumLifeIncreasePercent"] = { + ["2392_EnergyShieldRegenerationPerMinute"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "implicit", }, + }, + ["2434_VaalSkillDamageAffectsSkillDamage"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3871212304", + ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["type"] = "implicit", + }, + }, + ["2486_SpellDamagePer10Intelligence"] = { ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "implicit", }, }, - ["130_LocalIncreaseSocketedDexterityGemLevel"] = { + ["2493_LocalMeleeWeaponRange"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_350598685", + ["text"] = "# to Weapon Range", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1022_PhysicalDamageOverTimeMultiplier"] = { + ["2535_TotemElementalResistances"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", + ["id"] = "implicit.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", + ["type"] = "implicit", }, + }, + ["2585_ChaosDamageTaken"] = { + ["sign"] = "-", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, - }, - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, + ["tradeMod"] = { + ["id"] = "implicit.stat_496011033", + ["text"] = "# Chaos Damage taken", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["9257_IronReflexes"] = { + ["2654_MinionAttackSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_326965591", - ["text"] = "Iron Reflexes", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "implicit", }, }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["2655_MinionCastSpeed"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1434_PhysicalDamageLifeLeechPermyriad"] = { + ["2658_MinionLifeRegeneration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5796_FasterBleedDamage"] = { + ["2659_MinionElementalResistancesForJewel"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "implicit", }, + }, + ["2682_PhysicalDamageAddedAsRandomElement"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, + ["2703_GlobalChanceToBlindOnHit"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["tradeMod"] = { + ["id"] = "implicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "implicit", }, }, - ["1379_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["2725_ElementalPenetration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skill Gems", + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", }, + }, + ["2726_FireResistancePenetration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", }, }, - ["3961_FlaskChanceToNotConsumeCharges"] = { + ["2727_ColdResistancePenetration"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", }, + }, + ["2728_LightningResistancePenetration"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, + ["specialCaseData"] = { }, - }, - ["1000_SpellDamage"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", }, + }, + ["2737_ChanceToGainOnslaughtOnKill"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1570_MinimumEnduranceCharges"] = { + ["2773_AttackAndCastSpeedWithOnslaught"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2320884914", + ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["5077_ChanceToIntimidateOnHit"] = { + ["2803_RecoverLifePercentOnBlock"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_78985352", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "implicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "implicit", }, + }, + ["2806_DamageWhileLeeching"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "implicit", }, }, - ["2200_PhysicalDamageTakenAsCold"] = { + ["2835_VaalSkillDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1743_ElementalDamagePercent"] = { + ["2844_AdditionalVaalSoulOnKill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "implicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "implicit", }, + }, + ["2845_VaalSkillDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_547412107", + ["text"] = "#% increased Vaal Skill Effect Duration", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2379_PowerChargeOnKillChance"] = { + ["2847_VaalSkillCriticalStrikeChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["id"] = "implicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5085_ChanceToUnnerveOnHit"] = { + ["2909_BleedingDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1417_LifeLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["2910_PoisonDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "implicit", }, + }, + ["2913_PoisonOnHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, + ["2921_PoisonDamage"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "implicit", }, }, - ["9283_ResoluteTechnique"] = { + ["2939_DamagePerEnduranceCharge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3943945975", - ["text"] = "Resolute Technique", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", }, }, - ["1692_TrapThrowSpeed"] = { + ["3028_DamagePerFrenzyCharge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 15, + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2726_FireResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, - }, + ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3295179224", + ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1575_MinimumFrenzyCharges"] = { + ["3104_IncreasedAuraEffectGraceCorrupted"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["5625_ReducedElementalReflectTaken"] = { + ["3108_IncreasedAuraEffectDeterminationCorrupted"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", - }, - ["Chest"] = { - ["min"] = 41, - ["max"] = 60, + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3046_EnemiesExplodeOnDeathPhysicalChance"] = { + ["3109_IncreasedAuraEffectDisciplineCorrupted"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3295179224", - ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 15, + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1933_ReducedCurseEffect"] = { + ["3110_CannotBePoisoned"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2574_OnslaughtWhenHitForDuration"] = { + ["3114_FireDamageAvoidance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "implicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { + ["3115_ColdDamageAvoidance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["8326_ReducedPhysicalReflectTaken"] = { + ["3116_LightningDamageAvoidance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", - }, - ["Chest"] = { - ["min"] = 41, - ["max"] = 60, + ["id"] = "implicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["143_IncreaseSocketedDurationGemLevel"] = { + ["3118_UnholyMightOnKillPercentChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2115168758", - ["text"] = "# to Level of Socketed Duration Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1964_AttackerTakesDamageNoRange"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", - }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 100, + ["3195_SpectreDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 100, + ["tradeMod"] = { + ["id"] = "implicit.stat_3645693773", + ["text"] = "Spectres have #% increased Damage", + ["type"] = "implicit", }, + }, + ["3303_AuraEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, + ["3326_ColdPenetrationWeapon"] = { ["sign"] = "", - ["Helmet"] = { - ["min"] = 20, - ["max"] = 100, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 100, + ["tradeMod"] = { + ["id"] = "implicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["type"] = "implicit", }, }, - ["9268_ZealotsOath"] = { + ["3327_FirePenetrationWeapon"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_632761194", - ["text"] = "Zealot's Oath", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "implicit", }, }, - ["1413_ChillEffectivenessOnSelf"] = { + ["3328_LightningPenetrationWeapon"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 40, + ["id"] = "implicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1720_ConvertPhysicalToFire"] = { + ["3334_HasOnslaught"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "implicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9266_MonsterNemesisOndarsGuile"] = { + ["3380_ZombieIncreasedDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2606808909", - ["text"] = "Arrow Dancing", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + ["type"] = "implicit", }, }, - ["9245_EldritchBattery"] = { + ["3396_SkeletonDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2262736444", - ["text"] = "Eldritch Battery", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + ["type"] = "implicit", }, }, - ["1556_AdditionalChain"] = { + ["3496_LocalAttackReduceEnemyElementalResistance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1787073323", - ["text"] = "Skills Chain # times", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "implicit", }, }, - ["9280_WickedWard"] = { + ["3721_AnimateGuardianResistances"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1109343199", - ["text"] = "Wicked Ward", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2094281311", + ["text"] = "#% to Animated Guardian Elemental Resistances", + ["type"] = "implicit", }, }, - ["1557_AdditionalPierce"] = { + ["3742_CurseEffectConductivity"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", }, + }, + ["3743_CurseEffectElementalWeakness"] = { ["sign"] = "", - ["Quiver"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { }, - }, - ["1383_GlobalIncreaseChaosSpellSkillGemLevel"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skill Gems", + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", }, + }, + ["3745_CurseEffectFlammability"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2493_LocalMeleeWeaponRange"] = { + ["3746_CurseEffectFrostbite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_350598685", - ["text"] = "# to Weapon Range", + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", }, + }, + ["3748_CurseEffectVulnerability"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 4, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 4, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", }, }, - ["1159_IncreasedChaosDamage"] = { + ["3800_DamageAffectedByAuras"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "implicit.stat_1419713278", + ["text"] = "You and nearby Allies deal #% increased Damage", + ["type"] = "implicit", }, + }, + ["3813_DamageDuringFlaskEffect"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["3900_PhysicalDamageRemovedFromManaBeforeLife"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["tradeMod"] = { + ["id"] = "implicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["type"] = "implicit", }, }, - ["9276_SupremeEgo"] = { + ["3946_BleedingImmunity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1421267186", - ["text"] = "Supreme Ego", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", }, }, - ["1034_ChaosDamageOverTimeMultiplier"] = { + ["3947_ChanceToAvoidBleeding"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", }, + }, + ["398_DisplaySocketedGemsGetReducedReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["tradeMod"] = { + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "implicit", }, }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { + ["4004_AddedColdDamagePerFrenzyCharge"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["955_DexterityImplicit"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["400_SocketedSkillsManaMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", }, + }, + ["4232_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, - }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["4233_DeterminationPhysicalDamageReduction"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["4312_AreaOfEffectIfStunnedEnemyRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["4339_ArmourEvasionWithFortify"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_2962782530", + ["text"] = "# to Armour and Evasion Rating while Fortified", + ["type"] = "implicit", }, }, - ["1667_StunRecovery"] = { + ["4371_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", + ["type"] = "implicit", }, + }, + ["4420_AttackDamagePerMana"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 15, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4134865890", + ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["type"] = "implicit", }, }, - ["1605_CannotBeFrozen"] = { + ["4439_AddedFireDamagePerStrength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_876831634", - ["text"] = "Cannot be Frozen", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "implicit", }, }, - ["2596_FishingRarity"] = { + ["4442_AddedLightningDamagePerIntelligence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["id"] = "implicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["962_PercentageDexterity"] = { + ["4479_AttacksBlindOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4139681126", - ["text"] = "#% increased Dexterity", - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["id"] = "implicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1923_MaximumZombieCount"] = { + ["4480_AttacksTauntOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "implicit", }, }, - ["2375_EnduranceChargeOnKillChance"] = { + ["4482_AttackImpaleChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3296_BasePenetrateElementalResistances"] = { + ["4485_AddedColdDamagePerDexterity"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_697807915", - ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "implicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2737_ChanceToGainOnslaughtOnKill"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["4523_AilmentDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "implicit", }, + }, + ["4532_BleedDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", }, }, - ["1517_MaximumLifeOnKillPercent"] = { + ["49_HasXSockets"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1993_ReducedReservation"] = { + ["5024_DoubleDamageChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - }, - ["Amulet"] = { - ["min"] = 6, - ["max"] = 12, + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8827_StrengthAppliesToFishingReelSpeed"] = { + ["5035_ChanceWhenHitForArmourToBeDoubled"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4039414411", - ["text"] = "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", + ["id"] = "implicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "implicit", }, }, - ["8641_BrandAttachmentRange"] = { + ["5036_AdditionalChanceToEvade"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["id"] = "implicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", + ["type"] = "implicit", }, + }, + ["5038_GraceAdditionalChanceToEvade"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, - }, - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_969576725", + ["text"] = "#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "implicit", }, }, - ["2537_TotemPhysicalDamageReduction"] = { + ["5104_ChaosDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3616562963", - ["text"] = "Totems have #% additional Physical Damage Reduction", + ["id"] = "implicit.stat_1959092146", + ["text"] = "#% increased Chaos Damage with Attack Skills", + ["type"] = "implicit", }, + }, + ["5105_ChaosDamageSpellSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3761858151", + ["text"] = "#% increased Chaos Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["5153_ChillEffect"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", }, }, - ["9246_ElementalEquilibrium"] = { + ["5172_FlatColdDamageTaken"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1263158408", - ["text"] = "Elemental Equilibrium", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_261654754", + ["text"] = "# Cold Damage taken from Hits", + ["type"] = "implicit", }, }, - ["3303_AuraEffect"] = { + ["5174_ColdDamageAttackSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", - }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1218_IncreasedCastSpeed"] = { + ["5175_ColdDamageSpellSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 8, + ["id"] = "implicit.stat_2186994986", + ["text"] = "#% increased Cold Damage with Spell Skills", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1267_CriticalStrikeMultiplierWithBows"] = { + ["5283_SpellCriticalChanceWithDualWield"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 17, - ["max"] = 25, + ["id"] = "implicit.stat_1218939541", + ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["type"] = "implicit", }, }, - ["2660_MinionChaosResistance"] = { + ["5284_SpellCriticalChanceWithShield"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", - }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 25, + ["id"] = "implicit.stat_952509814", + ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { + ["5285_SpellCriticalChanceWithStaff"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_140429540", + ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1176_SpellAddedPhysicalDamage"] = { + ["5309_SpellCriticalMultiplierWithDualWield"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "implicit.stat_2349237916", + ["text"] = "#% to Critical Strike Multiplier for Spells while Dual Wielding", + ["type"] = "implicit", }, + }, + ["5310_SpellCriticalMultiplierWithShield"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45.5, - }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 30.5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2311200892", + ["text"] = "#% to Critical Strike Multiplier for Spells while holding a Shield", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["8501_ChaosResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4264312960", - ["text"] = "Damage Penetrates #% Chaos Resistance", + ["5311_SpellCriticalMultiplierWithStaff"] = { + ["sign"] = "+", + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_3629080637", + ["text"] = "#% to Critical Strike Multiplier for Spells while wielding a Staff", + ["type"] = "implicit", }, + }, + ["5338_CurseDuration"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["5390_DamagePer15Dexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 24, + }, + ["5391_DamagePer15Intelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 24, + ["tradeMod"] = { + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", }, + }, + ["5392_DamagePer15Strength"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, + ["5400_IncreasedDamagePerPowerCharge"] = { ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 24, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 8, - ["max"] = 24, + ["tradeMod"] = { + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", }, }, - ["1757_GlobalKnockbackChance"] = { + ["5403_DamageVSAbyssMonsters"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 30, + ["id"] = "implicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9281_WindDancer"] = { + ["5492_DeterminationReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4170338365", - ["text"] = "Wind Dancer", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["1512_ManaGainPerTarget"] = { + ["5493_DeterminationReservationEfficiency"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 5, + ["id"] = "implicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9270_SacredBastion"] = { + ["5504_DisciplineReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3868073741", - ["text"] = "Imbalanced Guard", + ["id"] = "implicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["5505_DisciplineReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["1630_StunDurationIncreasePercent"] = { + ["5613_IncreasedWeaponElementalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["min"] = 17, - ["max"] = 25, + }, + ["5654_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "implicit", }, + }, + ["5727_DisciplineEnergyShieldRegen"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "implicit", + }, + }, + ["5796_FasterBleedDamage"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, + ["specialCaseData"] = { }, - ["Belt"] = { - ["min"] = 17, - ["max"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", }, }, - ["1580_MinimumPowerCharges"] = { + ["5797_FasterPoisonDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1999711879", - ["text"] = "# to Minimum Power Charges", - }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["4743_BlindEnemiesWhenHit"] = { + ["5814_FireDamagePerStrength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_26216403", - ["text"] = "#% chance to Blind Enemies when they Hit you", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 40, + ["id"] = "implicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "implicit", }, }, - ["9247_ElementalOverload"] = { + ["5826_FireDamageAttackSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3574189159", - ["text"] = "Elemental Overload", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_2468413380", + ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "implicit", }, }, - ["7015_NearbyEnemyPhysicalDamageTaken"] = { + ["5827_FireDamageSpellSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_415837237", - ["text"] = "Nearby Enemies take #% increased Physical Damage", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_361162316", + ["text"] = "#% increased Fire Damage with Spell Skills", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1031_ColdDamageOverTimeMultiplier"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", - }, + ["5974_EnduranceChargeIfHitRecently"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, - }, - }, - ["2727_ColdResistancePenetration"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "implicit", }, + }, + ["6010_OnslaughtOnHit"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_2514424018", + ["text"] = "You gain Onslaught for # seconds on Hit", + ["type"] = "implicit", }, }, - ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["6086_GraceReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2728_LightningResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { - }, + ["6087_GraceReservationEfficiency"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["8765_SpellsHinderOnHitChance"] = { + ["6571_FlatLightningDamageTaken"] = { + ["sign"] = "-", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_465051235", + ["text"] = "# Lightning Damage taken from Hits", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2269_FlammabilityOnHit"] = { + ["6572_LightningDamageAttackSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_654274615", - ["text"] = "Curse Enemies with Flammability on Hit", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "implicit", }, }, - ["9284_IronWill"] = { + ["6573_LightningDamageSpellSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4092697134", - ["text"] = "Iron Will", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3935031607", + ["text"] = "#% increased Lightning Damage with Spell Skills", + ["type"] = "implicit", }, }, - ["8603_ChanceToShockAttackersOnBlock"] = { + ["6963_AttackAndCastSpeedCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_575111651", - ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 14, - ["max"] = 25, + ["id"] = "implicit.stat_26867112", + ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["type"] = "implicit", }, }, - ["924_ChanceToSuppressSpells"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["6964_AttackDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_2347923784", + ["text"] = "#% increased Attack Damage if Corrupted", + ["type"] = "implicit", }, + }, + ["6978_LocalChanceToIntimidateOnHit"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", }, }, - ["1348_LifeRecoveryRate"] = { + ["6983_GlobalCriticalStrikeChanceCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_4023723828", + ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1450_ChaosDamageLifeLeechPermyriad"] = { + ["6988_AllDamageCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_767196662", + ["text"] = "#% increased Damage if Corrupted", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2658_MinionLifeRegeneration"] = { + ["6989_DamageTakenCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 3.5, + ["id"] = "implicit.stat_3309607228", + ["text"] = "#% reduced Damage taken if Corrupted", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1447_LightningDamageLifeLeechPermyriad"] = { + ["7031_ImmuneToCursesCorruptedItem"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "implicit.stat_1954526925", + ["text"] = "Immune to Curses if Corrupted", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9262_TheAgnostic"] = { + ["7071_IncreasedEnergyShieldCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_462691314", - ["text"] = "The Agnostic", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1025108940", + ["text"] = "#% increased maximum Energy Shield if Corrupted", + ["type"] = "implicit", }, }, - ["9253_GlancingBlows"] = { + ["7073_IncreasedLifeCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4266776872", - ["text"] = "Glancing Blows", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3887484120", + ["text"] = "#% increased maximum Life if Corrupted", + ["type"] = "implicit", }, }, - ["1344_LifeRegeneration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["AbyssJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, - }, + ["7077_MovementVelocityCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2880601380", + ["text"] = "#% increased Movement Speed if Corrupted", + ["type"] = "implicit", + }, + }, + ["7079_LocalChanceToPoisonOnHit"] = { ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", }, - ["AnyJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, + ["tradeMod"] = { + ["id"] = "implicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "implicit", }, }, - ["9256_Impaler"] = { + ["7080_AllElementalResistanceCorruptedItem"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1441799693", - ["text"] = "The Impaler", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3731630482", + ["text"] = "#% to all Elemental Resistances if Corrupted", + ["type"] = "implicit", }, }, - ["1616_ChanceToAvoidPoison"] = { + ["7089_SpellDamageCorruptedItem"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "implicit.stat_374116820", + ["text"] = "#% increased Spell Damage if Corrupted", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["3521_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { + ["7218_RecoverManaPercentOnBlock"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3643913768", - ["text"] = "Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 19, + ["id"] = "implicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["5121_ChanceToChillAttackersOnBlock"] = { + ["7233_AddedManaRegenWithDualWield"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_864879045", - ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["id"] = "implicit.stat_1361343333", + ["text"] = "Regenerate # Mana per Second while Dual Wielding", + ["type"] = "implicit", }, + }, + ["7234_AddedManaRegenWithShield"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 14, - ["max"] = 25, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3762868276", + ["text"] = "Regenerate # Mana per Second while holding a Shield", + ["type"] = "implicit", }, }, - ["1231_CriticalStrikeChance"] = { + ["7236_AddedManaRegenWithStaff"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 25, + ["id"] = "implicit.stat_1388668644", + ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["954_StrengthImplicit"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, - }, + ["7908_FortifyEffect"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_335507772", + ["text"] = "# to maximum Fortification", + ["type"] = "implicit", }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["7932_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "implicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "implicit", }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["8027_MinionAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "implicit", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["8192_IncreasedAilmentEffectOnEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + }, + ["8301_PhysicalDamageWithUnholyMight"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_1609570656", + ["text"] = "#% increased Physical Damage while you have Unholy Might", + ["type"] = "implicit", }, }, - ["1151_LightningDamagePercentage"] = { + ["8320_PhysicalDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "implicit.stat_2266750692", + ["text"] = "#% increased Physical Damage with Attack Skills", + ["type"] = "implicit", }, + }, + ["8321_PhysicalDamageSpellSkills"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1430255627", + ["text"] = "#% increased Physical Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["8412_PurityOfFireReservation"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["tradeMod"] = { + ["id"] = "implicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["4560_LightningExposureOnHit"] = { + ["8413_PurityOfFireReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["id"] = "implicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, + }, + ["8415_PurityOfIceReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["8416_PurityOfIceReservationEfficiency"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 12, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["1727_PhysicalDamageConvertedToChaos"] = { + ["8418_PurityOfLightningReservation"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "implicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2203_PhysicalDamageTakenAsChaos"] = { + ["8419_PurityOfLightningReservationEfficiency"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "implicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["2650_MinionBlockChance"] = { + ["8508_ReflectDamageTaken"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3374054207", - ["text"] = "Minions have #% Chance to Block Attack Damage", - }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 19, + ["id"] = "implicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["1722_ConvertPhysicalToCold"] = { + ["8530_RemoveFreezeOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "implicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["9263_PainAttunement"] = { + ["8534_RemoveIgniteOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_98977150", - ["text"] = "Pain Attunement", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "implicit", }, }, - ["6475_LifeFlaskPassiveChargeGain"] = { + ["8542_RemoveShockOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["id"] = "implicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "implicit", }, + }, + ["8606_ShockEffect"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, - }, - ["6391_ImpaleEffect"] = { ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_298173317", - ["text"] = "#% increased Impale Effect", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "implicit", }, + }, + ["8641_BrandAttachmentRange"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 18, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 18, + ["tradeMod"] = { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", }, }, - ["1026_FireDamageOverTimeMultiplier"] = { + ["8712_AdditionalCriticalStrikeChanceWithSpells"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", + ["id"] = "implicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", + ["type"] = "implicit", }, + }, + ["8719_SpellsDoubleDamageChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["tradeMod"] = { + ["id"] = "implicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "implicit", }, }, - ["2594_FishingCastDistance"] = { + ["8727_SpellDamagePerMana"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_170497091", - ["text"] = "#% increased Fishing Range", + ["id"] = "implicit.stat_3555662994", + ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1526_GainManaOnBlock"] = { + ["8733_SpellDamagePer10Strength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "implicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "implicit", }, + }, + ["8734_SpellDamagePer16Dexterity"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "implicit", }, }, - ["1627_IncreasedAilmentDuration"] = { + ["8735_SpellDamagePer16Intelligence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "implicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["7008_NearbyEnemyChaosDamageResistance"] = { + ["8736_SpellDamagePer16Strength"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1902595112", - ["text"] = "Nearby Enemies have #% to Chaos Resistance", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["id"] = "implicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "implicit", }, - ["sign"] = "-", }, - ["1945_BeltIncreasedFlaskChargesGained"] = { + ["8765_SpellsHinderOnHitChance"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", }, + }, + ["8974_DamageWithTriggeredSpells"] = { ["sign"] = "", - ["Belt"] = { - ["min"] = 13, - ["max"] = 25, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "implicit", }, }, - ["9252_KeystoneGhostReaver"] = { + ["8995_BurningGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4272248216", - ["text"] = "Ghost Reaver", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "implicit", }, }, - ["1788_ChanceToIgnite"] = { + ["9000_ChilledGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["id"] = "implicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "implicit", }, + }, + ["9019_ShockedGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "implicit", + }, + }, + ["9063_VitalityReservation"] = { ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["9254_HexMaster"] = { + ["9064_VitalityReservationEfficiency"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3849554033", - ["text"] = "Hex Master", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", }, }, - ["1541_IncreasedTotemLife"] = { + ["919_BlockPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", }, + }, + ["922_SpellDamageSuppressed"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent #% of Suppressed Spell Damage", + ["type"] = "implicit", }, }, - ["2377_FrenzyChargeOnKillChance"] = { + ["923_ChanceToSuppressSpellsOld"] = { + ["sign"] = "+", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1724_ConvertPhysicalToLightning"] = { + ["9277_UnwaveringStance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "implicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1380_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["938_SpellBlockPercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skill Gems", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", }, + }, + ["953_AllAttributes"] = { + ["sign"] = "+", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["2535_TotemElementalResistances"] = { + ["954_StrengthImplicit"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", }, + }, + ["955_DexterityImplicit"] = { + ["sign"] = "+", ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + }, + ["956_IntelligenceImplicit"] = { ["sign"] = "+", - ["Amulet"] = { - ["min"] = 21, - ["max"] = 35, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 21, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", }, }, - ["1400_ColdResistance"] = { - ["Quiver"] = { - ["min"] = 18, - ["max"] = 35, - }, + ["960_PercentageAllAttributes"] = { + ["sign"] = "", ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 18, - ["max"] = 35, - }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 35, + }, + ["961_PercentageStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + }, + ["962_PercentageDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 18, - ["max"] = 35, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["963_PercentageIntelligence"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", }, - ["sign"] = "+", }, - ["5639_ElusiveEffect"] = { + ["968_AllDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_240857668", - ["text"] = "#% increased Elusive Effect", + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", }, + }, + ["975_AttackDamage"] = { ["sign"] = "", - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", }, }, - ["2655_MinionAttackAndCastSpeed"] = { + ["987_DegenerationDamage"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", }, - ["sign"] = "", }, - ["1527_GainEnergyShieldOnBlock"] = { + ["994_DamageWhileLeechingLife"] = { + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_450695450", - ["text"] = "Gain # Energy Shield when you Block", + ["id"] = "implicit.stat_3591306273", + ["text"] = "#% increased Damage while Leeching Life", + ["type"] = "implicit", }, + }, + ["996_DamageWhileLeechingMana"] = { ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1994684426", + ["text"] = "#% increased Damage while Leeching Mana", + ["type"] = "implicit", }, }, }, diff --git a/src/Export/Bases/amulet.txt b/src/Export/Bases/amulet.txt index c41bfd8d5c..73f6b91712 100644 --- a/src/Export/Bases/amulet.txt +++ b/src/Export/Bases/amulet.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Amulet #baseTags amulet +#influenceBaseTag amulet #baseMatch Metadata/Items/Amulets/Amulet%d+ #baseMatch Metadata/Items/Amulet/AmuletAtlas%d+ diff --git a/src/Export/Bases/axe.txt b/src/Export/Bases/axe.txt index da7ff9f864..58bc065a2a 100644 --- a/src/Export/Bases/axe.txt +++ b/src/Export/Bases/axe.txt @@ -3,10 +3,12 @@ local itemBases = ... #type One Handed Axe #baseTags weapon onehand axe one_hand_weapon +#influenceBaseTag axe #socketLimit 3 #baseMatch Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/OneHandAxe #type Two Handed Axe #baseTags weapon twohand axe two_hand_weapon +#influenceBaseTag 2h_axe #socketLimit 6 #baseMatch Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/TwoHandAxe diff --git a/src/Export/Bases/belt.txt b/src/Export/Bases/belt.txt index bb7fc6c27f..45ec97a759 100644 --- a/src/Export/Bases/belt.txt +++ b/src/Export/Bases/belt.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Belt #baseTags belt +#influenceBaseTag belt #baseMatch Metadata/Items/Belts/Belt%d+ #forceShow true #baseMatch Metadata/Items/Belts/BeltE%d+ diff --git a/src/Export/Bases/body.txt b/src/Export/Bases/body.txt index 856975d78c..22867eae9c 100644 --- a/src/Export/Bases/body.txt +++ b/src/Export/Bases/body.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Body Armour #baseTags armour body_armour +#influenceBaseTag body_armour #socketLimit 6 #subType Armour diff --git a/src/Export/Bases/boots.txt b/src/Export/Bases/boots.txt index 3c34d7a841..33079dc782 100644 --- a/src/Export/Bases/boots.txt +++ b/src/Export/Bases/boots.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Boots #baseTags armour boots +#influenceBaseTag boots #socketLimit 4 #subType Armour diff --git a/src/Export/Bases/bow.txt b/src/Export/Bases/bow.txt index 47e83841c9..d027b13a0d 100644 --- a/src/Export/Bases/bow.txt +++ b/src/Export/Bases/bow.txt @@ -3,5 +3,6 @@ local itemBases = ... #type Bow #baseTags weapon twohand bow ranged two_hand_weapon +#influenceBaseTag bow #socketLimit 6 #baseMatch Metadata/Items/Weapons/TwoHandWeapons/Bows/Bow \ No newline at end of file diff --git a/src/Export/Bases/claw.txt b/src/Export/Bases/claw.txt index a736253449..8b11eb7dbd 100644 --- a/src/Export/Bases/claw.txt +++ b/src/Export/Bases/claw.txt @@ -3,5 +3,6 @@ local itemBases = ... #type Claw #baseTags weapon onehand claw one_hand_weapon +#influenceBaseTag claw #socketLimit 3 #baseMatch Metadata/Items/Weapons/OneHandWeapons/Claws/Claw \ No newline at end of file diff --git a/src/Export/Bases/dagger.txt b/src/Export/Bases/dagger.txt index 2d1386e78c..efadf2c246 100644 --- a/src/Export/Bases/dagger.txt +++ b/src/Export/Bases/dagger.txt @@ -3,11 +3,13 @@ local itemBases = ... #type Dagger #baseTags weapon onehand attack_dagger dagger one_hand_weapon +#influenceBaseTag dagger #socketLimit 3 #baseMatch BaseType Metadata/Items/Weapons/OneHandWeapons/Daggers/AbstractDagger #type Dagger #subType Rune -#baseTags weapon onehand dagger one_hand_weapon rune_dagger +#baseTags weapon onehand dagger one_hand_weapon +#influenceBaseTag rune_dagger #socketLimit 3 #baseMatch BaseType Metadata/Items/Weapons/OneHandWeapons/Daggers/AbstractRuneDagger \ No newline at end of file diff --git a/src/Export/Bases/gloves.txt b/src/Export/Bases/gloves.txt index 33df6dec4e..4e2fba40db 100644 --- a/src/Export/Bases/gloves.txt +++ b/src/Export/Bases/gloves.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Gloves #baseTags armour gloves +#influenceBaseTag gloves #socketLimit 4 #subType Armour diff --git a/src/Export/Bases/helmet.txt b/src/Export/Bases/helmet.txt index 85a02f736f..d7ac4f532a 100644 --- a/src/Export/Bases/helmet.txt +++ b/src/Export/Bases/helmet.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Helmet #baseTags armour helmet +#influenceBaseTag helmet #socketLimit 4 #subType Armour diff --git a/src/Export/Bases/mace.txt b/src/Export/Bases/mace.txt index 1b52d2ad0c..abc35a65ad 100644 --- a/src/Export/Bases/mace.txt +++ b/src/Export/Bases/mace.txt @@ -3,13 +3,16 @@ local itemBases = ... #type One Handed Mace #baseTags weapon onehand mace one_hand_weapon +#influenceBaseTag mace #socketLimit 3 #baseMatch Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/OneHandMace #type Sceptre +#influenceBaseTag sceptre #baseMatch Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/Sceptre #type Two Handed Mace #baseTags weapon twohand mace two_hand_weapon +#influenceBaseTag 2h_mace #socketLimit 6 #baseMatch Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/TwoHandMace diff --git a/src/Export/Bases/quiver.txt b/src/Export/Bases/quiver.txt index 6274097a32..e7b4b39739 100644 --- a/src/Export/Bases/quiver.txt +++ b/src/Export/Bases/quiver.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Quiver #baseTags quiver +#influenceBaseTag quiver #forceHide true #baseMatch Metadata/Items/Quivers/Quiver%d[0123]?$ #forceHide false diff --git a/src/Export/Bases/ring.txt b/src/Export/Bases/ring.txt index c40dbddd27..dcf53ef394 100644 --- a/src/Export/Bases/ring.txt +++ b/src/Export/Bases/ring.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Ring #baseTags ring +#influenceBaseTag ring #baseMatch Metadata/Items/Rings/Ring%d+ #baseMatch Metadata/Items/Rings/RingAtlas%d+ diff --git a/src/Export/Bases/shield.txt b/src/Export/Bases/shield.txt index 643ac88800..3a02320f93 100644 --- a/src/Export/Bases/shield.txt +++ b/src/Export/Bases/shield.txt @@ -3,6 +3,7 @@ local itemBases = ... #type Shield #baseTags armour shield +#influenceBaseTag shield #socketLimit 3 #subType Armour diff --git a/src/Export/Bases/staff.txt b/src/Export/Bases/staff.txt index 1356905215..51023c6f72 100644 --- a/src/Export/Bases/staff.txt +++ b/src/Export/Bases/staff.txt @@ -3,11 +3,13 @@ local itemBases = ... #type Staff #baseTags weapon twohand staff two_hand_weapon +#influenceBaseTag staff #socketLimit 6 #baseMatch BaseType Metadata/Items/Weapons/TwoHandWeapons/Staves/AbstractStaff #type Staff #subType Warstaff #baseTags weapon twohand two_hand_weapon attack_staff staff +#influenceBaseTag warstaff #socketLimit 6 #baseMatch BaseType Metadata/Items/Weapons/TwoHandWeapons/Staves/AbstractWarstaff \ No newline at end of file diff --git a/src/Export/Bases/sword.txt b/src/Export/Bases/sword.txt index 42e43d767c..1c2e216dcb 100644 --- a/src/Export/Bases/sword.txt +++ b/src/Export/Bases/sword.txt @@ -4,6 +4,7 @@ local itemBases = ... #type One Handed Sword #socketLimit 3 #baseTags weapon onehand sword one_hand_weapon +#influenceBaseTag sword #baseMatch Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/OneHandSword @@ -15,12 +16,14 @@ local itemBases = ... #type One Handed Sword #subType Thrusting +#influenceBaseTag sword #baseMatch Metadata/Items/Weapons/OneHandWeapons/OneHandThrustingSwords/Rapier #type Two Handed Sword #subType #socketLimit 6 #baseTags weapon twohand sword two_hand_weapon +#influenceBaseTag 2h_sword #baseMatch Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/TwoHandSword #forceHide true diff --git a/src/Export/Bases/wand.txt b/src/Export/Bases/wand.txt index 1f7abd982e..a74f27e80f 100644 --- a/src/Export/Bases/wand.txt +++ b/src/Export/Bases/wand.txt @@ -3,20 +3,24 @@ local itemBases = ... #type Wand #baseTags weapon onehand wand ranged one_hand_weapon +#influenceBaseTag wand #socketLimit 3 #baseMatch Metadata/Items/Weapons/OneHandWeapons/Wands/Wand[ME]?%d+ #type Wand #baseTags weapon onehand wand ranged one_hand_weapon weapon_can_roll_minion_modifiers +#influenceBaseTag wand #socketLimit 3 #base Metadata/Items/Weapons/OneHandWeapons/Wands/WandAtlas1 #type Wand #baseTags weapon onehand wand ranged one_hand_weapon weapon_can_roll_minion_modifiers +#influenceBaseTag wand #socketLimit 3 #base Metadata/Items/Weapons/OneHandWeapons/Wands/WandMinion1 #type Wand #baseTags weapon onehand wand ranged one_hand_weapon weapon_can_roll_minion_modifiers +#influenceBaseTag wand #socketLimit 3 #base Metadata/Items/Weapons/OneHandWeapons/Wands/WandMinion2 \ No newline at end of file diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index 606e487b21..b203214713 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -20,6 +20,10 @@ directiveTable.baseTags = function(state, args, out) end end +directiveTable.influenceBaseTag = function(state, args, out) + state.influenceBaseTag = args +end + directiveTable.forceShow = function(state, args, out) state.forceShow = (args == "true") end @@ -98,6 +102,15 @@ directiveTable.base = function(state, args, out) out:write(tag, ' = true, ') end out:write('},\n') + local influencePrefix = state.influenceBaseTag + if influencePrefix then + out:write('\tinfluenceTags = { ') + for i, influenceSuffix in ipairs({ "shaper", "elder", "adjudicator", "basilisk", "crusader", "eyrie", "cleansing", "tangle" }) do + if i ~= 1 then out:write(", ") end + out:write(influenceSuffix, ' = "', influencePrefix, "_", influenceSuffix, '"') + end + out:write(' },\n') + end local movementPenalty local implicitLines = { } local implicitModTypes = { } diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 53cfeede85..cd389830dc 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -807,7 +807,11 @@ function stringify(thing) return ""..thing; elseif type(thing) == 'table' then local s = "{"; - for k,v in pairs(thing) do + local keys = { } + for key in pairs(thing) do table.insert(keys, key) end + table.sort(keys) + for _, k in ipairs(keys) do + local v = thing[k] s = s.."\n\t" if type(k) == 'number' then s = s.."["..k.."] = "