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 878dead0f0..50b64c417f 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -459,16 +459,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 @@ -677,14 +668,10 @@ function ItemClass:GetModSpawnWeight(mod, extraTags) 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 d106109343..04767cf4de 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -282,6 +282,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, { @@ -294,7 +314,7 @@ on trade site to work on other leagues and realms)]] stat = "TotalEHP", weightMult = 0.5, }) - self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", nil, "TOPRIGHT"}, -12, 19, 150, 18, "^7Adjust search weights:", function() + self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", self.controls.fetchCountEdit, "BOTTOMRIGHT"}, 0, 4, 154, row_height, "^7Adjust search weights:", function() self:SetStatWeights() end) self.controls.StatWeightMultipliersButton.tooltipFunc = function(tooltip) @@ -307,18 +327,18 @@ 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,"BOTTOMRIGHT"}, 0, 4, 154, 18, self.itemSortSelectionList, function(index, value) + self.controls.itemSortSelection = new("DropDownControl", {"TOPRIGHT",self.controls.StatWeightMultipliersButton,"TOPLEFT"}, -8, 0, 160, row_height, self.itemSortSelectionList, function(index, value) self.pbItemSortSelectionIndex = index for index, _ in pairs(self.resultTbl) do self:UpdateControlsWithItems(slotTables[index], index) @@ -332,26 +352,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", {"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, -4, 0, 100, 16, "^7Sort Items By:") - - self.maxFetchPerSearchDefault = 2 - self.controls.fetchCountEdit = new("EditControl", {"TOPRIGHT", self.controls.itemSortSelectionLabel, "TOPLEFT"}, -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", {"TOPLEFT", self.controls.setSelect, "TOPRIGHT"}, 18, 0, 20, 16, "^7Realm:") @@ -629,6 +639,10 @@ function TradeQueryClass:SortFetchResults(slotTbl, trade_index, mode) local baseItemOutput = calcFunc({ }) for index, tbl in pairs(self.resultTbl[trade_index]) do local item = new("Item", tbl.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 = calcFunc({ repSlotName = slotName, repItem = item }, {}) out[index] = self.tradeQueryGenerator.WeightedRatioOutputs(baseItemOutput, output, self.statSortSelectionList) end @@ -650,7 +664,7 @@ function TradeQueryClass:SortFetchResults(slotTbl, trade_index, mode) return out end local newTbl = {} - if mode == self.sortModes.WEIGHT then + if mode == self.sortModes.Weight then for index, _ in pairs(self.resultTbl[trade_index]) do t_insert(newTbl, { outputAttr = index, index = index }) end @@ -661,7 +675,7 @@ function TradeQueryClass:SortFetchResults(slotTbl, trade_index, mode) t_insert(newTbl, { outputAttr = statValue, index = 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 StatValueTable = getStatValueTable() local priceTable = getPriceTable() if priceTable == nil then @@ -671,7 +685,7 @@ function TradeQueryClass:SortFetchResults(slotTbl, trade_index, mode) t_insert(newTbl, { outputAttr = statValue / priceTable[index], index = 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 ea958943f1..d281365b90 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -20,11 +20,24 @@ 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 tradeStatCategoryIndices = { @@ -45,19 +58,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, @@ -149,10 +149,7 @@ 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 + if 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 @@ -180,6 +177,11 @@ function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed) if modLine == specialCaseData.overrideModLineSingular then modLine = "Bow Attacks fire 1 additional Arrows" end + elseif statOrder == 1509 then + specialCaseData.overrideModLineSingular = "Projectiles Pierce an additional Target" + if modLine == specialCaseData.overrideModLineSingular then + modLine = "Projectiles Pierce 1 additional Target" + end end -- If this is the first tier for this mod, find matching trade mod and init the entry @@ -191,14 +193,27 @@ function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed) local uniqueIndex = tostring(statOrder).."_"..mod.group if self.modData[modType][uniqueIndex] == nil then local tradeMod = nil - local matchStr = modLine:gsub("[#()0-9%-%+%.]","") - for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do - if entry.text:gsub("[#()0-9%-%+%.]","") == matchStr then - tradeMod = entry - break + + -- 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 + tradeMod = entry + break + end end end - if tradeMod == nil then logToFile("Unable to match %s mod: %s", modType, modLine) goto nextModLine @@ -286,11 +301,23 @@ 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) + self:GenerateModData(data.itemMods.Flask, tradeQueryStatsParsed) -- Base item implicit mods. A lot of this code is duplicated from generateModData(), but with important small logical flow changes to handle the format differences for baseName, entry in pairs(data.itemBases) do @@ -463,6 +490,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) local testItemType = existingItem and existingItem.baseName or "Unset Amulet" local itemCategoryQueryStr local itemCategory + -- trade site item codes https://pastebin.com/3W7hT9BE if slot.slotName == "Weapon 2" or slot.slotName == "Weapon 1" then if existingItem then if existingItem.type == "Shield" then @@ -473,11 +501,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 @@ -521,6 +582,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 @@ -617,7 +681,7 @@ function TradeQueryGeneratorClass:FinishQuery() -- 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 = currentStatDiff * 0.7 + local minWeight = currentStatDiff * 0.5 -- Sort by mean Stat diff rather than weight to more accurately prioritize stats that can contribute more table.sort(self.modWeights, function(a, b) diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index 562a1cfd7b..4da2ed80d4 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, 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, 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 a2c595e9ab..2c1f0bc493 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, 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, 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, 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, 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 = "+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, 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 = "+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, 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 = "+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 d03aaad255..dc5f9f902f 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 = { 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 = "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 = { 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 = "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 ef629d2b6f..2152ac2be2 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, 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 = "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, 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 = "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, 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 = "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 f2b27cee9f..795b661aaf 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 = { 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 = "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 = { 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 = "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 = { 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 = "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 bac968c218..ae593f018a 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 = { 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 = "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 = { 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 = "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 = { 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 = "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 = { rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, not_for_sale = 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 = "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 = { rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, not_for_sale = 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 = "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 = { rune_dagger = true, onehand = true, not_for_sale = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, }, + tags = { onehand = true, not_for_sale = 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 = "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 41421ed739..e64e948bf4 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 = { 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 = "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 = { 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 = "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 = { 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 = "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 = 5, PhysicalMax = 8, CritChanceBase = 6, AttackRateBase = 1.55, 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 = 8, PhysicalMax = 12, CritChanceBase = 6, AttackRateBase = 1.5, 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 = 10, PhysicalMax = 19, CritChanceBase = 6, AttackRateBase = 1.4, 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 = 14, PhysicalMax = 22, CritChanceBase = 6.5, AttackRateBase = 1.4, 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 = 18, PhysicalMax = 27, CritChanceBase = 6, AttackRateBase = 1.4, 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 = 17, PhysicalMax = 31, CritChanceBase = 6, AttackRateBase = 1.45, 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 = { 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 = "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 = { 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 = "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 = { 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 = "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, 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 = "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, 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 = "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, 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 = "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 1e221ad133..cf6809879d 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, 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, 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 2c5d3db10f..60c6e8734d 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 = { 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 = { 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 = { 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 = { 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 = { 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 = { 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, 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, 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, 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 099a708231..ac0fb29896 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, 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 = "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, 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 = "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, 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 = "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, not_for_sale = 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 = "+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, not_for_sale = 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 = "+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, not_for_sale = 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 = "+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 ae6d19ce36..cad504b71d 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 = { 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 = { 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 = { 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, 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, 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, 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 ede80c27ef..e1cd48967e 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 = "(10-14)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(18-22)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(15-19)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(20-24)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(29-33)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 7, AttackRateBase = 1.3, Range = 120, }, @@ -96,6 +106,7 @@ itemBases["Serpent 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 = "(26-30)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(31-35)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(38-42)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = "(35-39)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "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 = { 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 = "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 = { 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 = "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 = { 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 = "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 81af032ccd..7dae1aaf1e 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -3,173 +3,178 @@ return { ["Explicit"] = { - ["94_LocalIncreaseSocketedColdGemLevel"] = { + ["3954_DualWieldingCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["id"] = "explicit.stat_2546185479", + ["text"] = "#% to Critical Strike Multiplier while Dual Wielding", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 18, }, - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["AnyJewel"] = { + ["min"] = 15, + ["max"] = 18, }, }, - ["4115_AccuracyIfNoEnemySlainRecently"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2806435316", - ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["2689_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["min"] = 4, + ["max"] = 4, }, ["sign"] = "", - }, - ["1365_ChillEffectivenessOnSelf"] = { + ["Dagger"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["Wand"] = { + ["min"] = 4, + ["max"] = 4, }, }, - ["1690_MinionDamageOnWeapon"] = { + ["6784_ChanceToPoisonSupported"] = { + ["1HSword"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 15, + ["max"] = 20, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["2HWeapon"] = { - ["min"] = 51, - ["max"] = 130, + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 20, + }, ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["min"] = 15, + ["max"] = 20, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["2HMace"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["100_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["4154_AdditionalBlockWith5NearbyEnemies"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", + ["id"] = "explicit.stat_1214532298", + ["text"] = "#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", }, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 2, + ["max"] = 5, + }, + }, + ["6283_ShockChanceAndEffect"] = { ["specialCaseData"] = { }, - ["sign"] = "+", + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + }, ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 8, + ["max"] = 15, }, + ["sign"] = "", }, - ["1112_ChaosDamageForJewel"] = { + ["1287_IncreasedEvasionForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", }, ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["min"] = 14, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["min"] = 14, + ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 9, - ["max"] = 13, + ["min"] = 14, + ["max"] = 18, }, }, - ["8309_SpellDamagePer16Strength"] = { + ["8777_MinionInstability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", }, - ["sign"] = "", }, - ["1318_ItemFoundRarityIncrease"] = { - ["Gloves"] = { - ["min"] = 6, - ["max"] = 14, + ["3906_AvoidBleedAndPoison"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 26, - }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 26, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 26, - }, ["Boots"] = { - ["min"] = 6, - ["max"] = 14, - }, - }, - ["1570_AvoidStunForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["min"] = 41, + ["max"] = 70, }, - ["sign"] = "", }, - ["876_ChanceToSuppressSpellsOld"] = { + ["891_ChanceToSuppressSpellsOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -183,3043 +188,3351 @@ return { }, ["sign"] = "+", }, - ["962_LocalArmourPenetration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3579673398", - ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", + ["1670_LightningAddedAsChaos"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 9, + ["max"] = 10, }, - ["2HWeapon"] = { - ["min"] = 13, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + ["Claw"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1212_CriticalStrikeMultiplier"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 24, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Wand"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 38, + ["Bow"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 9, + ["max"] = 10, }, }, - ["5235_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["1486_MaximumManaOnKillPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", }, ["Chest"] = { ["min"] = 3, - ["max"] = 3, + ["max"] = 6, }, ["sign"] = "", }, - ["7821_IncreasedAilmentEffectOnEnemies"] = { - ["Shield"] = { - ["min"] = 15, - ["max"] = 25, - }, + ["1108_ColdDamagePercentagePrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, - }, - ["Quiver"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 15, - ["max"] = 40, + ["min"] = 20, + ["max"] = 30, }, - ["Boots"] = { - ["min"] = 30, - ["max"] = 60, + ["Belt"] = { + ["min"] = 16, + ["max"] = 30, }, }, - ["369_SocketedAttacksDamageFinal"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1970781345", - ["text"] = "Socketed Skills deal #% more Attack Damage", - }, + ["2664_BlindOnHitSupported"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 40, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 40, - }, - }, - ["1402_ChaosDamageLifeLeechPermyriad"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + }, + ["1295_EnergyShieldAndPercent"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, + ["sign"] = "+", }, - ["1283_EnergyShieldAndPercent"] = { + ["140_IncreaseSocketedSupportGemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1183_SpellCritChanceForJewel"] = { + ["1099_FireDamagePercentage"] = { + ["Wand"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["sign"] = "", + ["Staff"] = { + ["min"] = 3, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 26, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["Ring"] = { + ["min"] = 3, + ["max"] = 22, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["1HMace"] = { + ["min"] = 3, + ["max"] = 30, }, }, - ["2147_LightningResistancePhysTakenAsLightning"] = { - ["specialCaseData"] = { + ["4481_FireExposureOnHit"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 11, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", }, - ["sign"] = "", - }, - ["1870_IncreasedLifeLeechRate"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 20, }, - ["Ring"] = { - ["min"] = 35, - ["max"] = 50, + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 11, + ["max"] = 20, }, - ["sign"] = "", }, - ["2495_ColdLightningResistanceForJewel"] = { + ["1306_IncreasedLife"] = { + ["Shield"] = { + ["min"] = 100, + ["max"] = 109, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["Chest"] = { + ["min"] = 100, + ["max"] = 129, }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 3, + ["max"] = 99, }, ["specialCaseData"] = { }, ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 3, + ["max"] = 99, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 3, + ["max"] = 99, }, }, - ["1644_TrapSpeedCooldownSupported"] = { - ["specialCaseData"] = { + ["1306_LocalIncreasedArmourAndLife"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 26, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, }, - ["sign"] = "", - }, - ["5843_GraceReservationEfficiency"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 17, + ["max"] = 26, }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, }, - ["sign"] = "", }, - ["4159_PhysicalDamageReductionDuringFocus"] = { - ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["1279_ReducedPhysicalDamageTakenMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3753650187", - ["text"] = "#% additional Physical Damage Reduction while Focused", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 13, - ["max"] = 15, + ["Boots"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["8445_FireResistanceAilments"] = { + ["1127_LocalChanceToPoisonOnHitChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["sign"] = "", }, - ["2672_SpellAddedFireDamagePenetrationHybrid"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["2870_BleedingDamageChanceWeaponSuffix"] = { + ["2HMace"] = { + ["min"] = 21, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 50, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["Bow"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 50, }, - }, - ["7698_MinionDamageVSAbyssMonsters"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1086057912", - ["text"] = "Minions deal #% increased Damage against Abyssal Monsters", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 50, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 50, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 40, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 50, }, - }, - ["1793_FireDamageWithBowsJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["1HWeapon"] = { + ["min"] = 21, + ["max"] = 50, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["1HSword"] = { + ["min"] = 21, + ["max"] = 50, }, }, - ["3990_ManaRegenerationMaven"] = { - ["specialCaseData"] = { + ["1286_LocalBaseEvasionRatingAndLife"] = { + ["Gloves"] = { + ["min"] = 14, + ["max"] = 120, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 20, + ["min"] = 14, + ["max"] = 120, }, - ["sign"] = "", - }, - ["144_SupportedByIncreasedAreaOfEffectDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 14, + ["max"] = 120, }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["Boots"] = { + ["min"] = 14, + ["max"] = 120, }, - ["sign"] = "", }, - ["7815_NonChaosAddedAsChaos"] = { + ["3457_LocalColdDamageTwoHandAndPen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", }, ["sign"] = "", }, - ["7713_MinionMaxElementalResistance"] = { - ["specialCaseData"] = { + ["1297_LocalEnergyShieldPercent"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 100, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_10224385", - ["text"] = "Minions have #% to all maximum Elemental Resistances", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", }, - ["sign"] = "+", ["Shield"] = { - ["min"] = 3, - ["max"] = 8, - }, - }, - ["1130_SpellAddedFireSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["min"] = 101, + ["max"] = 110, }, - ["AbyssJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 100, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["Chest"] = { + ["min"] = 11, + ["max"] = 110, + }, + ["Boots"] = { + ["min"] = 11, + ["max"] = 100, }, }, - ["1515_SupportedByVolleySpeed"] = { + ["2160_FireResistancePhysTakenAsFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, ["sign"] = "", }, - ["2671_ElementalPenetration"] = { - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, - }, + ["2882_PoisonOnHitAndDamage"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, ["tradeMod"] = { ["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, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 7, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 15, + ["max"] = 30, }, }, - ["7685_MinionAttacksBlindOnHitChance"] = { + ["8730_ZealotryReservationEfficiency"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2431643207", - ["text"] = "Minions have #% chance to Blind on Hit with Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, - }, }, - ["1086_AddedFireAndColdDamage"] = { + ["4001_ElementalDamageTakenWhileStationary"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, - }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, - }, }, - ["878_DualWieldingSpellBlockForJewel"] = { + ["340_SupportedByFortifyWeapon"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_138741818", - ["text"] = "#% Chance to Block Spell Damage while Dual Wielding", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", }, - ["AbyssJewel"] = { + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { ["min"] = 1, ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { + ["sign"] = "", + ["2HAxe"] = { ["min"] = 1, ["max"] = 1, }, - ["AnyJewel"] = { + ["Staff"] = { ["min"] = 1, ["max"] = 1, }, }, - ["7815_WeaponSpellDamageAddedAsChaos"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - }, - ["sign"] = "", - }, - ["372_SocketedAttacksManaCostMaven"] = { + ["348_MinionDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have # to Total Mana Cost", + ["id"] = "explicit.stat_808939569", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, }, - ["sign"] = "-", + ["sign"] = "", }, - ["1941_PhysicalAttackDamageTaken"] = { + ["1295_IncreasedEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", - }, - ["sign"] = "-", - ["Belt"] = { - ["min"] = 35, - ["max"] = 36, + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, + ["sign"] = "+", }, - ["1287_EnergyShieldRegeneration"] = { - ["Gloves"] = { - ["min"] = 24, - ["max"] = 38, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["1131_LocalChaosDamage"] = { + ["2HMace"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 38, + ["1HSword"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 24, - ["max"] = 38, + ["Dagger"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - ["Boots"] = { - ["min"] = 24, - ["max"] = 38, + ["Claw"] = { + ["min"] = 80.5, + ["max"] = 123.5, + }, + ["2HSword"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - }, - ["1794_AddedFireDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2154290807", - ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Wand"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 80.5, + ["max"] = 123.5, + }, + ["1HAxe"] = { + ["min"] = 80.5, + ["max"] = 123.5, + }, + ["2HWeapon"] = { + ["min"] = 80.5, + ["max"] = 123.5, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 80.5, + ["max"] = 123.5, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, }, - ["243_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["1885_LifeLeechSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3699494172", - ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", }, ["sign"] = "", }, - ["2147_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["3176_TrapAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 9, + ["id"] = "explicit.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", }, ["sign"] = "", }, - ["1552_FrenzyChargeOnHitChance"] = { - ["specialCaseData"] = { - }, + ["3073_FireDamageAvoidance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", }, ["Chest"] = { - ["min"] = 10, + ["min"] = 8, ["max"] = 10, }, - ["sign"] = "", - }, - ["7773_MovementSpeedIfNotDamagedRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3854949926", - ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 4, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 4, - }, - }, - ["2145_PhysicalDamageTakenAsFireUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["Quiver"] = { + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, - }, - ["Chest"] = { + ["Shield"] = { ["min"] = 5, - ["max"] = 15, - }, - }, - ["1741_FreezeChanceAndDurationMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["max"] = 10, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", }, - ["4391_AttacksBlindOnHitChance"] = { - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["1009_PhysicalDamage"] = { + ["Gloves"] = { + ["min"] = 1.5, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", }, ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 2, + ["max"] = 31, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["Amulet"] = { + ["min"] = 1.5, + ["max"] = 20.5, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["Ring"] = { + ["min"] = 1.5, + ["max"] = 12, }, }, - ["959_DualWieldingSpellDamageForJewel"] = { + ["1230_SpellCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% to Critical Strike Multiplier for Spell Damage", }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 12, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 12, + ["max"] = 15, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, - }, - ["7942_ReducedPhysicalReflectTakenMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", - }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + ["min"] = 12, + ["max"] = 15, }, - ["sign"] = "", }, - ["2752_DamageWhileLeeching"] = { + ["1475_LifeGainPerTarget"] = { ["Gloves"] = { - ["min"] = 54, - ["max"] = 60, + ["min"] = 2, + ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - }, - ["Amulet"] = { - ["min"] = 54, - ["max"] = 60, + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 30, + ["Amulet"] = { + ["min"] = 2, + ["max"] = 4, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 45, + ["Ring"] = { + ["min"] = 2, + ["max"] = 20, }, }, - ["1346_FireResistancePrefix"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["1349_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", - }, - ["1533_IncreasedMaximumPowerCharges"] = { + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 3, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skill Gems", }, ["specialCaseData"] = { }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["1HWeapon"] = { ["min"] = 1, ["max"] = 1, }, - ["Helmet"] = { + ["Shield"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1231_LightningCritMultiplierForJewel"] = { + ["1101_AddedFireAndColdDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2441475928", - ["text"] = "#% to Critical Strike Multiplier with Lightning Skills", + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["sign"] = "", + ["Ring"] = { + ["min"] = 17, + ["max"] = 19, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, }, }, - ["1141_AttackSpeedWhileDualWieldingForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4249220643", - ["text"] = "#% increased Attack Speed while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1361_FireResistance"] = { + ["2HMace"] = { + ["min"] = 6, + ["max"] = 48, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 48, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Bow"] = { + ["min"] = 6, + ["max"] = 48, }, - }, - ["885_BlockStaffForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 48, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 6, + ["max"] = 48, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Quiver"] = { + ["min"] = 6, + ["max"] = 48, }, - }, - ["1751_CullingStrike"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", + ["Staff"] = { + ["min"] = 6, + ["max"] = 48, }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["2HSword"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Ring"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 48, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 6, + ["max"] = 48, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Belt"] = { + ["min"] = 6, + ["max"] = 48, }, }, - ["3945_PowerChargeOnBlockUber"] = { - ["specialCaseData"] = { + ["1751_LocalAccuracyRating"] = { + ["1HSword"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["Wand"] = { + ["min"] = 80, + ["max"] = 780, + }, + ["2HMace"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["Staff"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["1HMace"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["Claw"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["2HSword"] = { + ["min"] = 80, + ["max"] = 624, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + }, + ["Bow"] = { + ["min"] = 80, + ["max"] = 780, + }, + ["2HAxe"] = { + ["min"] = 80, + ["max"] = 624, + }, + ["1HAxe"] = { + ["min"] = 80, + ["max"] = 624, }, ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 25, + ["min"] = 80, + ["max"] = 780, + }, + ["1HWeapon"] = { + ["min"] = 80, + ["max"] = 780, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, - ["sign"] = "", }, - ["1291_BaseLifeAndMana"] = { + ["1295_EnergyShieldAndRegen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, ["sign"] = "+", }, - ["1523_MaximumEnduranceChargesMaven"] = { + ["4721_CannotBeChilledOrFrozenWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", }, - ["sign"] = "+", - ["Boots"] = { + ["Amulet"] = { ["min"] = 1, ["max"] = 1, }, }, - ["4909_FortifyOnMeleeStun"] = { + ["1367_ColdResistancePrefix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, + ["sign"] = "+", }, - ["1658_FireAddedAsChaos"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", - }, - ["sign"] = "", + ["736_FlaskBuffCriticalWhileHealing"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, - }, - }, - ["1399_LightningDamageLifeLeechPermyriad"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", }, - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 26, + ["max"] = 55, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, - }, }, - ["408_SupportDamageOverTime"] = { + ["2161_ColdResistancePhysTakenAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3846088475", - ["text"] = "Socketed Gems deal #% more Damage over Time", + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", }, ["sign"] = "", }, - ["2221_CurseOnHitLevelVulnerabilityMod"] = { - ["specialCaseData"] = { + ["4959_ChanceToUnnerveOnHit"] = { + ["Gloves"] = { + ["min"] = 4, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", + ["1HMace"] = { + ["min"] = 7, + ["max"] = 15, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7, + ["max"] = 15, }, - }, - ["2672_FireResistancePenetration"] = { - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + ["Staff"] = { + ["min"] = 7, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - }, - ["sign"] = "", - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", }, ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 10, + ["min"] = 7, ["max"] = 15, }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["1301_WeaponSpellDamageAndMana"] = { + ["1317_MaximumManaIncreaseShaper"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 45, + ["Chest"] = { + ["min"] = 9, + ["max"] = 18, }, - ["sign"] = "+", + ["sign"] = "", }, - ["2867_PoisonDamageAddedChaosToAttacks"] = { - ["specialCaseData"] = { - }, + ["2161_PhysicalDamageTakenAsColdUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 13, + }, }, - ["1130_FireDamageWeaponPrefixAndFlat"] = { - ["specialCaseData"] = { + ["1630_ChaosDamageAndChaosSkillDuration"] = { + ["1HSword"] = { + ["min"] = 13, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["Wand"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["2HMace"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["Staff"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["1HMace"] = { + ["min"] = 13, + ["max"] = 30, }, ["sign"] = "", - }, - ["1690_MinionDamageAndMinionMaximumLife"] = { + ["Dagger"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["Claw"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 13, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 13, + ["max"] = 30, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 59, + ["2HAxe"] = { + ["min"] = 13, + ["max"] = 30, + }, + ["1HAxe"] = { + ["min"] = 13, + ["max"] = 30, }, ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 59, + ["min"] = 13, + ["max"] = 30, }, - }, - ["4379_IncreasedAttackSpeedPerDexterity"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 13, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_889691035", - ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1828_SpellAddedLightningDamageWhileDualWielding"] = { + ["1297_LocalIncreasedEnergyShieldAndLife"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 28, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3352373076", - ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["Helmet"] = { + ["min"] = 24, + ["max"] = 28, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["Boots"] = { + ["min"] = 24, + ["max"] = 28, }, }, - ["3074_ColdDamageTakenPercentage"] = { + ["146_LocalIncreaseSocketedColdGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", + ["id"] = "explicit.stat_1164882313", + ["text"] = "#% to Quality of Socketed Cold Gems", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 3, + ["max"] = 7, + }, + }, + ["1492_GainLifeOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 5, + ["max"] = 100, + }, }, - ["1577_FreezeChanceAndDurationForJewel"] = { + ["974_DualWieldingSpellDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", }, ["AbyssJewel"] = { - ["min"] = 12, + ["min"] = 14, ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 12, + ["min"] = 14, ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 12, + ["min"] = 14, ["max"] = 16, }, }, - ["2338_EnergyShieldRegenerationPerMinuteMaven"] = { + ["559_SummonWolfOnKillOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", }, - ["Helmet"] = { + ["Amulet"] = { ["min"] = 1, - ["max"] = 1.5, + ["max"] = 1, }, - ["sign"] = "", }, - ["8557_DesecratedGroundEffectEffectiveness"] = { + ["2339_MinimumFrenzyChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4004298002", - ["text"] = "Unaffected by Desecrated Ground", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", }, + ["sign"] = "", }, - ["7770_MovementSpeedIfHitRecently"] = { + ["423_SupportDamageOverTime"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3178542354", - ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", }, ["sign"] = "", - ["specialCaseData"] = { + }, + ["560_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HSword"] = { + ["min"] = 15, + ["max"] = 15, }, - ["2HWeapon"] = { - ["min"] = 5, + ["Staff"] = { + ["min"] = 15, ["max"] = 15, }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["2HMace"] = { + ["min"] = 15, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 15, }, - }, - ["1301_IncreasedManaAndReservation"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 15, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["Bow"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 15, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["1352_ColdResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", }, - ["AbyssJewel"] = { - ["min"] = 12, + ["Claw"] = { + ["min"] = 15, ["max"] = 15, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 15, + ["max"] = 15, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, + ["1HAxe"] = { + ["min"] = 15, ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 12, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 15, ["max"] = 15, }, + ["specialCaseData"] = { + }, }, - ["5059_ConsecratedGroundStationaryMaven"] = { + ["1320_IncreasedManaAndDegenGracePeriod"] = { ["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_838272676", + ["text"] = "Lose # Mana per second", }, + ["sign"] = "", }, - ["4357_AddedLightningDamagePerIntelligence"] = { + ["3066_HatredAuraEffect"] = { + ["1HMace"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 48, + ["max"] = 60, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["id"] = "explicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", }, ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 4.5, + ["min"] = 48, + ["max"] = 60, }, ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 3.5, + ["min"] = 28, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 28, + ["max"] = 40, }, - ["sign"] = "", }, - ["1306_SpellDamageAndManaRegenerationRate"] = { + ["620_FlaskPartialInstantRecovery"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + }, + ["AbyssJewel"] = { + ["min"] = 135, + ["max"] = 135, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 40, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 135, + ["max"] = 135, }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 135, + ["max"] = 135, }, - ["sign"] = "", }, - ["1745_ChanceToShockForJewel"] = { - ["specialCaseData"] = { + ["1278_LocalBaseArmourAndEvasionRating"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 375, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + }, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 375, }, - ["sign"] = "", - }, - ["5829_ChanceToShockAddedDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_90012347", - ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 5, + ["max"] = 375, }, - ["Ring"] = { - ["min"] = 35.5, - ["max"] = 47, + ["Boots"] = { + ["min"] = 5, + ["max"] = 375, }, - ["sign"] = "", }, - ["1085_SelfFireAndLightningDamageTaken"] = { + ["1372_LightningResistanceAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["8469_TailwindOnCriticalStrikeMaven"] = { - ["specialCaseData"] = { - }, + ["976_LocalIncreasedPhysicalDamagePercentAndPierce"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2172944497", - ["text"] = "#% increased Effect of Tailwind on you", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["Wand"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 25, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["Bow"] = { + ["min"] = 25, + ["max"] = 69, }, }, - ["1104_LightningDamagePercentagePrefix"] = { + ["102_PercentageIntelligenceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["231_ProjectileDamageSupported"] = { + ["189_SupportedByEnhance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1390285657", - ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", }, ["sign"] = "", }, - ["2781_VaalSkillDamage"] = { + ["1609_ReducedIgniteDurationOnSelf"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 20, - ["max"] = 40, + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 40, + ["AbyssJewel"] = { + ["min"] = 30, + ["max"] = 35, }, - }, - ["6908_ManaGainedOnSpellHit"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2474196346", - ["text"] = "Gain # Mana per Enemy Hit with Spells", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 30, + ["max"] = 35, }, - ["Ring"] = { - ["min"] = 2, - ["max"] = 3, + ["AnyJewel"] = { + ["min"] = 30, + ["max"] = 35, }, - ["sign"] = "", }, - ["1297_LifeDegenerationAndPercentGracePeriod"] = { + ["2454_LocalMeleeWeaponRange"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", + ["id"] = "explicit.stat_350598685", + ["text"] = "# to Weapon Range", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1822_SpellAddedColdDamageWhileDualWielding"] = { + ["1760_ShockChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3376452528", - ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["min"] = 3, + ["max"] = 5, }, }, - ["1346_FireDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["1131_LocalChaosDamagePenetrationHybrid"] = { + ["Staff"] = { + ["min"] = 15, + ["max"] = 64.5, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 8, + ["max"] = 34.5, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["2HMace"] = { + ["min"] = 8, + ["max"] = 64.5, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["Wand"] = { + ["min"] = 8, + ["max"] = 34.5, }, - }, - ["2313_MapExtraInvasionBosses"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 8, + ["max"] = 34.5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 8, + ["max"] = 34.5, + }, + ["Claw"] = { + ["min"] = 8, + ["max"] = 34.5, + }, + ["2HSword"] = { + ["min"] = 8, + ["max"] = 64.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_279246355", - ["text"] = "Area is inhabited by an additional Invasion Boss", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + }, + ["Bow"] = { + ["min"] = 8, + ["max"] = 34.5, + }, + ["2HAxe"] = { + ["min"] = 8, + ["max"] = 64.5, + }, + ["1HAxe"] = { + ["min"] = 8, + ["max"] = 34.5, + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 64.5, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 34.5, }, - }, - ["1254_WardDelayRecovery"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1130670241", - ["text"] = "#% faster Restoration of Ward", + }, + ["1710_ElementalDamagePercent"] = { + ["2HMace"] = { + ["min"] = 37, + ["max"] = 94, + }, + ["1HMace"] = { + ["min"] = 19, + ["max"] = 49, }, ["sign"] = "", - }, - ["380_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 37, + ["max"] = 94, + }, + ["Bow"] = { + ["min"] = 37, + ["max"] = 94, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1859937391", - ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + }, + ["1HAxe"] = { + ["min"] = 19, + ["max"] = 49, + }, + ["1HSword"] = { + ["min"] = 19, + ["max"] = 49, + }, + ["Wand"] = { + ["min"] = 19, + ["max"] = 49, + }, + ["Ring"] = { + ["min"] = 25, + ["max"] = 30, + }, + ["Staff"] = { + ["min"] = 37, + ["max"] = 94, + }, + ["2HSword"] = { + ["min"] = 37, + ["max"] = 94, }, - ["sign"] = "", - }, - ["390_SocketedSpellCriticalMultiplier"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2828710986", - ["text"] = "Socketed Spells have #% to Critical Strike Multiplier", + ["Claw"] = { + ["min"] = 19, + ["max"] = 49, }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 90, + ["Belt"] = { + ["min"] = 11, + ["max"] = 30, + }, + ["Helmet"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["2HWeapon"] = { + ["min"] = 37, + ["max"] = 94, + }, + ["1HWeapon"] = { + ["min"] = 19, + ["max"] = 49, + }, + ["Dagger"] = { + ["min"] = 19, + ["max"] = 49, }, - ["sign"] = "+", }, - ["953_WeaponSpellDamageAddedAsChaos"] = { + ["1316_IncreasedManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["8111_ReflectsShocks"] = { + ["727_FlaskBuffAvoidShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291999509", - ["text"] = "Shock Reflection", + ["id"] = "explicit.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", }, + ["Flask"] = { + ["min"] = 31, + ["max"] = 55, + }, + ["sign"] = "", }, - ["5665_ShockNearbyEnemiesOnFocusCDR"] = { + ["1578_AvoidChillForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 8, + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", }, ["sign"] = "", }, - ["1796_AddedFireDamageWithMaces"] = { + ["7730_MinionSpellsHinderOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3146788701", - ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 3, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 3, + ["max"] = 8, }, }, - ["209_IncreasedCastSpeedSpellEcho"] = { + ["4452_ChanceToAvoidProjectiles"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_725896422", - ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 12, }, }, - ["1333_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1537_MinimumEnduranceCharges"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skill Gems", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, ["Shield"] = { ["min"] = 1, - ["max"] = 1, + ["max"] = 2, }, }, - ["113_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["1315_LifeRecoveryRate"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["sign"] = "", + ["Chest"] = { + ["min"] = 8, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 2, - ["max"] = 2, + ["Belt"] = { + ["min"] = 7, + ["max"] = 12, }, }, - ["6919_MaximumManaOnKillPercentMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_630994130", - ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", + ["5549_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { + ["BaseJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["1HMace"] = { + ["min"] = 0.5, + ["max"] = 0.5, }, ["sign"] = "", - }, - ["1097_SelfColdDamageTaken"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 0.5, + ["max"] = 0.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_617462123", - ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["Claw"] = { + ["min"] = 0.5, + ["max"] = 0.5, + }, + ["AnyJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, }, - ["sign"] = "", - }, - ["2902_AttackSpeedWithFortify"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_122450405", - ["text"] = "#% increased Attack Speed while Fortified", + ["id"] = "explicit.stat_588560583", + ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["AbyssJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 25, + ["Wand"] = { + ["min"] = 0.5, + ["max"] = 0.5, }, - }, - ["1658_ChaosDamageAsPortionOfFireDamage"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["1HWeapon"] = { + ["min"] = 0.5, + ["max"] = 0.5, }, - ["sign"] = "", - }, - ["2541_FishingCastDistance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_170497091", - ["text"] = "#% increased Fishing Range", - }, - ["sign"] = "", }, - ["6035_ShockChanceAndEffectMaven"] = { + ["4225_AngerReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_451866048", - ["text"] = "Shock Enemies as though dealing #% more Damage", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 50, + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1132_SpellAddedLightningDamageUber"] = { + ["5207_DamageWithBowSkills"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 64.5, + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", }, ["sign"] = "", - }, - ["1352_ColdResistanceLeech"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["Quiver"] = { + ["min"] = 5, + ["max"] = 50, }, - ["sign"] = "+", }, - ["3054_CannotBePoisoned"] = { + ["1104_LocalFireDamageAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, + ["sign"] = "", }, - ["926_MineDamageSupported"] = { + ["748_LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "explicit.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + ["Flask"] = { + ["min"] = 15, + ["max"] = 15, }, ["sign"] = "", }, - ["1602_ManaCostReductionForJewel"] = { + ["3131_MinionAttacksTauntOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", + ["id"] = "explicit.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", }, ["AbyssJewel"] = { ["min"] = 3, - ["max"] = 5, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, ["AnyJewel"] = { ["min"] = 3, - ["max"] = 5, - }, - }, - ["302_TotemDamageSpellSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 18, - ["max"] = 25, - }, - }, - ["5143_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3527458221", - ["text"] = "#% to Critical Strike Multiplier if you have Blocked Recently", - }, - ["2HWeapon"] = { - ["min"] = 35, - ["max"] = 45, + ["max"] = 8, }, - ["sign"] = "+", }, - ["6737_LocalItemQuality"] = { + ["1355_AllResistancesMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2016708976", - ["text"] = "#% to Quality", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", }, ["specialCaseData"] = { }, ["sign"] = "+", ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["min"] = 19, + ["max"] = 22, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 20, + ["Belt"] = { + ["min"] = 19, + ["max"] = 22, }, }, - ["1517_MovementVelocityAndCannotBeChilled"] = { - ["specialCaseData"] = { - }, + ["2621_MinionElementalResistancesForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 25, - ["max"] = 30, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 15, }, - }, - ["1305_BaseLifeAndManaDegenGracePeriod"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 11, + ["max"] = 15, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 15, }, - ["sign"] = "", }, - ["95_LocalIncreaseSocketedLightningGemLevel"] = { + ["1762_SupportedByIncreasedAreaOfEffectDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 37, }, - }, - ["3894_AreaOfEffectIfKilledRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3481736410", - ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["Wand"] = { + ["min"] = 23, + ["max"] = 37, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 37, }, - ["2HWeapon"] = { - ["min"] = 17, - ["max"] = 35, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 37, }, }, - ["1568_ChanceToAvoidPoison"] = { - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1483_LifeGainedFromEnemyDeath"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 14, + }, + ["2HMace"] = { + ["min"] = 3, + ["max"] = 14, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 50, - ["max"] = 50, + ["Dagger"] = { + ["min"] = 3, + ["max"] = 14, + }, + ["Claw"] = { + ["min"] = 3, + ["max"] = 14, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HAxe"] = { + ["min"] = 3, + ["max"] = 14, }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 50, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 14, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HSword"] = { + ["min"] = 3, + ["max"] = 14, }, - ["Chest"] = { - ["min"] = 50, - ["max"] = 50, + ["Quiver"] = { + ["min"] = 3, + ["max"] = 14, }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 50, + ["Wand"] = { + ["min"] = 3, + ["max"] = 14, }, - }, - ["8767_HexMaster"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 3, + ["max"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3849554033", - ["text"] = "Hex Master", + ["2HSword"] = { + ["min"] = 3, + ["max"] = 14, }, - }, - ["8551_ChilledGroundEffectEffectivenessMaven"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 3, + ["max"] = 14, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_937372143", - ["text"] = "Unaffected by Chill", + ["1HMace"] = { + ["min"] = 3, + ["max"] = 14, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 3, + ["max"] = 14, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 14, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 14, + }, + ["Bow"] = { + ["min"] = 3, + ["max"] = 14, }, }, - ["364_SocketedSkillsCriticalChance"] = { + ["5302_DecayOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1681904129", - ["text"] = "Socketed Gems have #% Critical Strike Chance", + ["id"] = "explicit.stat_3322709337", + ["text"] = "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", }, - ["sign"] = "+", }, - ["1576_ShockingConfluxMaven"] = { + ["367_DisplaySocketedGemsGetReducedReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", }, - ["Helmet"] = { + ["sign"] = "", + ["Shield"] = { ["min"] = 20, ["max"] = 30, }, - ["sign"] = "", }, - ["1130_SpellAddedFireDamageUber"] = { + ["549_FireBurstOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 61, + ["id"] = "explicit.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", }, - ["sign"] = "", }, - ["8641_WarcryAreaOfEffectMaven"] = { + ["5250_IncreasedDamagePerPowerCharge"] = { + ["2HMace"] = { + ["min"] = 7, + ["max"] = 8, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Helmet"] = { - ["min"] = 26, - ["max"] = 30, + ["Claw"] = { + ["min"] = 5, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1171_IncreasedCastSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 6, }, ["Amulet"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["1HSword"] = { ["min"] = 5, - ["max"] = 20, + ["max"] = 6, }, - ["Ring"] = { + ["Wand"] = { ["min"] = 5, - ["max"] = 16, + ["max"] = 10, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 7, + ["max"] = 17, + }, + ["2HSword"] = { + ["min"] = 7, + ["max"] = 8, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 8, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 49, + ["min"] = 7, + ["max"] = 17, }, ["1HWeapon"] = { ["min"] = 5, - ["max"] = 32, + ["max"] = 10, + }, + ["Bow"] = { + ["min"] = 7, + ["max"] = 8, }, - ["sign"] = "", }, - ["2149_PhysicalDamageTakenAsChaosUberMaven"] = { + ["1323_ManaRecoveryRateMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", }, ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", }, - ["2674_SpellAddedLightningDamagePenetrationHybrid"] = { + ["8763_ElementalOverload"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_3574189159", + ["text"] = "Elemental Overload", }, + }, + ["2202_BleedingDamageChance"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + }, ["sign"] = "", + }, + ["109_LocalIncreaseSocketedColdGemLevel"] = { ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 1, + ["max"] = 2, }, - }, - ["1838_EnduranceChargeOnKillChanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["id"] = "explicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", }, ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["min"] = 1, + ["max"] = 2, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, }, ["Boots"] = { - ["min"] = 50, - ["max"] = 50, + ["min"] = 2, + ["max"] = 2, }, }, - ["292_AreaDamageSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2388360415", - ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["1167_SwordAttackSpeedForJewel"] = { + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["1HSword"] = { + ["min"] = 6, + ["max"] = 8, }, - ["sign"] = "", - }, - ["1104_SpellAddedLightningDamageHybrid"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - }, ["sign"] = "", - }, - ["1184_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 22, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["2HSword"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 22, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["sign"] = "", }, - ["1132_SpellAddedLightningDamageHybrid"] = { + ["208_SkillEffectDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_407317553", + ["text"] = "Socketed Gems are Supported by Level # Increased Duration", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 20, + }, }, - ["1741_ChanceToFreeze"] = { + ["248_SupportedBySpellCascadeArea"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "explicit.stat_503990161", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 10, + ["1HMace"] = { + ["min"] = 16, ["max"] = 20, }, - ["sign"] = "", }, - ["8755_CrimsonDance"] = { + ["1411_ColdResistanceEnemyLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_300702212", - ["text"] = "Crimson Dance", + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", }, + ["sign"] = "", }, - ["1305_ManaDegenerationGracePeriod"] = { + ["4962_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", + ["id"] = "explicit.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", }, - ["sign"] = "", }, - ["5563_GlobalEvasionRatingPercentOnFullLife"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 50, + ["1689_ColdDamagePhysConvertedToCold"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_88817332", - ["text"] = "#% increased Global Evasion Rating when on Full Life", + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 50, + ["sign"] = "", + }, + ["2698_ChanceToGainOnslaughtOnKill"] = { + ["2HMace"] = { + ["min"] = 20, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 25, - ["max"] = 50, - }, - ["Boots"] = { - ["min"] = 25, - ["max"] = 50, + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 20, }, - }, - ["93_LocalIncreaseSocketedFireGemLevelMaven"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 10, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "+", ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 5, + ["max"] = 10, }, - }, - ["6716_NearbyEnemyColdDamageResistance"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 10, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2674336304", - ["text"] = "Nearby Enemies have #% to Cold Resistance", + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "-", }, - ["2601_MinionAttackAndCastSpeedOnWeapon"] = { + ["2651_IncreasedWandDamageForJewel"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["id"] = "explicit.stat_379328644", + ["text"] = "#% increased Damage with Wands", + }, + ["Wand"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["min"] = 14, + ["max"] = 16, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["1901_BeltFlaskLifeRecoveryRate"] = { + ["1113_LocalColdDamageHybrid"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, - }, }, - ["1661_LifeRegenerationAndPercent"] = { + ["2202_BleedOnHitAndDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 10, + ["max"] = 15, + }, }, - ["1832_SpellAddedPhysicalDamageWhileHoldingAShield"] = { + ["1146_SpellAddedColdDamageTwoHand"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3954157711", - ["text"] = "# to # Added Spell Physical Damage while holding a Shield", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { + ["2HWeapon"] = { ["min"] = 2, - ["max"] = 20.5, + ["max"] = 110.5, }, - }, - ["6224_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 2, + ["max"] = 110.5, }, + }, + ["1099_FireDamagePrefixFirePenetration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_497196601", - ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["Wand"] = { + ["min"] = 45, + ["max"] = 60, }, - ["sign"] = "", - }, - ["1280_EnergyShieldAndPercent"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 45, + ["max"] = 60, + }, + ["1HMace"] = { + ["min"] = 45, + ["max"] = 60, }, - ["sign"] = "+", }, - ["1174_CastSpeedWithAStaffForJewel"] = { + ["1216_TwoHandCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "explicit.stat_252507949", + ["text"] = "#% to Critical Strike Multiplier with Two Handed Melee Weapons", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 15, + ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 15, + ["max"] = 18, }, }, - ["1301_IncreasedManaAndRegen"] = { + ["1199_CriticalStrikeChance"] = { + ["Gloves"] = { + ["min"] = 16, + ["max"] = 60, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, + ["min"] = 10, + ["max"] = 38, }, ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["min"] = 10, + ["max"] = 25, }, }, - ["3293_PowerFrenzyOrEnduranceChargeOnKill"] = { + ["1268_LocalWardAndStunRecoveryPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_498214257", - ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 10, + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", }, ["sign"] = "", }, - ["5239_ColdResistanceAilments"] = { + ["8761_EldritchBattery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", }, - ["sign"] = "", }, - ["1301_IncreasedManaAndCost"] = { + ["128_LocalIncreaseSocketedSupportGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", }, - ["1925_CurseCastSpeedForJewel"] = { + ["4453_BleedDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2378065031", - ["text"] = "Curse Skills have #% increased Cast Speed", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", }, ["sign"] = "", }, - ["202_ChanceToMaimSupported"] = { + ["724_FlaskBuffAvoidChillFreeze"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["id"] = "explicit.stat_1619168299", + ["text"] = "#% chance to Avoid being Chilled during Effect", }, - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 31, + ["max"] = 55, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, }, - ["2673_SpellAddedColdDamagePenetrationHybrid"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - }, + ["1112_SelfColdDamageTaken"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, - }, - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 4, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", }, ["sign"] = "", }, - ["2539_FishingLureType"] = { + ["3962_SelfColdDamageTakenPerFrenzy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3360430812", - ["text"] = "Rhoa Feather Lure", + ["id"] = "explicit.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", }, + ["sign"] = "", }, - ["350_SupportedByEnduranceChargeOnStunWeapon"] = { + ["1127_PoisonDurationChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["sign"] = "", }, - ["1131_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["7988_PrideReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["4316_AttackAndCastSpeedWhileFocused"] = { + ["7653_AddedFireDamageIfCritRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2628163981", - ["text"] = "#% increased Attack and Cast Speed while Focused", + ["id"] = "explicit.stat_3144358296", + ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", }, ["Gloves"] = { - ["min"] = 45, - ["max"] = 50, + ["min"] = 19, + ["max"] = 37.5, }, ["sign"] = "", }, - ["2960_IncreasedStunThreshold"] = { + ["939_TrapDamageCooldownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + }, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["1092_FireGemCastSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1476643878", - ["text"] = "#% increased Cast Speed with Fire Skills", + ["1007_LocalPoisonDamageOverTimeMultiplier"] = { + ["1HSword"] = { + ["min"] = 37, + ["max"] = 59, }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Wand"] = { + ["min"] = 37, + ["max"] = 59, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 37, + ["max"] = 59, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Staff"] = { + ["min"] = 37, + ["max"] = 59, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["1HMace"] = { + ["min"] = 37, + ["max"] = 59, }, - }, - ["953_TwoHandWeaponSpellDamageAndMana"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["Claw"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HSword"] = { + ["min"] = 37, + ["max"] = 59, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_4096656097", + ["text"] = "#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + }, + ["Bow"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HAxe"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["1HAxe"] = { + ["min"] = 37, + ["max"] = 59, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 37, + ["max"] = 59, + }, + ["1HWeapon"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["940_DegenerationDamage"] = { + ["1361_FireResistanceLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1095_AddedFireAndColdDamage"] = { + ["2168_PercentDamageGoesToMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 3, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 3, }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 3, }, }, - ["963_MeleeDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, - }, + ["1219_DualWieldingCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 18, + }, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 18, }, }, - ["2856_PoisonDurationSupported"] = { + ["1580_AvoidIgniteForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - }, - ["Gloves"] = { - ["min"] = 17, - ["max"] = 20, + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", }, ["sign"] = "", }, - ["6893_MalevolenceReservation"] = { - ["specialCaseData"] = { + ["3455_LocalAttackReduceEnemyElementalResistance"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["Wand"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["2HMace"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["Staff"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["1HMace"] = { + ["min"] = 9, + ["max"] = 16, }, ["sign"] = "", - }, - ["6719_NearbyEnemyLightningDamageResistance"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["2HSword"] = { + ["min"] = 9, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1849749435", - ["text"] = "Nearby Enemies have #% to Lightning Resistance", + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", }, - ["Helmet"] = { + ["Bow"] = { ["min"] = 9, - ["max"] = 12, + ["max"] = 16, }, - ["sign"] = "-", - }, - ["192_CriticalStrikeChanceSpellsSupported"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 16, + }, + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 16, }, ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["min"] = 9, + ["max"] = 16, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1870_LifeLeechSpeed"] = { + ["8778_TheAgnostic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", }, - ["sign"] = "", }, - ["105_LocalIncreaseSocketedAuraLevel"] = { + ["8637_WarcryAreaOfEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", }, - ["sign"] = "+", - }, - ["1325_ExperienceIncrease"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 15, + ["max"] = 15, }, + ["sign"] = "", + }, + ["387_SocketedAttacksManaCost"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have # to Total Mana Cost", }, - ["Ring"] = { - ["min"] = 2, - ["max"] = 3, + ["Shield"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["Chest"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["Boots"] = { + ["min"] = 15, + ["max"] = 15, }, - ["sign"] = "", }, - ["6717_NearbyEnemyElementalDamageTaken"] = { + ["2160_PhysicalDamageTakenAsFireUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_639595152", - ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 9, + ["Chest"] = { + ["min"] = 16, + ["max"] = 18, }, ["sign"] = "", }, - ["876_ChanceToSuppressSpellsMavenOld"] = { + ["5633_PhysicalDamageTakenAsFireUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 16, - ["max"] = 18, + ["Chest"] = { + ["min"] = 7, + ["max"] = 10, }, + ["sign"] = "", }, - ["1200_TwoHandedCritChanceForJewel"] = { + ["1863_DamageOverTimeWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_764295120", - ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["id"] = "explicit.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, + ["min"] = 10, ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 14, + ["min"] = 10, ["max"] = 18, }, }, - ["2432_SpellDamagePer10Intelligence"] = { + ["5187_AdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 20, + ["max"] = 20, }, ["sign"] = "", }, - ["134_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["1691_LightningDamagePhysConvertedToLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3422008440", - ["text"] = "#% to Quality of Socketed Fire Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, + ["sign"] = "", }, - ["1302_MaximumManaIncreaseShaper"] = { + ["1123_SelfLightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 18, + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", }, ["sign"] = "", }, - ["2337_EnergyShieldRecoveryRateMaven"] = { - ["specialCaseData"] = { - }, + ["1846_SpellAddedPhysicalDamageWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", + ["id"] = "explicit.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", }, - ["Chest"] = { - ["min"] = 50, - ["max"] = 100, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, - ["sign"] = "", - }, - ["3905_FlaskChanceToNotConsumeCharges"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", - }, ["sign"] = "", - ["Belt"] = { - ["min"] = 6, - ["max"] = 10, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, }, - ["1875_MaximumMinionCountAndMinionLife"] = { - ["specialCaseData"] = { + ["1018_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["Wand"] = { + ["min"] = 15, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", + ["Bow"] = { + ["min"] = 21.5, + ["max"] = 24, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 15, + ["max"] = 17, }, - ["sign"] = "+", - }, - ["1133_SpellAddedChaosDamageHybrid"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 21.5, + ["max"] = 24, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["1HMace"] = { + ["min"] = 15, + ["max"] = 17, }, ["sign"] = "", - }, - ["3248_AuraEffectOnEnemies"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 15, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1636209393", - ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["Claw"] = { + ["min"] = 15, + ["max"] = 17, }, - ["sign"] = "", - }, - ["2506_GlobalChanceToBlindOnHitMaven"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 30, + ["2HSword"] = { + ["min"] = 21.5, + ["max"] = 24, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3503466234", - ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 30, + ["2HAxe"] = { + ["min"] = 21.5, + ["max"] = 24, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 21.5, + ["max"] = 24, }, - ["sign"] = "", - }, - ["1738_ChanceToIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 17, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 21.5, + ["max"] = 24, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["min"] = 15, + ["max"] = 17, }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, }, - ["1759_IncreasedAttackAndCastSpeedSupported"] = { - ["specialCaseData"] = { + ["1316_IncreasedMana"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 73, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["1HMace"] = { + ["min"] = 30, + ["max"] = 159, }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 14, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 30, + ["max"] = 159, }, - ["sign"] = "", - }, - ["1564_AvoidFreezeAndChill"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 30, + ["max"] = 159, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 78, + }, + ["Amulet"] = { + ["min"] = 15, + ["max"] = 78, + }, + ["Wand"] = { + ["min"] = 30, + ["max"] = 159, + }, + ["Staff"] = { + ["min"] = 40, + ["max"] = 229, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 73, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 100, - ["max"] = 100, + ["min"] = 15, + ["max"] = 73, }, - }, - ["2323_FrenzyChargeOnKillChanceMaven"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 10, + ["Belt"] = { + ["min"] = 15, + ["max"] = 68, + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 73, + }, + ["2HWeapon"] = { + ["min"] = 40, + ["max"] = 229, + }, + ["1HWeapon"] = { + ["min"] = 30, + ["max"] = 159, + }, + ["specialCaseData"] = { }, + }, + ["2168_ManaAndDamageTakenGoesToManaPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 10, + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["Amulet"] = { ["min"] = 7, - ["max"] = 10, + ["max"] = 8, }, - ["2HWeapon"] = { + ["Ring"] = { ["min"] = 7, - ["max"] = 10, + ["max"] = 8, }, }, - ["1084_FireDamageWeaponPrefix"] = { + ["1127_ChaosDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + }, + ["AbyssJewel"] = { + ["min"] = 9, + ["max"] = 13, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["BaseJewel"] = { + ["min"] = 9, + ["max"] = 13, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["AnyJewel"] = { + ["min"] = 9, + ["max"] = 13, }, }, - ["2325_PowerChargeOnKillChance"] = { + ["1530_ProjectileSpeedSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, }, - ["specialCaseData"] = { + ["sign"] = "", + }, + ["5444_IncreasedWeaponElementalDamagePercent"] = { + ["2HMace"] = { + ["min"] = 19, + ["max"] = 100, + }, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 59, }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 11, + ["max"] = 59, + }, + ["Bow"] = { + ["min"] = 19, + ["max"] = 100, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + }, + ["1HAxe"] = { + ["min"] = 11, + ["max"] = 59, + }, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 50, + }, + ["1HSword"] = { + ["min"] = 11, + ["max"] = 59, + }, + ["Wand"] = { + ["min"] = 11, + ["max"] = 59, + }, + ["2HAxe"] = { + ["min"] = 19, + ["max"] = 100, + }, + ["Staff"] = { + ["min"] = 19, + ["max"] = 100, + }, + ["2HSword"] = { + ["min"] = 19, + ["max"] = 100, + }, + ["Claw"] = { + ["min"] = 11, + ["max"] = 59, + }, + ["specialCaseData"] = { + }, + ["Belt"] = { + ["min"] = 5, + ["max"] = 50, + }, + ["Ring"] = { + ["min"] = 5, + ["max"] = 42, + }, + ["2HWeapon"] = { + ["min"] = 19, + ["max"] = 100, + }, ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 10, + ["min"] = 11, + ["max"] = 59, }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 10, + ["Shield"] = { + ["min"] = 26, + ["max"] = 40, }, }, - ["7639_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 28.5, - }, + ["938_TotemDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2523334466", - ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", }, - ["Quiver"] = { - ["min"] = 25, - ["max"] = 28.5, + ["AbyssJewel"] = { + ["min"] = 12, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 16, + }, }, - ["3891_MovementVelocityDodge"] = { + ["169_SupportedByCastOnDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["id"] = "explicit.stat_3036440332", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 5, + ["max"] = 5, + }, }, - ["1314_ItemFoundQuantityIncrease"] = { + ["1593_IgniteDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 20, }, ["sign"] = "", }, - ["1690_MinionDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 45, - }, + ["1203_GainEnduranceChargeOnCritUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 5, - ["max"] = 42, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["1763_AccuracyRatingPerFrenzyChargeUber"] = { + ["1950_ManaReservationEfficiency"] = { + ["Helmet"] = { + ["min"] = 4, + ["max"] = 14, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3700381193", - ["text"] = "#% increased Accuracy Rating per Frenzy Charge", + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + }, + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 3, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 14, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 3, }, }, - ["1280_IncreasedEnergyShieldForJewel"] = { + ["203_IgniteDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_2420410470", + ["text"] = "Socketed Gems are Supported by Level # Immolate", }, - ["sign"] = "+", + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, + }, + ["sign"] = "", }, - ["4193_GlobalSkillGemLevel"] = { - ["specialCaseData"] = { + ["7625_MeleeWeaponRangeIfKilledRecently"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 3, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4283407333", - ["text"] = "# to Level of all Skill Gems", + ["id"] = "explicit.stat_3255961830", + ["text"] = "# to Melee Strike Range if you have Killed Recently", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 2, + ["max"] = 3, }, - ["sign"] = "+", - }, - ["1738_IgniteChanceAndDamageMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["sign"] = "+", + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 3, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 3, }, - ["sign"] = "", }, - ["1291_IncreasedLifeForJewel"] = { + ["923_DexterityAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", }, ["sign"] = "+", }, - ["5505_EnemiesHaveReducedEvasionIfHitRecently"] = { - ["specialCaseData"] = { + ["976_LocalPhysicalDamagePercentBrutality"] = { + ["2HMace"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HMace"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["Claw"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HSword"] = { + ["min"] = 101, + ["max"] = 134, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1773891268", - ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HSword"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HAxe"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HAxe"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HWeapon"] = { + ["min"] = 101, + ["max"] = 134, }, ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["min"] = 101, + ["max"] = 134, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["958_ShieldSpellDamageForJewel"] = { + ["1099_FireDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["AbyssJewel"] = { ["min"] = 14, @@ -3237,4549 +3550,4982 @@ return { ["max"] = 16, }, }, - ["1291_LifeAndPercentLife"] = { + ["2946_MovementVelocitySpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", }, - ["sign"] = "+", + ["sign"] = "", }, - ["7892_SpiritAndPhantasmRefreshOnUnique"] = { - ["specialCaseData"] = { - }, + ["3466_MinionAddedLightningDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1146215018", - ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["id"] = "explicit.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + }, + ["AbyssJewel"] = { + ["min"] = 5, + ["max"] = 41.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 5, + ["max"] = 41.5, + }, }, - ["6914_ManaGainedOnBlock"] = { + ["8794_VaalPact"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", }, - ["sign"] = "", }, - ["979_FireDamageOverTimeMultiplier"] = { + ["4396_ManaGainPerTargetMaven"] = { ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["min"] = 10, + ["max"] = 20, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_779663446", + ["text"] = "#% increased Attack Speed while not on Low Mana", + }, + ["Quiver"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", + }, + ["1815_AddedColdDamageWithAxes"] = { + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 6.5, + ["max"] = 21.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", + ["id"] = "explicit.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", }, ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["1HAxe"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, + ["min"] = 6.5, + ["max"] = 21.5, }, ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 38, - }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["min"] = 6.5, + ["max"] = 21.5, }, }, - ["911_StrengthIntelligenceForJewel"] = { + ["1797_AddedPhysicalDamageWithAxes"] = { + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AnyJewel"] = { + ["min"] = 2.5, + ["max"] = 9, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", + ["id"] = "explicit.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 2.5, + ["max"] = 9, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, }, - ["6139_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["8480_WarcryTauntedEnemiesTakeIncreasedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1766730250", - ["text"] = "You are Immune to Ailments while Focused", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", }, + ["sign"] = "", }, - ["6244_MaximumLifeOnKillPercentMaven"] = { - ["specialCaseData"] = { + ["1227_CriticalStrikeMultiplier"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Bow"] = { + ["min"] = 10, + ["max"] = 38, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3353368340", - ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["Ring"] = { + ["min"] = 8, + ["max"] = 22, + }, + ["Amulet"] = { + ["min"] = 8, + ["max"] = 38, + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 38, }, - ["sign"] = "", - }, - ["8519_TrapAndMineThrowSpeed"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_464535071", - ["text"] = "#% increased Trap and Mine Throwing Speed", + ["Claw"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 24, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Dagger"] = { + ["min"] = 10, + ["max"] = 38, }, - ["sign"] = "", }, - ["7587_LifeAddedAsEnergyShield"] = { + ["1099_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["sign"] = "", }, - ["1837_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["7824_IncreasedAilmentEffectOnEnemies"] = { + ["Shield"] = { + ["min"] = 15, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_417188801", - ["text"] = "#% chance to gain an Endurance Charge when you Block", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, + ["Ring"] = { + ["min"] = 15, ["max"] = 25, }, - ["2HWeapon"] = { - ["min"] = 20, + ["Quiver"] = { + ["min"] = 15, ["max"] = 25, }, - }, - ["223_TotemSpeedAttackSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", - }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 40, + }, ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["min"] = 30, + ["max"] = 60, }, }, - ["304_ChanceToFreezeShockIgniteProliferation"] = { + ["2162_LightningResistancePhysTakenAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, ["sign"] = "", }, - ["5454_ExertedAttackDamage"] = { + ["1315_LifeRecoveryRateMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", - }, - ["Ring"] = { - ["min"] = 25, - ["max"] = 35, + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + }, + ["Chest"] = { + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", }, - ["1340_AllResistancesMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 19, - ["max"] = 22, + ["2686_ElementalPenetration"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 19, - ["max"] = 22, + ["2HMace"] = { + ["min"] = 4, + ["max"] = 12, }, - }, - ["8760_ElementalOverload"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3574189159", - ["text"] = "Elemental Overload", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 12, }, - }, - ["2577_AllLightningDamageCanFreeze"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 4, + ["max"] = 6, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_380759151", - ["text"] = "Your Lightning Damage can Freeze", + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", }, - }, - ["534_FireBurstOnHit"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1621470436", - ["text"] = "Cast Level 20 Fire Burst on Hit", + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1806_AddedColdDamageWithSwords"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_972201717", - ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["Amulet"] = { + ["min"] = 3, + ["max"] = 7, }, - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["1HSword"] = { + ["min"] = 4, + ["max"] = 6, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Quiver"] = { + ["min"] = 3, + ["max"] = 5, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Staff"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 1, + ["max"] = 1, }, - }, - ["391_SocketedSpellsManaCost"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1688834903", - ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["Dagger"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 20, + ["Bow"] = { + ["min"] = 7, + ["max"] = 12, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 12, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 20, - ["max"] = 20, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 20, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["5253_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["1666_ConvertPhysicalToLightningMaven"] = { ["Gloves"] = { - ["min"] = 71, - ["max"] = 80, + ["min"] = 3, + ["max"] = 5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1583385065", - ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + }, + ["Quiver"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 71, - ["max"] = 80, - }, }, - ["95_LocalIncreaseSocketedLightningGemLevelMaven"] = { - ["specialCaseData"] = { + ["1108_ColdDamagePercentage"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["sign"] = "", + ["Staff"] = { + ["min"] = 3, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["Ring"] = { + ["min"] = 3, + ["max"] = 22, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 26, + }, + ["Wand"] = { + ["min"] = 3, + ["max"] = 30, }, }, - ["1747_AreaDamageAndAreaOfEffect"] = { + ["8660_WrathReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 20, + ["id"] = "explicit.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1357_LightningResistanceAilments"] = { + ["1625_IncreasedManaAndCost"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", }, - ["sign"] = "+", + ["sign"] = "-", }, - ["1028_IncreasedAxeDamageForJewel"] = { + ["707_FlaskBuffCastSpeedWhileHealing"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3314142259", - ["text"] = "#% increased Damage with Axes", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", }, - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 9, + ["max"] = 17, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, }, - ["1152_SwordAttackSpeedForJewel"] = { + ["2750_MapMonsterPacksVaalMapWorlds"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", }, - ["BaseJewel"] = { - ["min"] = 6, + ["sign"] = "", + }, + ["2989_DamagePerFrenzyCharge"] = { + ["2HMace"] = { + ["min"] = 7, ["max"] = 8, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, + ["2HAxe"] = { + ["min"] = 7, ["max"] = 8, }, - ["AnyJewel"] = { - ["min"] = 6, + ["Bow"] = { + ["min"] = 7, ["max"] = 8, }, - }, - ["1485_MinionLifeMaven"] = { - ["specialCaseData"] = { - }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", }, - ["Helmet"] = { - ["min"] = 36, - ["max"] = 40, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 6, }, - ["sign"] = "", - }, - ["2229_FrostbiteOnHitLevel"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 3, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", + ["1HSword"] = { + ["min"] = 5, + ["max"] = 6, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Wand"] = { + ["min"] = 5, + ["max"] = 6, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 7, + ["max"] = 8, }, - }, - ["1335_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skill Gems", + ["2HSword"] = { + ["min"] = 7, + ["max"] = 8, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["Claw"] = { + ["min"] = 5, + ["max"] = 6, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 8, + }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 5, + ["max"] = 10, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["319_CriticalStrikeMultiplierSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["250_SupportedBySpiritStrikeArea"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, + ["Dagger"] = { + ["min"] = 16, ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 18, + ["Claw"] = { + ["min"] = 16, ["max"] = 20, }, - }, - ["8129_RemoveIgniteOnFlaskUse"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", + ["id"] = "explicit.stat_696805682", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["2496_ChanceToFreezeShockIgniteUnboundAilments"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 16, + ["max"] = 20, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1617_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["532_CurseOnHitCriticalWeakness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Avoid interruption from Stuns while Casting", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 35, + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, ["sign"] = "", }, - ["1515_IncreasedProjectileSpeedForJewel"] = { + ["1145_SpellAddedFireDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 90.5, + }, + ["Wand"] = { + ["min"] = 2, + ["max"] = 90.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Dagger"] = { + ["min"] = 2, + ["max"] = 90.5, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 90.5, }, }, - ["1674_ColdDamagePhysConvertedToCold"] = { - ["specialCaseData"] = { + ["2617_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 38, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["Wand"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 38, }, ["sign"] = "", - }, - ["4371_AttackSpeedIfEnemyKilledRecently"] = { + ["Dagger"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 38, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1507059769", - ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 38, }, ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["min"] = 18, + ["max"] = 38, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 38, }, - }, - ["4895_DoubleDamageStunnedRecently"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4224978303", - ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", + }, + ["2882_PoisonDamageAndLocalChanceOnHit"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 50, }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["974_GlobalDamageOverTimeMultiplierWithAttacks"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["Bow"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 50, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_693959086", - ["text"] = "#% to Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 7, - ["max"] = 26, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["1HWeapon"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["Claw"] = { + ["min"] = 21, + ["max"] = 50, }, }, - ["2910_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["610_FlaskIncreasedRecoveryReducedEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 12, + ["Flask"] = { + ["min"] = 37, + ["max"] = 66, }, + ["sign"] = "", }, - ["8750_BloodMagic"] = { - ["specialCaseData"] = { - }, + ["625_FlaskInstantRecoveryOnLowLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2801937280", - ["text"] = "Blood Magic", + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["5172_AdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["7985_PrideReservation"] = { + ["701_FlaskBuffWardWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + }, + ["Flask"] = { + ["min"] = 19, + ["max"] = 30, }, ["sign"] = "", }, - ["1084_FireDamagePrefixFirePenetration"] = { + ["706_FlaskBuffAttackSpeedWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["Flask"] = { + ["min"] = 9, + ["max"] = 17, }, ["sign"] = "", }, - ["1087_FireDamage"] = { + ["1306_LocalIncreasedArmourAndEvasionAndLife"] = { ["Gloves"] = { - ["min"] = 1.5, - ["max"] = 21, + ["min"] = 17, + ["max"] = 26, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 68.5, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 35, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 17, + ["max"] = 26, }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 35, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, }, }, - ["2565_AllColdDamageCanIgnite"] = { - ["specialCaseData"] = { - }, + ["2243_FlammabilityOnHitLevel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3573591118", - ["text"] = "Your Cold Damage can Ignite", + ["id"] = "explicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", }, - }, - ["558_TriggerOnRareWarlordsMark"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2049471530", - ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["3062_UnholyMightOnKillPercentChance"] = { + ["636_FlaskExtraLifeCostsMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3991482957", - ["text"] = "#% chance to gain Unholy Might for 10 seconds on Kill", + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 10, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 10, }, }, - ["3955_ElusiveOnCriticalStrike"] = { + ["3004_ChaosResistanceWhileUsingFlask"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", + ["id"] = "explicit.stat_392168009", + ["text"] = "#% to Chaos Resistance during any Flask Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["2537_FishingLineStrength"] = { - ["specialCaseData"] = { + ["1479_ManaGainPerTarget"] = { + ["Gloves"] = { + ["min"] = 2, + ["max"] = 5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1842038569", - ["text"] = "#% increased Fishing Line Strength", + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + }, + ["Quiver"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Ring"] = { + ["min"] = 2, + ["max"] = 3, + }, }, - ["915_PercentageDexterityMaven"] = { + ["1111_ColdDamage"] = { + ["Gloves"] = { + ["min"] = 1.5, + ["max"] = 18.5, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + }, + ["Quiver"] = { + ["min"] = 1.5, + ["max"] = 61.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 9, - ["max"] = 12, + ["min"] = 1.5, + ["max"] = 31, }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 12, + ["Ring"] = { + ["min"] = 1.5, + ["max"] = 31, }, }, - ["1485_MinionLife"] = { - ["Chest"] = { - ["min"] = 20, - ["max"] = 30, - }, + ["929_PercentageStrength"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 35, + ["Chest"] = { + ["min"] = 5, + ["max"] = 12, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 13, - ["max"] = 32, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 12, }, - ["Shield"] = { - ["min"] = 13, - ["max"] = 40, + ["Boots"] = { + ["min"] = 6, + ["max"] = 12, }, }, - ["1391_EnemyFireDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { - }, + ["614_FlaskExtraLifeCostsMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", }, - ["sign"] = "", - }, - ["1582_StunDurationAndThresholdUber"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["AbyssJewel"] = { + ["min"] = 35, + ["max"] = 60, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 35, + ["max"] = 60, }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 35, + ["max"] = 60, }, }, - ["98_LocalIncreaseSocketedSpellGemLevel"] = { + ["1296_LocalBaseEvasionRatingEnergyShieldAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_446733281", - ["text"] = "# to Level of Socketed Spell Gems", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", }, ["sign"] = "+", }, - ["6720_NearbyEnemyPhysicalDamageTaken"] = { + ["5749_EnduranceChargeIfHitRecentlyMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_415837237", - ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["2867_PoisonDamageAddedChaosToSpells"] = { + ["4659_AttackBlockIfBlockedAttackRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_3789765926", + ["text"] = "#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", }, - ["sign"] = "", - }, - ["3147_ChancetoGainPhasingOnKill"] = { - ["AbyssJewel"] = { - ["min"] = 3, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 5, ["max"] = 8, }, + }, + ["615_FlaskHealsMinions"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2918708827", - ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["AbyssJewel"] = { + ["min"] = 51, + ["max"] = 80, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["BaseJewel"] = { + ["min"] = 51, + ["max"] = 80, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["min"] = 51, + ["max"] = 80, }, }, - ["1565_AvoidIgniteForJewel"] = { + ["1127_IncreasedChaosAndPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + }, + ["Ring"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", }, - ["3081_NearbyEnemiesAreBlinded"] = { + ["2698_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - }, - ["908_Dexterity"] = { ["Gloves"] = { - ["min"] = 8, - ["max"] = 60, - }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 60, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 5, + ["max"] = 10, }, + ["sign"] = "", }, - ["3955_ElusiveOnCriticalStrikeMaven"] = { + ["713_FlaskBuffAttackLifeLeechWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 20, + ["id"] = "explicit.stat_1173558568", + ["text"] = "#% of Attack Damage Leeched as Life during Effect", }, - }, - ["5429_IncreasedWeaponElementalDamagePercent"] = { - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 0.4, + ["max"] = 0.8, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 50, - }, + }, + ["1240_MeleeCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - }, - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 59, - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 42, - }, - ["2HWeapon"] = { - ["min"] = 19, - ["max"] = 100, - }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 50, - }, - ["Shield"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "explicit.stat_4237442815", + ["text"] = "#% to Melee Critical Strike Multiplier", }, - }, - ["108_IncreaseSocketedCurseGemLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", - }, ["sign"] = "+", - }, - ["8772_Magebane"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4180925106", - ["text"] = "Magebane", + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 15, }, }, - ["1641_MineDetonationSpeedAndDuration"] = { + ["968_WeaponSpellDamageArcaneSurge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_117667746", - ["text"] = "#% increased Mine Duration", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["sign"] = "", }, - ["1357_LightningDamageAvoidanceMaven"] = { + ["1359_MaximumFireResist"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", }, ["specialCaseData"] = { }, ["sign"] = "+", ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 1, + ["max"] = 3, }, ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 1, + ["max"] = 3, }, }, - ["3060_LightningDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["173_ChanceToBleedSupported"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["2855_BleedOnHitAndDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 30, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["1515_ProjectileSpeedSupported"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1302_IncreasedManaAndPercent"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2965_WarcrySpeed"] = { - ["specialCaseData"] = { + ["1278_LocalPhysicalDamageReductionRating"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 500, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", }, - ["Amulet"] = { - ["min"] = 21, - ["max"] = 35, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 500, }, - ["sign"] = "", - }, - ["1568_AvoidBleedAndPoison"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 6, + ["max"] = 500, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 41, - ["max"] = 70, + ["min"] = 6, + ["max"] = 500, }, }, - ["4717_CorruptedBloodImmunity"] = { - ["specialCaseData"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1HMace"] = { + ["min"] = 25, + ["max"] = 69, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - }, - ["8308_SpellDamagePer16Intelligence"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 25, + ["max"] = 69, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1104_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["Staff"] = { + ["min"] = 25, + ["max"] = 69, }, - ["sign"] = "", }, - ["1301_LifeAndManaForJewel"] = { - ["specialCaseData"] = { - }, + ["101_PercentageDexterityMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", }, - ["sign"] = "+", - }, - ["1360_PhysicalDamageTakenAsChaosUberMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1645_MineLaySpeedForJewel"] = { + ["1247_ColdCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["id"] = "explicit.stat_915908446", + ["text"] = "#% to Critical Strike Multiplier with Cold Skills", + }, + ["AbyssJewel"] = { + ["min"] = 15, + ["max"] = 18, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 15, + ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 15, + ["max"] = 18, }, }, - ["371_SocketedAttackCriticalMultiplier"] = { - ["specialCaseData"] = { - }, + ["6770_LifeGainPerBlindedEnemyHit"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_356456977", - ["text"] = "Socketed Attacks have #% to Critical Strike Multiplier", + ["id"] = "explicit.stat_1649099067", + ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 90, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 35, + ["max"] = 50, + }, + ["Claw"] = { + ["min"] = 35, + ["max"] = 50, }, - ["sign"] = "+", }, - ["1552_FrenzyChargeOnHitChanceMaven"] = { + ["669_LocalFlaskImmuneToMaimAndHinder"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 17, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["5253_DamageVSAbyssMonsters"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["id"] = "explicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 10, + ["AbyssJewel"] = { + ["min"] = 30, + ["max"] = 40, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 30, + ["max"] = 40, + }, + ["AnyJewel"] = { + ["min"] = 30, + ["max"] = 40, + }, + }, + ["921_AllAttributesForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["1346_FireResistancePhysTakenAsFire"] = { + ["5613_FireAndChaosDamageResistance"] = { + ["Gloves"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Quiver"] = { + ["min"] = 16, + ["max"] = 20, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 16, + ["max"] = 20, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + }, + ["Boots"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Ring"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Chest"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Amulet"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Shield"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "+", }, - ["1132_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["1103_SelfFireDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", }, ["sign"] = "", }, - ["1651_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["1614_AreaOfEffectSupported"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 7, + ["max"] = 15, }, ["sign"] = "", }, - ["1881_AdditionalCurseOnEnemies"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", + ["1526_AdditionalProjectiles"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", }, - ["Chest"] = { + ["Staff"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "", - }, - ["1704_MaximumSpellBlockChance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["1173_CastSpeedWithAShieldForJewel"] = { + ["668_LocalFlaskImmuneToMaimAndHinder"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", + ["id"] = "explicit.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6, + ["max"] = 17, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6, + ["max"] = 17, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6, + ["max"] = 17, }, }, - ["8471_TailwindOnCriticalStrike"] = { - ["specialCaseData"] = { - }, + ["8243_ManaCostTotalNonChannelled"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have # to Total Mana Cost", }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["Amulet"] = { + ["min"] = 10, + ["max"] = 9, + }, + ["Ring"] = { + ["min"] = 10, + ["max"] = 9, }, }, - ["953_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1156_AttackSpeedWhileDualWieldingForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 69, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["6281_LightningAilmentEffect"] = { - ["specialCaseData"] = { + ["1673_FireAddedAsChaos"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", + ["1HMace"] = { + ["min"] = 9, + ["max"] = 10, }, ["sign"] = "", - }, - ["1533_IncreasedMaximumPowerChargesMaven"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Wand"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", - }, - ["6887_GlobalMaimOnHit"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", + ["Bow"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 18, ["max"] = 20, }, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 9, + ["max"] = 10, + }, }, - ["125_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["1910_BeltIncreasedFlaskChargesGained"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", }, - ["Chest"] = { + ["sign"] = "", + ["Belt"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 40, }, - ["sign"] = "+", }, - ["1599_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["1687_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 22, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + }, + ["Quiver"] = { + ["min"] = 22, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, - }, }, - ["1661_LifeRegenerationRatePercentage"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["1798_PhysicalDamageWithBowsJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AbyssJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 1, - ["max"] = 2, + ["Bow"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["AnyJewel"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + }, + ["2162_PhysicalDamageTakenAsLightningUberMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - }, - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["Chest"] = { + ["min"] = 16, + ["max"] = 18, }, - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["sign"] = "", + }, + ["400_SocketedSkillsCastSpeed"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 2.1, - ["max"] = 3, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 18, }, + ["sign"] = "", }, - ["6781_LocalChanceToPoisonOnHit"] = { + ["661_LocalLifeFlaskAdditionalLifeRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + }, + ["Flask"] = { + ["min"] = 11, + ["max"] = 40, }, ["sign"] = "", }, - ["1464_ManaGainPerTarget"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 5, - }, + ["1186_IncreasedCastSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["Quiver"] = { + ["AbyssJewel"] = { ["min"] = 2, - ["max"] = 5, + ["max"] = 4, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { + ["BaseJewel"] = { ["min"] = 2, - ["max"] = 3, + ["max"] = 4, + }, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 4, }, }, - ["1300_LifeRecoveryRateMaven"] = { + ["1099_SpellAddedFireDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - }, - ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["sign"] = "", }, - ["1084_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["714_FlaskBuffLifeLeechPermyriadWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", }, ["sign"] = "", }, - ["1159_AccuracyAndCritsForJewel"] = { + ["1107_FireGemCastSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", }, ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 3, + ["max"] = 5, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 3, + ["max"] = 5, }, }, - ["5527_MaximumEnergyShieldOnKillPercentMaven"] = { - ["specialCaseData"] = { - }, + ["1659_TrapThrowSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2698606393", - ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["Belt"] = { + ["min"] = 14, + ["max"] = 16, + }, }, - ["1578_IgniteDurationSupported"] = { - ["specialCaseData"] = { + ["1532_MovementVelocity"] = { + ["2HMace"] = { + ["min"] = 3, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["Quiver"] = { + ["min"] = 3, + ["max"] = 10, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 20, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["5631_GlobalFireGemLevel"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 3, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_599749213", - ["text"] = "# to Level of all Fire Skill Gems", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["Boots"] = { + ["min"] = 10, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 10, }, ["Amulet"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["Bow"] = { + ["min"] = 3, + ["max"] = 10, + }, + }, + ["1538_MaximumEnduranceCharges"] = { + ["2HMace"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", - }, - ["1893_IgnoreArmourMovementPenalties"] = { ["specialCaseData"] = { }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1311723478", - ["text"] = "Ignore all Movement Penalties from Armour", + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", }, - ["Helmet"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8657_WrathReservation"] = { + ["708_FlaskBuffMovementSpeedWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + }, + ["Flask"] = { + ["min"] = 6, + ["max"] = 14, }, ["sign"] = "", }, - ["1357_LightningResistancePrefix"] = { + ["2555_FishingHookType"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_2054162825", + ["text"] = "Karui Stone Hook", + }, + ["FishingRod"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["883_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { - ["specialCaseData"] = { + ["110_LocalIncreaseSocketedLightningGemLevel"] = { + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["id"] = "explicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 2, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["min"] = 1, + ["max"] = 2, + }, + ["specialCaseData"] = { }, ["sign"] = "+", - }, - ["1303_BaseManaRegeneration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, }, - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, }, + }, + ["716_FlaskBuffManaLeechPermyriadWhileHealing"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 0.7, - ["max"] = 0.8, - }, - ["1HWeapon"] = { - ["min"] = 0.3, - ["max"] = 0.4, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_374891408", + ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", }, ["sign"] = "", }, - ["4707_CannotBeChilledOrFrozenWhileMoving"] = { + ["4279_ArmourIncreasedByUncappedFireResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_628032624", - ["text"] = "Cannot be Chilled or Frozen while moving", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", }, }, - ["1184_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["1145_FireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 18, - ["max"] = 20, - }, }, - ["2187_BleedingDamageChanceWeaponSuffix"] = { + ["1293_LocalArmourAndEvasionAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 27, + ["max"] = 100, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 27, + ["max"] = 100, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["Chest"] = { + ["min"] = 27, + ["max"] = 110, }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["Boots"] = { + ["min"] = 27, + ["max"] = 100, }, }, - ["1232_ColdCritMultiplierForJewel"] = { + ["1305_EnergyShieldRecoveryRate"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_915908446", - ["text"] = "#% to Critical Strike Multiplier with Cold Skills", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["sign"] = "", + ["Chest"] = { + ["min"] = 8, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Belt"] = { + ["min"] = 7, + ["max"] = 12, }, }, - ["5720_CastSpeedAndGainArcaneSurgeOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_573223427", - ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["6686_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["1HSword"] = { + ["min"] = 60, + ["max"] = 60, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 60, + ["max"] = 60, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + ["2HMace"] = { + ["min"] = 60, + ["max"] = 60, }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + ["Staff"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 60, }, ["sign"] = "", - }, - ["8552_ChilledGroundEffectEffectiveness"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["Claw"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["2HSword"] = { + ["min"] = 60, + ["max"] = 60, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", + ["id"] = "explicit.stat_768124628", + ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["Bow"] = { + ["min"] = 60, + ["max"] = 60, }, - }, - ["2226_CurseOnHitDespairMod"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 60, + ["max"] = 60, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", + ["1HAxe"] = { + ["min"] = 60, + ["max"] = 60, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["specialCaseData"] = { }, }, - ["6034_FreezeChanceAndDurationMaven"] = { + ["1312_BaseManaAndLifeDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1302208736", - ["text"] = "Freeze Enemies as though dealing #% more Damage", - }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 50, + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", }, ["sign"] = "", }, - ["5549_DodgeChanceDuringFocus"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3839620417", - ["text"] = "#% increased Evasion Rating while Focused", + ["2213_LocalLightRadiusAndAccuracyPercent"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 15, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 30, - ["max"] = 32, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 30, - ["max"] = 32, + ["Staff"] = { + ["min"] = 5, + ["max"] = 15, }, - }, - ["1352_ColdDamageAvoidanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 15, }, - ["specialCaseData"] = { + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["Claw"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 15, }, - }, - ["1709_KnockbackChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Bow"] = { + ["min"] = 5, + ["max"] = 15, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["specialCaseData"] = { }, }, - ["1417_ManaLeech"] = { + ["1266_LocalWard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["id"] = "explicit.stat_774059442", + ["text"] = "# to Ward", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2147_PhysicalDamageTakenAsLightningUberMaven"] = { + ["976_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["1471_MaximumManaOnKillPercentMaven"] = { + ["2353_EnergyShieldRegenerationPerMinuteMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 6, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1.5, }, ["sign"] = "", }, - ["8240_ManaCostTotalNonChannelled"] = { + ["976_LocalPhysicalDamagePercent"] = { + ["1HSword"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["Wand"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["2HMace"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["Staff"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["1HMace"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["Claw"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["2HSword"] = { + ["min"] = 40, + ["max"] = 179, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have # to Total Mana Cost", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 40, + ["max"] = 179, }, - ["sign"] = "-", - ["Amulet"] = { - ["min"] = 10, - ["max"] = 9, + ["2HAxe"] = { + ["min"] = 40, + ["max"] = 179, }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 9, + ["1HAxe"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["2HWeapon"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["1HWeapon"] = { + ["min"] = 40, + ["max"] = 179, + }, + ["specialCaseData"] = { }, }, - ["995_SelfPhysicalDamageTaken"] = { + ["1954_IncreasedManaAndReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2093523445", - ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", }, ["sign"] = "", }, - ["1464_IncreasedManaAndOnHit"] = { - ["specialCaseData"] = { + ["2196_ChanceToBleedSupported"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2147_PhysicalDamageTakenAsLightningUber"] = { + ["1127_IncreasedChaosDamagePrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, + ["Amulet"] = { + ["min"] = 20, + ["max"] = 30, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["Belt"] = { + ["min"] = 16, + ["max"] = 30, }, }, - ["1932_CurseAreaOfEffect"] = { - ["specialCaseData"] = { - }, + ["674_LocalLifeFlaskHinderNearbyEnemies"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", + ["id"] = "explicit.stat_1462364052", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life", + }, + ["AbyssJewel"] = { + ["min"] = 17, + ["max"] = 40, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 17, + ["max"] = 40, + }, + ["AnyJewel"] = { + ["min"] = 17, + ["max"] = 40, + }, }, - ["1112_SpellAddedChaosDamageHybrid"] = { + ["356_DisplaySupportedByManaLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 15, }, ["sign"] = "", }, - ["5748_FrenzyChargeOnHittingRareOrUnique"] = { - ["specialCaseData"] = { + ["1297_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 42, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4179663748", - ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["Chest"] = { + ["min"] = 6, + ["max"] = 42, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, }, }, - ["3059_ColdDamageAvoidanceMaven"] = { + ["931_PercentageIntelligenceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 10, + ["Amulet"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["Chest"] = { + ["min"] = 9, + ["max"] = 12, }, }, - ["4309_AttackAndCastSpeedIfHitRecently"] = { - ["specialCaseData"] = { - }, + ["1111_AddedColdSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1483753325", - ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 19.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 19.5, + }, }, - ["1301_IncreasedManaAndBaseCost"] = { + ["6297_PhysicalDamageTakenAsLightningUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", }, - ["sign"] = "+", + ["Chest"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["sign"] = "", }, - ["1264_ArmourEnergyShieldForJewel"] = { + ["3007_EnemiesExplodeOnDeathPhysicalChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["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"] = "", }, - ["85_PercentageStrengthMaven"] = { + ["630_FlaskManaRecoveryAtEnd"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { + ["BaseJewel"] = { ["min"] = 1, ["max"] = 1, }, - ["Chest"] = { + ["AnyJewel"] = { ["min"] = 1, ["max"] = 1, }, }, - ["7843_AdditionalTrapsThrownSupported"] = { + ["6907_AddedManaRegenerationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1220800126", - ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", + ["id"] = "explicit.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", }, - ["Gloves"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "", }, - ["8569_ShockedGroundEffectEffectiveness"] = { + ["1146_ColdDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, + ["sign"] = "", }, - ["1212_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["1406_EnemyFireDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", }, - ["sign"] = "+", + ["sign"] = "", }, - ["4945_ChanceToUnnerveOnHit"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, - }, + ["619_FlaskManaRecoveryAtEnd"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + }, + ["AbyssJewel"] = { + ["min"] = 66, + ["max"] = 66, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["BaseJewel"] = { + ["min"] = 66, + ["max"] = 66, + }, + ["AnyJewel"] = { + ["min"] = 66, + ["max"] = 66, }, }, - ["921_DamageForJewel"] = { + ["634_FlaskExtraManaCostsLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 15, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 15, + ["max"] = 15, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 15, + ["max"] = 15, }, }, - ["953_WeaponSpellDamage"] = { + ["2202_BleedChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["7604_MeleeDamageDuringFlaskEffect"] = { + ["7603_StrikeSkillsAdditionalTarget"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4091369450", - ["text"] = "#% increased Melee Damage during any Flask Effect", + ["id"] = "explicit.stat_1661253443", + ["text"] = "Strike Skills target # additional nearby Enemy", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 2, }, + ["sign"] = "", }, - ["2540_FishingHookType"] = { - ["specialCaseData"] = { - }, + ["618_FlaskExtraManaCostsLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2054162825", - ["text"] = "Karui Stone Hook", + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", }, - }, - ["4979_ChanceToChillAttackersOnBlock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_864879045", - ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["AbyssJewel"] = { + ["min"] = 41, + ["max"] = 70, }, ["specialCaseData"] = { }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 50, - }, - ["Shield"] = { - ["min"] = 25, - ["max"] = 50, - }, - }, - ["2146_PhysicalDamageTakenAsCold"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 41, + ["max"] = 70, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["AnyJewel"] = { + ["min"] = 41, + ["max"] = 70, }, - ["sign"] = "", }, - ["8748_AvatarOfFire"] = { + ["1278_LocalBaseArmourEvasionRatingAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_346029096", - ["text"] = "Avatar of Fire", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", }, + ["sign"] = "+", }, - ["191_BurningDamageSupported"] = { + ["1760_ChanceToShockForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2680613507", - ["text"] = "Socketed Gems are Supported by Level # Burning Damage", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, ["sign"] = "", }, - ["1304_AddedManaRegenerationMaven"] = { + ["7664_AddedPhysicalDamageIfCritRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", + ["id"] = "explicit.stat_2723101291", + ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 14, }, ["sign"] = "", }, - ["1657_ColdAddedAsChaos"] = { + ["1660_MineLayingSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", }, - ["sign"] = "", ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, - }, - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["1644_TrapThrowSpeedForJewel"] = { + ["1670_ChaosDamageAsPortionOfLightningDamage"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["1821_AddedColdDamageWithSwords"] = { + ["1HSword"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 6.5, + ["max"] = 21.5, }, - }, - ["2192_AddedPhysicalDamageVsBleedingEnemies"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1244003614", - ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", + ["id"] = "explicit.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 14.5, + ["AbyssJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, - ["sign"] = "", }, - ["1655_ChaosDamageAsPortionOfLightningDamage"] = { + ["6740_DexterityAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2181_CausesBleedingChance"] = { + ["211_LocalIncreasedPhysicalDamagePercentIronGrip"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "explicit.stat_251446805", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", }, ["sign"] = "", }, - ["6281_AbyssJewelShockEffect"] = { + ["610_FlaskIncreasedChargesAdded"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 16, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 16, + ["max"] = 50, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 16, + ["max"] = 50, }, }, - ["953_WeaponSpellDamageAndMana"] = { - ["specialCaseData"] = { - }, + ["605_FlaskFullRechargeOnHit"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 39, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 3, + }, }, - ["2521_OnslaughtWhenHitForDuration"] = { + ["1120_SelfColdAndLightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", }, ["sign"] = "", }, - ["913_PercentageAllAttributes"] = { + ["6911_ManaGainedOnSpellHit"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", - }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 8, + ["id"] = "explicit.stat_2474196346", + ["text"] = "Gain # Mana per Enemy Hit with Spells", }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 2, + ["max"] = 3, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 9, - }, - ["Belt"] = { - ["min"] = 6, - ["max"] = 12, - }, }, - ["1219_CriticalStrikeMultiplierWithBows"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", - }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 8, + ["1306_LocalBaseEvasionRatingAndLife"] = { + ["Gloves"] = { + ["min"] = 18, ["max"] = 38, }, - }, - ["1280_EvasionRatingAndEnergyShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["Helmet"] = { + ["min"] = 18, + ["max"] = 38, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, - }, - }, - ["1532_MinimumPowerCharges"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", + ["Chest"] = { + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["Boots"] = { + ["min"] = 18, + ["max"] = 38, }, }, - ["4439_BleedChanceAndDurationForJewel"] = { + ["1217_OneHandedCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 14, + ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 14, + ["max"] = 18, }, }, - ["1094_SelfColdAndLightningDamageTaken"] = { + ["742_FlaskFreezeAndChillImmunityDuringEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + }, + ["Flask"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1469_MaximumLifeOnKillPercent"] = { + ["743_FlaskPoisonImmunityDuringEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 6, + ["Flask"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1105_SelfColdAndLightningDamageTaken"] = { + ["2558_FishingRarity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["id"] = "explicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + }, + ["FishingRod"] = { + ["min"] = 25, + ["max"] = 40, }, ["sign"] = "", }, - ["8053_SpiritAndPhantasmRefreshOnUnique"] = { + ["2291_TotemSpeedAttackSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2461719091", - ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 8, + ["max"] = 20, + }, }, - ["1291_AbyssJewelLife"] = { + ["5073_ConsecratedGroundStationary"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["1121_AddedColdAndLightningDamage"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + }, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["sign"] = "", + ["Ring"] = { + ["min"] = 17, + ["max"] = 19, }, - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, }, }, - ["1564_AvoidFreezeForJewel"] = { + ["891_ChanceToSuppressSpellsMavenOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 16, + ["max"] = 18, }, - ["sign"] = "", }, - ["3056_PhysicalDamageAvoidance"] = { + ["1278_LocalBaseArmourAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 375, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2415497478", - ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", }, - ["Quiver"] = { + ["Helmet"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 375, }, ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["sign"] = "", - ["Shield"] = { + ["sign"] = "+", + ["Chest"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 375, + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 375, }, }, - ["1528_MaximumFrenzyCharges"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["740_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", }, - ["sign"] = "+", - ["2HWeapon"] = { + ["Flask"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1883_ReducedCurseEffect"] = { + ["1530_ProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - }, - ["Ring"] = { - ["min"] = 35, - ["max"] = 40, + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 10, + ["max"] = 46, + }, }, - ["101_ProjectilePierceAndProjectileGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["968_WeaponSpellDamageAddedAsChaos"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, + ["sign"] = "", + }, + ["1406_FireResistanceEnemyLeech"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", }, + ["sign"] = "", }, - ["3230_AdditionalMinesPlacedSupported"] = { + ["1614_AreaDamageAndAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2395088636", - ["text"] = "Throw an additional Mine", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["Amulet"] = { + ["min"] = 14, + ["max"] = 16, }, + ["sign"] = "", }, - ["1046_IncreasedDaggerDamageForJewel"] = { + ["607_FlaskChanceRechargeOnCrit"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3586984690", - ["text"] = "#% increased Damage with Daggers", - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_3738001379", + ["text"] = "#% chance to gain a Flask Charge when you deal a Critical Strike", }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 11, + ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["BaseJewel"] = { + ["min"] = 11, + ["max"] = 35, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 11, + ["max"] = 35, }, }, - ["347_ChanceToPoisonSupported"] = { + ["626_FlaskPartialInstantRecovery"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + }, + ["AbyssJewel"] = { + ["min"] = 50, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 50, + ["max"] = 50, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 50, + ["max"] = 50, }, }, - ["2437_MagicUtilityFlaskEffect"] = { + ["717_FlaskBuffKnockbackWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2564857472", - ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["id"] = "explicit.stat_251342217", + ["text"] = "Adds Knockback to Melee Attacks during Effect", }, - ["sign"] = "", }, - ["8296_SpellsAdditionalUnleashSealMaven"] = { - ["specialCaseData"] = { - }, + ["1611_BurningDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2897207025", - ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 75, + ["AbyssJewel"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["AnyJewel"] = { + ["min"] = 16, + ["max"] = 20, + }, }, - ["2542_FishingQuantity"] = { + ["173_BleedingDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + }, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["8789_SupremeEgo"] = { - ["specialCaseData"] = { + ["3455_LocalElementalPenetration"] = { + ["1HSword"] = { + ["min"] = 6, + ["max"] = 12, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1421267186", - ["text"] = "Supreme Ego", + ["Wand"] = { + ["min"] = 6, + ["max"] = 12, }, - }, - ["1452_MaximumLifeLeechRateOldFix"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["Staff"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["Claw"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["2HSword"] = { + ["min"] = 6, + ["max"] = 12, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + }, + ["Bow"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 12, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 12, }, - ["sign"] = "", - }, - ["1171_IncreasedCastSpeedAddedChaos"] = { ["specialCaseData"] = { }, + }, + ["619_FlaskIncreasedHealingCharges"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + }, + ["AbyssJewel"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 21, + ["max"] = 50, + }, + ["AnyJewel"] = { + ["min"] = 21, + ["max"] = 50, + }, }, - ["1233_ElementalCritMultiplierForJewel"] = { + ["611_FlaskIncreasedHealingCharges"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1569407745", - ["text"] = "#% to Critical Strike Multiplier with Elemental Skills", + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", }, ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["min"] = 20, + ["max"] = 25, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["min"] = 20, + ["max"] = 25, }, ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["min"] = 20, + ["max"] = 25, }, }, - ["1112_LocalChanceToPoisonOnHitChaosDamage"] = { - ["specialCaseData"] = { - }, + ["631_FlaskFullInstantRecovery"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["8126_RemoveFreezeOnFlaskUse"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { + ["AnyJewel"] = { ["min"] = 1, ["max"] = 1, }, }, - ["891_SpellBlockAndBlockUber"] = { + ["405_SocketedSpellCriticalMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have #% to Critical Strike Multiplier", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 30, + ["max"] = 90, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1346_FireResistanceEnemyLeech"] = { - ["specialCaseData"] = { - }, + ["1361_FireDamageAvoidanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", ["id"] = "explicit.stat_3372524247", ["text"] = "#% to Fire Resistance", }, + ["specialCaseData"] = { + }, ["sign"] = "+", + ["Shield"] = { + ["min"] = 20, + ["max"] = 30, + }, + ["Boots"] = { + ["min"] = 20, + ["max"] = 30, + }, }, - ["2791_VaalSkillDuration"] = { + ["1572_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_547412107", - ["text"] = "#% increased Vaal Skill Effect Duration", - }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_876831634", + ["text"] = "Cannot be Frozen", }, - ["sign"] = "", }, - ["8000_ProjectileDamagePerEnemyPierced"] = { + ["1311_LifeRegenerationAndPercent"] = { ["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"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", }, ["sign"] = "", }, - ["1352_ColdResistanceEnemyLeech"] = { - ["specialCaseData"] = { - }, + ["619_FlaskIncreasedRecoveryAmount"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + }, + ["AbyssJewel"] = { + ["min"] = 41, + ["max"] = 70, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 41, + ["max"] = 70, + }, + ["AnyJewel"] = { + ["min"] = 41, + ["max"] = 70, }, - ["sign"] = "+", }, - ["1240_StunDurationAndThresholdUber"] = { + ["7678_MinionFlatAccuracyRating"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have # to Accuracy Rating", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["min"] = 80, + ["max"] = 624, }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + ["Wand"] = { + ["min"] = 80, + ["max"] = 624, }, }, - ["1672_FireDamagePhysConvertedToFire"] = { + ["8472_TailwindOnCriticalStrikeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "explicit.stat_2172944497", + ["text"] = "#% increased Effect of Tailwind on you", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 25, + }, }, - ["1240_StunThresholdReduction"] = { + ["8299_SpellsAdditionalUnleashSealMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["id"] = "explicit.stat_2897207025", + ["text"] = "#% increased Critical Strike Chance with Spells which remove the maximum number of Seals", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 50, + ["max"] = 75, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, - }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 15, - }, }, - ["2339_EnergyShieldAndDegenGracePeriod"] = { + ["2452_MagicUtilityFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_761102773", - ["text"] = "Lose #% of Energy Shield per second", + ["id"] = "explicit.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", }, ["sign"] = "", }, - ["8334_SpellsHinderOnHitChance"] = { + ["3960_PowerChargeOnBlockUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 25, + ["max"] = 25, }, }, - ["1301_MinionDamageOnWeaponAndMana"] = { + ["759_FlaskBuffChillFreezeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 45, + ["Flask"] = { + ["min"] = 36, + ["max"] = 65, }, - ["sign"] = "+", + ["sign"] = "", }, - ["1384_LifeLeechFromAttacksPermyriad"] = { + ["732_FlaskBuffAvoidStunWhileHealing"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", }, - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, - }, - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 31, + ["max"] = 55, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, - }, }, - ["7994_ProjectileAttackDamageDuringFlaskEffect"] = { + ["1151_IncreasedAttackSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2771016039", - ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 14, }, + ["sign"] = "", }, - ["5243_DamageOnFullLife"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_592020238", - ["text"] = "#% increased Damage when on Full Life", - }, - ["specialCaseData"] = { + ["2340_PowerChargeOnKillChanceMaven"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 120, + ["Dagger"] = { + ["min"] = 11, + ["max"] = 15, }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 120, + ["Staff"] = { + ["min"] = 11, + ["max"] = 15, }, - }, - ["882_StaffSpellBlockForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2120297997", - ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Claw"] = { + ["min"] = 11, + ["max"] = 15, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 11, + ["max"] = 15, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 15, + }, + ["specialCaseData"] = { }, }, - ["2856_PoisonDuration"] = { + ["7824_IncreasedAilmentDurationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + }, + ["Gloves"] = { + ["min"] = 13, + ["max"] = 15, }, ["sign"] = "", }, - ["8730_ZeroChaosResistanceDelve"] = { + ["1287_EvasionEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2439129490", - ["text"] = "Chaos Resistance is Zero", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", }, + ["sign"] = "", }, - ["1874_MaximumMinionCount"] = { - ["specialCaseData"] = { + ["1634_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_125218179", - ["text"] = "# to maximum number of Spectres", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, - ["sign"] = "+", - }, - ["4228_ArcticArmourReservationEfficiency"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 6, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, }, - ["323_SupportedByInspirationWeapon"] = { + ["4195_MaximumManaIncreasePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", }, - ["2HWeapon"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "", }, - ["1599_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["1756_FreezeChanceAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, ["sign"] = "", }, - ["1093_SpellAddedColdDamageHybrid"] = { + ["1361_FireResistanceEnemyLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1171_IncreasedCastSpeedSupported"] = { + ["712_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_1456464057", + ["text"] = "#% of Spell Damage Leeched as Energy Shield during Effect", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 14, + ["Flask"] = { + ["min"] = 0.4, + ["max"] = 0.8, }, ["sign"] = "", }, - ["5109_ReducedShockEffectOnSelfMaven"] = { + ["1382_LifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1434381067", - ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", - }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 75, - }, - ["sign"] = "", - }, - ["5238_DamageVSAbyssMonsters"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3257279374", - ["text"] = "#% increased Damage against Abyssal Monsters", - }, - ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 40, - }, }, - ["219_WeaponSpellDamagePowerChargeOnCrit"] = { + ["119_LocalIncreaseSocketedMinionGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - }, - ["sign"] = "", - }, - ["5556_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2935548106", - ["text"] = "# to Evasion Rating if Hit an Enemy Recently", - }, - ["2HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, - }, - ["AbyssJewel"] = { - ["min"] = 250, - ["max"] = 300, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, - }, - ["AnyJewel"] = { - ["min"] = 250, - ["max"] = 300, - }, }, - ["1133_PoisonDamageAddedChaosToSpells"] = { + ["760_FlaskBuffCurseEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + }, + ["Flask"] = { + ["min"] = 36, + ["max"] = 65, }, ["sign"] = "", }, - ["5705_GainAccuracyEqualToStrength"] = { - ["specialCaseData"] = { + ["1691_ConvertPhysicalToLightningMaven"] = { + ["Gloves"] = { + ["min"] = 22, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, - }, - ["3048_WrathAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", + ["Quiver"] = { + ["min"] = 22, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, - }, }, - ["915_PercentageDexterity"] = { + ["1293_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { ["Gloves"] = { ["min"] = 6, - ["max"] = 12, + ["max"] = 42, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 12, - }, ["Chest"] = { - ["min"] = 5, - ["max"] = 12, + ["min"] = 6, + ["max"] = 42, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, }, }, - ["1093_ColdDamagePrefixColdPenetration"] = { + ["939_TrapDamageMineSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["1676_ConvertPhysicalToLightning"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, + ["3906_ChanceToAvoidBleeding"] = { + ["BaseJewel"] = { + ["min"] = 31, + ["max"] = 50, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 50, + ["max"] = 50, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 31, + ["max"] = 50, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 31, + ["max"] = 50, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["Chest"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Shield"] = { + ["min"] = 50, + ["max"] = 50, }, }, - ["4242_EnduranceChargeIfHitRecentlyMaven"] = { + ["7683_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 3, + ["id"] = "explicit.stat_4227567885", + ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", }, ["sign"] = "", }, - ["8073_RareOrUniqueMonsterDroppedItemRarity"] = { - ["specialCaseData"] = { - }, + ["906_SpellBlockAndBlockUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2161689853", - ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", }, - ["Helmet"] = { - ["min"] = 55, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 12, + }, + ["Staff"] = { + ["min"] = 8, + ["max"] = 12, + }, }, - ["1403_EnemyChaosDamageLifeLeechPermyriad"] = { + ["4324_AdditionalChanceToEvadeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_334180828", - ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_223937937", + ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", + }, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 12, }, ["sign"] = "", }, - ["1614_SkillEffectDurationSupported"] = { - ["specialCaseData"] = { - }, + ["7776_MovementSpeedIfNotDamagedRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "explicit.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 4, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 15, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 4, }, }, - ["8125_RemoveBleedingOnWarcry"] = { + ["8337_SpellsHinderOnHitChance"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 8, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 8, + }, + }, + ["1836_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3936926420", - ["text"] = "Removes Bleeding when you use a Warcry", + ["id"] = "explicit.stat_1743759111", + ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 20.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, }, - ["1267_EvasionRating"] = { + ["1817_AddedColdDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 170, + ["Claw"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["AbyssJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["min"] = 6.5, + ["max"] = 21.5, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["AnyJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["min"] = 6.5, + ["max"] = 21.5, }, }, - ["1107_LightningDamage"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 23.5, - }, + ["4388_AttackSpeedIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", }, - ["Quiver"] = { - ["min"] = 2, - ["max"] = 75.5, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 39.5, - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 39.5, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, }, }, - ["1690_MinionDamageSupported"] = { + ["2882_PoisonDamageAddedChaosToAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, ["sign"] = "", }, - ["1188_GainEnduranceChargeOnCritUber"] = { + ["5020_AbyssJewelChillEffect"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 15, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["1485_MaximumMinionCountAndMinionLife"] = { + ["1146_SpellAddedColdDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 20.5, + ["max"] = 50, }, ["sign"] = "", }, - ["6781_ChanceToPoisonSupported"] = { + ["2203_AbyssMinionAttacksBleedOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 15, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + }, + ["571_TriggerOnRarePoachersMark"] = { + ["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", }, + ["sign"] = "", }, - ["1084_FireDamagePercentagePrefix"] = { + ["338_SupportedByInspirationWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["924_TrapDamageMineSupported"] = { - ["specialCaseData"] = { - }, + ["4176_ReducedPhysicalDamageTakenIfNotHitRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_3603666270", + ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, + }, }, - ["1113_GlobalAddedChaosDamage"] = { + ["976_LocalIncreasedPhysicalDamagePercentIronGrip"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, + ["sign"] = "", + }, + ["1689_ConvertPhysicalToCold"] = { ["Gloves"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["1HSword"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["Quiver"] = { ["min"] = 18, ["max"] = 25, }, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 30, + }, ["sign"] = "", - }, - ["1980_MinionPhysicalDamageReduction"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["Claw"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 23, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 7, - ["max"] = 15, + ["2HAxe"] = { + ["min"] = 23, + ["max"] = 30, }, - }, - ["1738_IgniteChanceAndDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 23, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["2HWeapon"] = { + ["min"] = 23, + ["max"] = 30, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 30, }, - ["sign"] = "", - }, - ["7588_MaximumLifeConvertedToEnergyShield"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2458962764", - ["text"] = "#% of Maximum Life Converted to Energy Shield", - }, - ["sign"] = "", }, - ["953_WeaponSpellDamageControlledDestruction"] = { + ["5720_GainAccuracyEqualToStrengthMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1849_DamageOverTimeWhileHoldingAShield"] = { + ["5580_EvasionRatingWhileMoving"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1244360317", - ["text"] = "#% increased Damage over Time while holding a Shield", + ["id"] = "explicit.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 25, + ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 18, - }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 25, + ["max"] = 35, }, }, - ["2978_OnslaughtEffect"] = { + ["1186_IncreasedCastSpeedAddedChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, ["sign"] = "", }, - ["345_ShockEffectSupported"] = { + ["5272_DamageRemovedFromManaBeforeLifeWhileFocused"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1106668565", - ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["Chest"] = { + ["min"] = 18, + ["max"] = 22, }, ["sign"] = "", }, - ["8031_PurityOfLightningReservation"] = { + ["906_SpellBlockPercentageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + }, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", }, - ["1471_MaximumManaOnKillPercent"] = { - ["specialCaseData"] = { - }, + ["406_SocketedSpellsManaCost"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 6, + ["Shield"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Helmet"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Boots"] = { + ["min"] = 20, + ["max"] = 20, + }, }, - ["892_BlockWhileDualWielding"] = { + ["5519_EnchantmentWither"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_1032614900", + ["text"] = "Enemies Withered by you have #% to all Resistances", }, - ["sign"] = "+", - ["1HWeapon"] = { + ["AbyssJewel"] = { ["min"] = 2, - ["max"] = 9, + ["max"] = 2, }, - ["2HWeapon"] = { + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["AnyJewel"] = { ["min"] = 2, - ["max"] = 9, + ["max"] = 2, }, }, - ["2826_ChillEnemiesWhenHit"] = { + ["1582_ReducedShockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2459809121", - ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, ["sign"] = "", }, - ["7905_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + ["1830_AddedLightningDamageWithWands"] = { ["tradeMod"] = { ["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, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["Wand"] = { + ["min"] = 10, + ["max"] = 27.5, }, - }, - ["1203_MeleeCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1199429645", - ["text"] = "#% increased Melee Critical Strike Chance", + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { + ["1HWeapon"] = { ["min"] = 10, - ["max"] = 14, + ["max"] = 27.5, }, ["AnyJewel"] = { ["min"] = 10, - ["max"] = 14, + ["max"] = 27.5, }, }, - ["1521_FrenzyChargeOnHitChanceMaven"] = { + ["1102_FireDamagePhysConvertedToFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1541516339", - ["text"] = "#% increased Movement Speed per Frenzy Charge", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", }, ["sign"] = "", }, - ["907_Strength"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 55, + ["1436_ManaLeechLocalPermyriad"] = { + ["1HSword"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, + ["2HMace"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, + ["Staff"] = { + ["min"] = 0.2, + ["max"] = 0.4, + }, + ["1HMace"] = { + ["min"] = 0.2, + ["max"] = 0.4, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 0.2, + ["max"] = 0.4, + }, + ["Claw"] = { + ["min"] = 0.2, + ["max"] = 0.4, + }, + ["2HSword"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "explicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", }, - ["Belt"] = { - ["min"] = 8, - ["max"] = 60, + ["Bow"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, + ["2HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 55, + ["1HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 0.2, + ["max"] = 0.4, }, ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 0.2, + ["max"] = 0.4, }, - }, - ["8791_VaalPact"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2257118425", - ["text"] = "Vaal Pact", + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", }, }, - ["8586_SupportedByItemRarityUnique"] = { - ["specialCaseData"] = { - }, + ["6274_LifeRegenerationRateWhileMoving"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_121185030", - ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", + ["id"] = "explicit.stat_908516597", + ["text"] = "Regenerate #% of Life per second while moving", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 0.5, + ["max"] = 1, }, - ["sign"] = "", - }, - ["1593_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, - }, ["sign"] = "", - }, - ["4382_ManaGainPerTargetMaven"] = { - ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 0.5, + ["max"] = 1, }, + }, + ["1864_DamageOverTimeWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_779663446", - ["text"] = "#% increased Attack Speed while not on Low Mana", + ["id"] = "explicit.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", }, - ["Quiver"] = { + ["AbyssJewel"] = { ["min"] = 10, - ["max"] = 20, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", - }, - ["7686_MinionDamageOnWeaponDoubleDamage"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 18, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 18, }, + }, + ["1837_SpellAddedColdDamageWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_755922799", - ["text"] = "Minions have #% chance to deal Double Damage", + ["id"] = "explicit.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, + }, }, - ["5802_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["1234_CritMultiplierWithBowForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", + ["id"] = "explicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", }, + ["sign"] = "+", }, - ["8301_SpellDamageDuringFlaskEffect"] = { + ["1578_MovementVelocityAndCannotBeChilled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2080171093", - ["text"] = "#% increased Spell Damage during any Flask Effect", + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["Boots"] = { + ["min"] = 100, + ["max"] = 100, }, }, - ["1818_AddedChaosDamageWithDaggers"] = { + ["7688_MinionAttacksBlindOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3248691197", - ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["id"] = "explicit.stat_2431643207", + ["text"] = "Minions have #% chance to Blind on Hit with Attacks", }, ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, - }, - ["2860_MinionsPoisonEnemiesOnHit"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["min"] = 3, + ["max"] = 6, }, - ["sign"] = "", - }, - ["2790_AdditionalVaalSoulOnKill"] = { ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { ["min"] = 3, - ["max"] = 5, + ["max"] = 6, }, + }, + ["6283_AbyssJewelShockEffect"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 8, + ["min"] = 10, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 8, + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["1130_SpellAddedFireDamagePenetrationHybrid"] = { + ["2622_MinionChaosResistance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 38.5, + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", }, - ["2HWeapon"] = { - ["min"] = 12.5, - ["max"] = 52, + ["AbyssJewel"] = { + ["min"] = 7, + ["max"] = 11, }, - }, - ["3161_TrapAreaOfEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4050593908", - ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["sign"] = "+", + ["AnyJewel"] = { + ["min"] = 7, + ["max"] = 11, }, - ["sign"] = "", }, - ["963_MeleeDamageAndMeleeRange"] = { + ["1614_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Gloves"] = { - ["min"] = 13, - ["max"] = 16, + ["min"] = 8, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["4457_LightningDamageESLeech"] = { + ["1753_IgniteChanceAndDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_308127151", - ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, ["sign"] = "", }, - ["7692_MinionCriticalStrikeChanceIncrease"] = { + ["930_PercentageDexterityMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Strike Chance", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["Amulet"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["Chest"] = { + ["min"] = 9, + ["max"] = 12, }, }, - ["3943_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { + ["753_FlaskReflectReductionDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2693266036", - ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["id"] = "explicit.stat_3842373291", + ["text"] = "#% reduced Reflected Damage taken during Effect", + }, + ["Flask"] = { + ["min"] = 60, + ["max"] = 80, }, ["sign"] = "", }, - ["241_TrapSpeedCooldownSupported"] = { + ["7568_FortifyEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["id"] = "explicit.stat_335507772", + ["text"] = "# to maximum Fortification", + }, + ["Helmet"] = { + ["min"] = 4.2, + ["max"] = 5, }, + ["sign"] = "+", + }, + ["4917_ChanceWhenHitForArmourToBeDoubled"] = { ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["min"] = 10, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1104_LightningDamagePercentage"] = { + ["Belt"] = { + ["min"] = 11, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", }, ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["min"] = 20, + ["max"] = 20, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 20, }, - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["Amulet"] = { + ["min"] = 20, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["Chest"] = { + ["min"] = 10, + ["max"] = 20, }, }, - ["145_SupportedByArcaneSurgeWeapon"] = { + ["1994_ReducedPhysicalDamageTakenMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", }, ["sign"] = "", - }, - ["1522_MinimumEnduranceChargesAndOnKillLose"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["Boots"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "+", }, - ["8026_PurityOfFireReservationEfficiency"] = { - ["specialCaseData"] = { - }, + ["1129_AddedChaosSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, + ["AbyssJewel"] = { + ["min"] = 8.5, + ["max"] = 16, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 8.5, + ["max"] = 16, + }, }, - ["333_MinionDamageSupported"] = { + ["8076_RareOrUniqueMonsterDroppedItemRarity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_808939569", - ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["id"] = "explicit.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", }, ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["min"] = 55, + ["max"] = 60, }, ["sign"] = "", }, - ["1104_LightningDamagePrefixLightningPenetration"] = { - ["specialCaseData"] = { - }, + ["1198_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 82, + }, + ["Staff"] = { + ["min"] = 60, + ["max"] = 82, + }, }, - ["1131_SpellAddedColdDamage"] = { + ["1680_ChaosResistanceDamageOverTime"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, - ["1HWeapon"] = { - ["min"] = 1.5, - ["max"] = 73.5, + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", }, ["sign"] = "", }, - ["872_BlockPercentMaven"] = { - ["specialCaseData"] = { - }, + ["1825_AddedLightningDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["id"] = "explicit.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["Claw"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "", - }, - ["1338_MinionGlobalSkillLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3235814433", - ["text"] = "# to Level of all Raise Spectre Gems", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 2, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, }, - ["1103_ColdGemCastSpeedForJewel"] = { + ["1308_PercentIncreasedLifeForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_928238845", - ["text"] = "#% increased Cast Speed with Cold Skills", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 5, + ["max"] = 7, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 5, + ["max"] = 7, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 5, + ["max"] = 7, }, }, - ["1171_IncreasedCastSpeedTwoHandedKilledRecently"] = { - ["specialCaseData"] = { + ["1286_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 375, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 375, }, - ["sign"] = "", - }, - ["6274_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3500911418", - ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 5, + ["max"] = 375, + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 375, }, - ["sign"] = "", }, - ["981_FireDamageOverTimeMultiplierWithAttacks"] = { + ["5680_TriggerSocketedSpellWhenYouFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2139660169", - ["text"] = "#% to Fire Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 8, }, + ["sign"] = "", }, - ["2146_PhysicalDamageTakenAsColdUber"] = { + ["4284_IncreasedArmourIfNoEnemySlainRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "explicit.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + }, + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 13, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["1346_FireResistance"] = { + ["1691_ConvertPhysicalToLightning"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 35, + }, ["Quiver"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 18, + ["max"] = 25, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 23, + ["max"] = 30, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 6, - ["max"] = 48, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["Staff"] = { + ["min"] = 23, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 48, + ["Claw"] = { + ["min"] = 23, + ["max"] = 30, }, ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 23, + ["max"] = 30, }, ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 48, - }, - ["Amulet"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 23, + ["max"] = 30, }, - }, - ["2181_LocalChanceToBleed"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - }, - ["sign"] = "", }, - ["1035_IncreasedStaffDamageForJewel"] = { + ["1009_AddedPhysicalSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4087089130", - ["text"] = "#% increased Damage with Staves", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 2, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, - }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 2, + ["max"] = 6, }, }, - ["1132_SpellAddedLightningSuffix"] = { + ["968_WeaponSpellDamageReducedMana"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, - ["AbyssJewel"] = { + ["sign"] = "", + }, + ["923_Dexterity"] = { + ["Gloves"] = { ["min"] = 8, - ["max"] = 25.5, + ["max"] = 60, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { + ["sign"] = "+", + ["Dagger"] = { ["min"] = 8, - ["max"] = 25.5, + ["max"] = 55, + }, + ["Boots"] = { + ["min"] = 8, + ["max"] = 55, }, - }, - ["3058_FireDamageAvoidance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", }, - ["Chest"] = { + ["Ring"] = { ["min"] = 8, - ["max"] = 10, + ["max"] = 55, + }, + ["Amulet"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["1HSword"] = { + ["min"] = 8, + ["max"] = 55, }, ["Quiver"] = { ["min"] = 8, - ["max"] = 10, + ["max"] = 60, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["2HSword"] = { + ["min"] = 8, + ["max"] = 55, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["Chest"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["2HAxe"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Claw"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Bow"] = { + ["min"] = 8, + ["max"] = 55, }, }, - ["1562_AvoidElementalStatusAilments"] = { + ["1664_FireDamageAsPortionOfDamage"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + }, + ["sign"] = "", + }, + ["4446_AilmentDamage"] = { + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Quiver"] = { + ["min"] = 30, + ["max"] = 40, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { - ["min"] = 16, - ["max"] = 35, - }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 45, + ["Belt"] = { + ["min"] = 30, + ["max"] = 40, }, - }, - ["1801_AddedColdDamageWithBows"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["id"] = "explicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", }, ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 15, + ["max"] = 20, }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 30, + ["max"] = 40, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Amulet"] = { + ["min"] = 30, + ["max"] = 40, }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 15, + ["max"] = 20, }, }, - ["131_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["1320_ManaDegenerationGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1164882313", - ["text"] = "#% to Quality of Socketed Cold Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", }, + ["sign"] = "", }, - ["2187_BleedChanceAndDurationForJewel"] = { + ["6941_ManaRegenerationRateWhileMoving"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 20, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - }, - ["3051_HatredAuraEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["min"] = 20, + ["max"] = 25, }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["Boots"] = { + ["min"] = 50, + ["max"] = 70, }, }, - ["2323_FrenzyChargeOnKillChance"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, - }, + ["4769_CastSpeedIfMinionKilledRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["id"] = "explicit.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", }, - ["Quiver"] = { - ["min"] = 4, + ["AbyssJewel"] = { + ["min"] = 7, ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 10, - }, - ["2HWeapon"] = { - ["min"] = 4, + ["AnyJewel"] = { + ["min"] = 7, ["max"] = 10, }, }, - ["1299_LifeRegenerationRate"] = { - ["Gloves"] = { - ["min"] = 9, - ["max"] = 21, - }, + ["5516_EnchantmentIntimidate"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "explicit.stat_1919892065", + ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 21, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 9, - ["max"] = 21, - }, - ["Boots"] = { - ["min"] = 9, - ["max"] = 21, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["3140_IncreasedDamageFromAuras"] = { + ["1536_FrenzyChargeOnHitChanceMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3729445224", - ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, - }, }, - ["5866_HatredReservation"] = { + ["699_FlaskBuffEvasionWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + }, + ["Flask"] = { + ["min"] = 41, + ["max"] = 60, }, ["sign"] = "", }, - ["8364_StatusAilmentsYouInflictDurationWhileFocused"] = { - ["specialCaseData"] = { - }, + ["4180_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1840751341", - ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["id"] = "explicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", }, - ["Helmet"] = { - ["min"] = 81, - ["max"] = 90, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1158_LightRadiusAndAccuracy"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "+", - }, - ["1305_IncreasedManaAndDegenGracePeriod"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, + }, + ["1847_SpellAddedPhysicalDamageWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", + ["id"] = "explicit.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, - ["sign"] = "", - }, - ["8782_Runebinder"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4080245957", - ["text"] = "Runebinder", + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, }, - ["8641_WarcryAreaOfEffect"] = { - ["specialCaseData"] = { - }, + ["1706_MinionDamageIfMinionSkillUsedRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_412745376", + ["text"] = "Minions deal #% increased Damage if you've used a Minion Skill Recently", }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 30, + ["AbyssJewel"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - }, - ["6914_RecoverManaPercentOnBlock"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 15, + ["max"] = 20, + }, + }, + ["4768_CastSpeedIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + }, + ["AbyssJewel"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 5, + ["max"] = 7, }, }, - ["1649_ConvertPhysicalToFireMaven"] = { + ["1479_ManaGainPerTargetMaven"] = { ["Gloves"] = { ["min"] = 3, ["max"] = 5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", }, ["Quiver"] = { ["min"] = 3, @@ -7789,4192 +8535,4285 @@ return { }, ["sign"] = "", }, - ["1599_SupportedBySpellCascadeArea"] = { - ["specialCaseData"] = { - }, + ["7713_FlatMinionLifeRegeneration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_3062329212", + ["text"] = "Minions Regenerate # Life per second", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["AbyssJewel"] = { + ["min"] = 22, + ["max"] = 60, }, - ["sign"] = "", - }, - ["8746_PerfectAgony"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3884934810", - ["text"] = "Perfect Agony", + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 22, + ["max"] = 60, }, }, - ["293_AdditionalTrapsThrownSupported"] = { + ["1119_SpellAddedLightningDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, ["sign"] = "", }, - ["1795_AddedFireDamageWithDaggers"] = { + ["7678_MinionAccuracyRatingFlat"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1910361436", - ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have # to Accuracy Rating", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 95, + ["max"] = 250, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, + ["sign"] = "+", ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 95, + ["max"] = 250, }, }, - ["1300_LifeRecoveryRate"] = { + ["955_DamageOverTimeForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 12, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 8, - ["max"] = 15, + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 12, }, - ["Belt"] = { - ["min"] = 7, + ["AnyJewel"] = { + ["min"] = 10, ["max"] = 12, }, }, - ["2262_FasterIgniteDamage"] = { + ["1844_SpellAddedLightningDamageWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["specialCaseData"] = { + ["id"] = "explicit.stat_1801889979", + ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, }, - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, + ["specialCaseData"] = { }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, }, }, - ["7664_AddedPhysicalDamageVsPoisonedEnemies"] = { - ["specialCaseData"] = { + ["1102_FireDamage"] = { + ["Gloves"] = { + ["min"] = 1.5, + ["max"] = 21, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_424026624", - ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 14.5, + ["Quiver"] = { + ["min"] = 2, + ["max"] = 68.5, }, - ["sign"] = "", - }, - ["1301_IncreasedManaForJewel"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 1.5, + ["max"] = 35, + }, + ["Ring"] = { + ["min"] = 1.5, + ["max"] = 35, + }, + }, + ["1277_PhysicalDamageReductionRating"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + }, + ["AnyJewel"] = { + ["min"] = 36, + ["max"] = 250, + }, + ["AbyssJewel"] = { + ["min"] = 36, + ["max"] = 250, + }, + ["specialCaseData"] = { }, ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 36, + ["max"] = 250, + }, + ["Belt"] = { + ["min"] = 3, + ["max"] = 540, + }, }, - ["8725_ZealotryAuraEffect"] = { + ["4923_GainFortifyOnStunChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + }, + ["2HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["min"] = 10, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, }, }, - ["1293_LifeAndPercentLife"] = { - ["specialCaseData"] = { + ["365_SupportedByEnduranceChargeOnStunWeapon"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + }, + ["2HMace"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, }, - ["4210_AngerReservation"] = { + ["2213_LocalLightRadiusAndAccuracy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", }, ["sign"] = "", }, - ["7680_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { - ["specialCaseData"] = { - }, + ["968_WeaponSpellDamageControlledDestruction"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4227567885", - ["text"] = "Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, - ["sign"] = "", - }, - ["3891_ChanceToAvoidBleeding"] = { - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HWeapon"] = { + ["min"] = 45, + ["max"] = 60, + }, + ["Wand"] = { + ["min"] = 45, + ["max"] = 60, }, ["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, + ["Dagger"] = { + ["min"] = 45, + ["max"] = 60, }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 50, + ["1HMace"] = { + ["min"] = 45, + ["max"] = 60, }, }, - ["1802_AddedColdDamageWithClaws"] = { + ["5227_DamageIfEnemySlainRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2848646243", - ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["id"] = "explicit.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", }, ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 15, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 15, + ["max"] = 20, }, }, - ["4374_AttackSpeedIfCriticalStrikeDealtRecently"] = { + ["3958_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1585344030", - ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, }, - ["953_SpellDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, + ["7689_MinionDamageOnWeaponDoubleDamage"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, - }, }, - ["2179_CausesBleeding25PercentChance"] = { + ["976_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["2436_FlaskEffect"] = { + ["1203_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["2HMace"] = { + ["min"] = 22, + ["max"] = 29, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["Staff"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["2HSword"] = { + ["min"] = 22, + ["max"] = 29, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 4, - ["max"] = 12, + ["2HWeapon"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["Bow"] = { + ["min"] = 22, + ["max"] = 29, }, }, - ["4161_ReducedPhysicalDamageTakenIfNotHitRecently"] = { + ["620_FlaskIncreasedRecoverySpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3603666270", - ["text"] = "#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 41, + ["max"] = 70, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 41, + ["max"] = 70, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 41, + ["max"] = 70, }, }, - ["1390_FireDamageLifeLeechPermyriad"] = { + ["1840_SpellAddedFireDamageWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["id"] = "explicit.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, }, - ["1660_LifeDegenerationAndPercentGracePeriod"] = { + ["1788_ManaRecoveryRateMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1661347488", - ["text"] = "Lose #% of Life per second", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + }, + ["Chest"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["1659_ElementalDamagePercentAddedAsChaos"] = { + ["1828_AddedLightningDamageWithStaves"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3495544060", - ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + ["Staff"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["2HWeapon"] = { + ["AnyJewel"] = { ["min"] = 10, - ["max"] = 15, + ["max"] = 27.5, }, }, - ["379_SocketedGemsDealAdditionalFireDamage"] = { - ["specialCaseData"] = { + ["1186_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1289910726", - ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["Wand"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["2HMace"] = { + ["min"] = 26, + ["max"] = 31, + }, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["103_LocalIncreaseSocketedMeleeGemLevel"] = { + ["2HAxe"] = { + ["min"] = 26, + ["max"] = 31, + }, + ["Staff"] = { + ["min"] = 26, + ["max"] = 31, + }, + ["2HSword"] = { + ["min"] = 26, + ["max"] = 31, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["Claw"] = { + ["min"] = 18, + ["max"] = 22, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["2HWeapon"] = { + ["min"] = 26, + ["max"] = 31, }, - ["sign"] = "+", ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 18, + ["max"] = 22, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["Bow"] = { + ["min"] = 26, + ["max"] = 31, }, }, - ["3936_MovementSpeedIfEnemySlainRecently"] = { + ["1808_FireDamageWithBowsJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_279227559", - ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["id"] = "explicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 25, }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 8, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", + ["Bow"] = { + ["min"] = 8, + ["max"] = 25, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 8, + ["max"] = 25, }, }, - ["1914_AttackerTakesDamageNoRange"] = { + ["2337_MinimumEnduranceChargesAndOnKillLose"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 50, + ["id"] = "explicit.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 50, + ["sign"] = "", + }, + ["1819_AddedColdDamageWithMaces"] = { + ["2HMace"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 10, - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 10, + ["AnyJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, - }, - ["1738_IgniteChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["id"] = "explicit.stat_187418672", + ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6.5, + ["max"] = 21.5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["1HMace"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, }, - ["7652_GlobalAddedFireDamagePerEnduranceCharge"] = { + ["4130_AccuracyIfNoEnemySlainRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1073447019", - ["text"] = "# to # Fire Damage per Endurance Charge", - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 5.5, + ["id"] = "explicit.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", }, ["sign"] = "", }, - ["1454_MaximumEnergyShieldLeechRate"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["8244_IncreasedManaAndBaseCost"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost # Mana", + }, + ["sign"] = "-", + }, + ["1811_AddedFireDamageWithMaces"] = { + ["2HMace"] = { + ["min"] = 8, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, + ["AnyJewel"] = { + ["min"] = 8, ["max"] = 25, }, - }, - ["1786_AddedPhysicalDamageWithMaces"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3882662078", - ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", - }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["id"] = "explicit.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", }, ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 8, + ["max"] = 25, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 25, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 8, + ["max"] = 25, }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["1HMace"] = { + ["min"] = 8, + ["max"] = 25, }, }, - ["987_ChaosDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["3458_LocalLightningDamagePenetrationHybrid"] = { + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 7, }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 48, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 7, }, - }, - ["1815_AddedLightningDamageWithWands"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2787733863", - ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Bow"] = { + ["min"] = 5, + ["max"] = 7, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, - }, - ["363_DisplaySocketedSkillsChain"] = { ["specialCaseData"] = { }, + }, + ["1323_ManaRecoveryRate"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2788729902", - ["text"] = "Socketed Gems Chain # additional times", + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 12, + }, + ["Belt"] = { + ["min"] = 7, + ["max"] = 12, + }, }, - ["6272_LifeRegenerationRateWhileMoving"] = { + ["1127_IncreasedChaosDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_908516597", - ["text"] = "Regenerate #% of Life per second while moving", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["AbyssJewel"] = { - ["min"] = 0.5, - ["max"] = 1, + ["min"] = 13, + ["max"] = 19, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.5, - ["max"] = 1, - }, - }, - ["1665_ChaosResistanceDamageOverTime"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 13, + ["max"] = 19, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", + ["AnyJewel"] = { + ["min"] = 13, + ["max"] = 19, }, - ["sign"] = "", }, - ["1814_AddedLightningDamageWithSwords"] = { + ["7695_MinionCriticalStrikeChanceIncrease"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1237708713", - ["text"] = "# to # Added Lightning Damage with Sword Attacks", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", }, - ["AbyssJewel"] = { + ["Wand"] = { ["min"] = 10, - ["max"] = 27.5, + ["max"] = 109, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { ["min"] = 10, - ["max"] = 27.5, + ["max"] = 109, }, - ["AnyJewel"] = { + ["Shield"] = { ["min"] = 10, - ["max"] = 27.5, + ["max"] = 109, }, }, - ["2860_AbyssMinionPoisonOnHitChance"] = { + ["5254_ColdResistanceAilments"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, - }, }, - ["1810_AddedLightningDamageWithClaws"] = { + ["5680_FocusCooldownRecovery"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4231842891", - ["text"] = "# to # Added Lightning Damage with Claw Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Boots"] = { + ["min"] = 31, + ["max"] = 35, }, }, - ["1517_MovementVelocitySpellDodge"] = { + ["2887_MovementSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", }, ["sign"] = "", - }, - ["2859_PoisonChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Belt"] = { + ["min"] = 6, + ["max"] = 10, }, + }, + ["1306_LocalBaseWardAndLife"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, + ["sign"] = "+", }, - ["1593_ReducedFreezeDurationMaven"] = { + ["8727_SpellsAdditionalUnleashSeal"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have # to maximum number of Seals", }, ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["994_AddedPhysicalSuffix"] = { + ["1833_AddedChaosDamageWithDaggers"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + }, + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 6, + ["min"] = 6.5, + ["max"] = 18.5, }, ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 6.5, + ["max"] = 18.5, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 6, + ["min"] = 6.5, + ["max"] = 18.5, }, }, - ["1599_AreaDamageAndAreaOfEffect"] = { + ["1823_AddedLightningDamageWithAxes"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "", - }, - ["4135_AdditionalBlockChancePerEnduranceChargeUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3039589351", - ["text"] = "#% Chance to Block Attack Damage per Endurance Charge", + ["id"] = "explicit.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 27.5, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 10, + ["max"] = 27.5, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, }, }, - ["5059_ConsecratedGroundStationary"] = { + ["2238_CurseOnHitLevelElementalWeaknessMod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", + ["id"] = "explicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", }, - ["Chest"] = { + ["Ring"] = { ["min"] = 1, ["max"] = 1, }, }, - ["886_BlockingBlocksSpells"] = { + ["7635_MineAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "explicit.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", }, ["sign"] = "", }, - ["1391_FireResistanceEnemyLeech"] = { - ["specialCaseData"] = { + ["1291_LocalArmourAndEvasionAndStunRecovery"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 42, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", }, - ["sign"] = "", - }, - ["235_SupportedBySpiritStrikeArea"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_696805682", - ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["Chest"] = { + ["min"] = 6, + ["max"] = 42, }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, }, }, - ["4755_CastSpeedIfMinionKilledRecently"] = { + ["1102_AddedFireSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3110907148", - ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", }, ["AbyssJewel"] = { ["min"] = 7, - ["max"] = 10, + ["max"] = 21.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { ["min"] = 7, - ["max"] = 10, + ["max"] = 21.5, }, }, - ["5584_LuckyCriticalsDuringFocusCDR"] = { - ["specialCaseData"] = { - }, + ["207_CriticalStrikeChanceSpellsSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1349659520", - ["text"] = "Your Critical Strike Chance is Lucky while Focused", - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", }, - }, - ["5501_EnchantmentIntimidate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1919892065", - ["text"] = "Enemies Intimidated by you have #% increased duration of stuns against them", + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, }, - ["8758_EldritchBattery"] = { + ["395_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2262736444", - ["text"] = "Eldritch Battery", - }, - }, - ["874_ShieldSpellBlockForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_938645499", - ["text"] = "#% Chance to Block Spell Damage while holding a Shield", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", }, + ["sign"] = "", }, - ["5004_ColdAilmentDuration"] = { + ["1317_EnergyShieldAndManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3571964448", - ["text"] = "#% increased Duration of Cold Ailments", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, ["sign"] = "", }, - ["4165_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { + ["1145_SpellAddedFireDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["min"] = 9, + ["max"] = 38.5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["5665_LuckyCriticalsDuringFocusCDR"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["Dagger"] = { + ["min"] = 9, + ["max"] = 38.5, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, + ["Staff"] = { + ["min"] = 12.5, + ["max"] = 52, }, - }, - ["1691_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, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, - }, - ["340_ColdDamagePrefixColdPenetration"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1991958615", - ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["2HWeapon"] = { + ["min"] = 12.5, + ["max"] = 52, }, ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 9, + ["max"] = 38.5, + }, + ["Wand"] = { + ["min"] = 9, + ["max"] = 38.5, }, - ["sign"] = "", }, - ["5202_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { + ["1809_AddedFireDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_455556407", - ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["id"] = "explicit.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + }, + ["Claw"] = { + ["min"] = 8, + ["max"] = 25, }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 8, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 25, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 8, + ["max"] = 25, }, }, - ["1104_TwoHandLightningDamageWeaponPrefix"] = { + ["1537_MinimumEnduranceChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", }, - ["sign"] = "", + ["sign"] = "+", }, - ["7847_GainEnduranceChargeWhileStationary"] = { + ["2241_CurseOnHitDespair"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2156210979", - ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["1HWeapon"] = { + ["Bow"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { + ["Wand"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["8192_ChanceToShockAttackersOnBlock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_575111651", - ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 50, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Shield"] = { - ["min"] = 25, - ["max"] = 50, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["3058_FireDamageAvoidanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 10, + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["1357_LightningResistanceLeech"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["1873_MaximumMinionCount"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Amulet"] = { + ["1HMace"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["926_MineDamageTrapSupported"] = { + ["1317_MaximumManaIncreasePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", }, - ["8292_SpellBlockIfBlockedSpellRecently"] = { + ["975_PhysicalDamagePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["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, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, + ["sign"] = "", }, - ["1657_ChaosDamageAsPortionOfColdDamage"] = { + ["749_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", + }, + ["Flask"] = { + ["min"] = 3, + ["max"] = 3, }, ["sign"] = "", }, - ["1184_CriticalStrikeChance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 60, + ["1308_PercentageLifeAndMana"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 9, + ["max"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 10, - ["max"] = 38, - }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 25, - }, }, - ["114_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["705_FlaskBuffAccuracyWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4215039317", - ["text"] = "# to Level of Socketed Active Skill Gems", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3337754340", + ["text"] = "#% increased Accuracy Rating during Effect", }, - ["sign"] = "+", + ["sign"] = "", }, - ["7710_FlatMinionLifeRegeneration"] = { + ["1147_SpellAddedLightningSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3062329212", - ["text"] = "Minions Regenerate # Life per second", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["AbyssJewel"] = { - ["min"] = 22, - ["max"] = 60, + ["min"] = 8, + ["max"] = 25.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 22, - ["max"] = 60, + ["min"] = 8, + ["max"] = 25.5, }, }, - ["7675_MinionAccuracyRatingFlat"] = { + ["1302_EnergyShieldRegeneration"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 38, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have # to Accuracy Rating", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", }, - ["AbyssJewel"] = { - ["min"] = 95, - ["max"] = 250, + ["Helmet"] = { + ["min"] = 24, + ["max"] = 38, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 95, - ["max"] = 250, + ["sign"] = "", + ["Chest"] = { + ["min"] = 24, + ["max"] = 38, + }, + ["Boots"] = { + ["min"] = 24, + ["max"] = 38, }, }, - ["1131_SpellAddedColdDamageTwoHand"] = { - ["specialCaseData"] = { + ["978_MeleeDamage"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 38, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 110.5, + ["specialCaseData"] = { }, ["sign"] = "", + ["Ring"] = { + ["min"] = 15, + ["max"] = 25, + }, }, - ["1301_BaseLifeAndMana"] = { + ["1124_LocalLightningDamageTwoHandAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1829_SpellAddedLightningDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1801889979", - ["text"] = "# to # Added Spell Lightning Damage while holding a Shield", + ["1855_FrenzyChargeOnKillChanceMaven"] = { + ["Gloves"] = { + ["min"] = 50, + ["max"] = 50, }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["1HSword"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Quiver"] = { + ["min"] = 50, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["Dagger"] = { + ["min"] = 50, + ["max"] = 50, }, - }, - ["7635_MineDetonationSpeedAndDuration"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 50, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3085465082", - ["text"] = "Mines have #% increased Detonation Speed", + ["2HSword"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - }, - ["1789_AddedPhysicalDamageWithWands"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_133683091", - ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Bow"] = { + ["min"] = 50, + ["max"] = 50, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 50, + ["max"] = 50, }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["2HAxe"] = { + ["min"] = 50, + ["max"] = 50, }, }, - ["5212_DamageIfEnemySlainRecently"] = { + ["7693_AbyssMinionIgniteOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1072119541", - ["text"] = "#% increased Damage if you've Killed Recently", + ["id"] = "explicit.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", }, ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 10, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 10, + ["max"] = 15, }, }, - ["389_SocketedSpellCriticalStrikeChance"] = { - ["specialCaseData"] = { + ["1634_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_135378852", - ["text"] = "Socketed Spells have #% to Critical Strike Chance", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["Helmet"] = { - ["min"] = 1, - ["max"] = 4, + ["min"] = 6, + ["max"] = 17, }, - ["sign"] = "+", - }, - ["1189_CriticalStrikeChanceWithBows"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["1812_AddedFireDamageWithStaves"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["id"] = "explicit.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 44, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 25, }, - }, - ["2165_RecoverEnergyShieldPercentOnBlock"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Staff"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 25, + }, + }, + ["1144_SpellAddedPhysicalSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1606263610", - ["text"] = "Recover #% of Energy Shield when you Block", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + }, + ["AbyssJewel"] = { + ["min"] = 4.5, + ["max"] = 19, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 4.5, + ["max"] = 19, }, }, - ["1390_FireResistanceLeech"] = { + ["8754_CallToArms"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["id"] = "explicit.stat_3292262540", + ["text"] = "Call to Arms", }, - ["sign"] = "", }, - ["1783_PhysicalDamageWithBowsJewel"] = { + ["343_IncreasedCastSpeedSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, - }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, - }, }, - ["114_LocalIncreaseSocketedActiveSkillGemLevel"] = { + ["4734_CannotBeShockedOrIgnitedWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4215039317", - ["text"] = "# to Level of Socketed Active Skill Gems", + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", }, - ["Chest"] = { + ["Ring"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1825_SpellAddedFireDamageWhileDualWielding"] = { + ["2352_EnergyShieldRecoveryRateMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_662691280", - ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["id"] = "explicit.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 50, + ["max"] = 100, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, - }, }, - ["1813_AddedLightningDamageWithStaves"] = { + ["1355_AllResistances"] = { + ["Chest"] = { + ["min"] = 10, + ["max"] = 18, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3212481075", - ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", }, - ["AbyssJewel"] = { + ["Belt"] = { ["min"] = 10, - ["max"] = 27.5, + ["max"] = 18, + }, + ["Ring"] = { + ["min"] = 3, + ["max"] = 16, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 3, + ["max"] = 18, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["Shield"] = { + ["min"] = 3, + ["max"] = 18, }, }, - ["3947_SelfColdDamageTakenPerFrenzy"] = { + ["1145_SpellAddedFireDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_178386603", - ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, ["sign"] = "", }, - ["1301_IncreasedMana"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 73, - }, + ["1367_ColdResistancePhysTakenAsCold"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 15, - ["max"] = 68, - }, - ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 159, - }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 73, + ["sign"] = "+", + }, + ["5857_GraceReservation"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 78, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 73, + ["sign"] = "", + }, + ["6225_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 229, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", }, ["Amulet"] = { ["min"] = 15, - ["max"] = 78, - }, - ["Boots"] = { - ["min"] = 15, - ["max"] = 73, + ["max"] = 15, }, + ["sign"] = "", }, - ["219_SupportedByPowerChargeOnCritWeapon"] = { + ["5749_EnduranceChargeIfHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["id"] = "explicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["1808_AddedLightningDamageWithAxes"] = { + ["1710_ElementalDamagePrefixElementalFocus"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1582068183", - ["text"] = "# to # Added Lightning Damage with Axe Attacks", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, + ["min"] = 45, + ["max"] = 60, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["1HMace"] = { + ["min"] = 45, + ["max"] = 60, }, }, - ["877_ChanceToSuppressSpells"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 22, + ["5881_HatredReservation"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 22, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 5, - ["max"] = 22, - }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 22, + ["id"] = "explicit.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", }, + ["sign"] = "", }, - ["1087_AddedFireSuffix"] = { + ["1122_AddedLightningSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", }, ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 21.5, + ["min"] = 10, + ["max"] = 26, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 21.5, + ["min"] = 10, + ["max"] = 26, }, }, - ["2683_ChanceToGainOnslaughtOnKill"] = { - ["Shield"] = { - ["min"] = 10, - ["max"] = 10, + ["4903_CrushOnHitChance"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["id"] = "explicit.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["sign"] = "", + }, + ["4346_ChanceToGainOnslaughtOnKillMaven"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", }, ["Quiver"] = { - ["min"] = 5, + ["min"] = 3, ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, - }, ["Boots"] = { - ["min"] = 5, + ["min"] = 3, ["max"] = 10, }, }, - ["1933_LifeReservationEfficiency"] = { + ["6784_LocalChanceToPoisonOnHitChaosDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_635485889", - ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", }, ["sign"] = "", }, - ["1805_AddedColdDamageWithStaves"] = { + ["1804_AddedPhysicalDamageWithWands"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1261958804", - ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["id"] = "explicit.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + }, + ["Wand"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 2.5, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, - }, - }, - ["94_LocalIncreaseSocketedColdGemLevelMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 2.5, + ["max"] = 9, }, }, - ["1159_IncreasedAccuracyPercent"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 30, + ["1050_IncreasedStaffDamageForJewel"] = { + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Quiver"] = { - ["min"] = 12, - ["max"] = 30, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 6, - ["max"] = 30, + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", }, - }, - ["1293_PercentIncreasedLifeForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["Staff"] = { + ["min"] = 14, + ["max"] = 16, }, ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 14, + ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 14, + ["max"] = 16, }, }, - ["2181_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["8228_BrandAttachmentRange"] = { + ["Gloves"] = { + ["min"] = 25, + ["max"] = 28, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 40, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 40, + ["Amulet"] = { + ["min"] = 25, + ["max"] = 28, }, }, - ["1788_AddedPhysicalDamageWithSwords"] = { + ["1832_AddedChaosDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1040189894", - ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["id"] = "explicit.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Claw"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 6.5, + ["max"] = 18.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 6.5, + ["max"] = 18.5, }, ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 6.5, + ["max"] = 18.5, }, }, - ["1302_PercentIncreasedManaForJewel"] = { + ["1814_AddedFireDamageWithWands"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + }, + ["Wand"] = { + ["min"] = 8, + ["max"] = 25, }, ["AbyssJewel"] = { ["min"] = 8, - ["max"] = 10, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { + ["1HWeapon"] = { ["min"] = 8, - ["max"] = 10, + ["max"] = 25, }, ["AnyJewel"] = { ["min"] = 8, - ["max"] = 10, + ["max"] = 25, }, }, - ["2276_SummonTotemCastSpeed"] = { + ["1774_IncreasedAttackAndCastSpeedSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 14, + }, + ["sign"] = "", + }, + ["2340_MinimumPowerChargesAndOnKillChance"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 36, - ["max"] = 40, + ["min"] = 3, + ["max"] = 4, }, - ["Boots"] = { - ["min"] = 36, - ["max"] = 40, - }, - }, - ["85_DelveStrengthGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["3081_NearbyEnemiesAreBlindedMaven"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 3, + ["max"] = 4, }, }, - ["7727_MinionSpellsHinderOnHitChance"] = { + ["7701_MinionDamageVSAbyssMonsters"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2323739383", - ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["id"] = "explicit.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["min"] = 30, + ["max"] = 40, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["min"] = 30, + ["max"] = 40, }, }, - ["7690_AbyssMinionIgniteOnHitChance"] = { + ["1816_AddedColdDamageWithBows"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3945908658", - ["text"] = "Minions have #% chance to Ignite", + ["id"] = "explicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + }, + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 6.5, + ["max"] = 21.5, }, ["specialCaseData"] = { }, ["sign"] = "", + ["Bow"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 6.5, + ["max"] = 21.5, }, }, - ["8238_ManaCostTotalChannelled"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2421446548", - ["text"] = "Channelling Skills have # to Total Mana Cost", - }, + ["1807_AddedFireDamageWithAxes"] = { ["specialCaseData"] = { }, - ["sign"] = "-", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 4, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 8, + ["max"] = 25, }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 4, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 25, }, - }, - ["1797_AddedFireDamageWithStaves"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3220927448", - ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["id"] = "explicit.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", }, ["AbyssJewel"] = { ["min"] = 8, ["max"] = 25, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 8, + ["max"] = 25, }, - ["sign"] = "", ["2HWeapon"] = { ["min"] = 8, ["max"] = 25, }, - ["AnyJewel"] = { + ["1HWeapon"] = { ["min"] = 8, ["max"] = 25, }, }, - ["892_BlockDualWieldingForJewel"] = { + ["1778_AccuracyRatingPerFrenzyChargeUber"] = { + ["2HSword"] = { + ["min"] = 5, + ["max"] = 5, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["id"] = "explicit.stat_3700381193", + ["text"] = "#% increased Accuracy Rating per Frenzy Charge", }, - ["AbyssJewel"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 5, + }, + }, + ["1345_GlobalIncreaseSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { ["min"] = 1, ["max"] = 1, }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skill Gems", + }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["1HWeapon"] = { ["min"] = 1, ["max"] = 1, }, - ["AnyJewel"] = { + ["1HMace"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1883_CurseEffectOnYouJewel"] = { + ["1582_AvoidShock"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, - ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 30, + ["Quiver"] = { + ["min"] = 51, + ["max"] = 80, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 25, - ["max"] = 30, - }, - ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 30, + ["Boots"] = { + ["min"] = 51, + ["max"] = 80, }, }, - ["1131_SpellAddedColdSuffix"] = { + ["1306_AbyssJewelLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, ["AbyssJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["min"] = 21, + ["max"] = 40, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 21, + ["max"] = 40, + }, ["AnyJewel"] = { - ["min"] = 7.5, - ["max"] = 27.5, + ["min"] = 21, + ["max"] = 40, }, }, - ["1676_LightningDamagePhysConvertedToLightning"] = { - ["specialCaseData"] = { - }, + ["1799_AddedPhysicalDamageWithClaws"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["id"] = "explicit.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", }, - ["sign"] = "", - }, - ["1107_AddedLightningSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["Claw"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 26, + ["min"] = 2.5, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, + }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 26, + ["min"] = 2.5, + ["max"] = 9, }, }, - ["331_MinionLifeSupported"] = { + ["6917_RecoverManaPercentOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1337327984", - ["text"] = "Socketed Gems are Supported by Level # Minion Life", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", }, ["sign"] = "", - }, - ["1610_IncreaseManaCostFlat"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", + ["Shield"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "-", }, - ["1549_PowerChargeOnCriticalStrikeChance"] = { + ["1148_SpellAddedChaosDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 15, + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", }, ["sign"] = "", }, - ["1132_SpellAddedLightningDamagePenetrationHybrid"] = { + ["2620_MinionLifeRegeneration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + }, + ["AbyssJewel"] = { + ["min"] = 0.4, + ["max"] = 0.8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 41.5, - }, - ["2HWeapon"] = { - ["min"] = 16.5, - ["max"] = 62, + ["AnyJewel"] = { + ["min"] = 0.4, + ["max"] = 0.8, }, }, - ["1304_AddedManaRegeneration"] = { + ["2784_ChanceToGainUnholyMightOnKillAbyss"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 8, + ["id"] = "explicit.stat_3166317791", + ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", }, ["AbyssJewel"] = { - ["min"] = 1.1, - ["max"] = 4, + ["min"] = 2, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1.1, - ["max"] = 4, - }, ["AnyJewel"] = { - ["min"] = 1.1, - ["max"] = 4, + ["min"] = 2, + ["max"] = 5, }, }, - ["1800_AddedColdDamageWithAxes"] = { + ["5610_FasterPoisonDamage"] = { + ["1HSword"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["Claw"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 8, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1782176131", - ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 8, + ["max"] = 25, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 15, }, - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 7, + ["max"] = 12, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + }, + ["8749_PerfectAgony"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3884934810", + ["text"] = "Perfect Agony", }, }, - ["1817_AddedChaosDamageWithClaws"] = { + ["2521_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4191067677", - ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["id"] = "explicit.stat_3503466234", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["Quiver"] = { + ["min"] = 20, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, - }, }, - ["3945_PowerChargeOnBlock"] = { + ["7666_AttackImpaleChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", + ["id"] = "explicit.stat_1455766505", + ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", + }, + ["Gloves"] = { + ["min"] = 2, + ["max"] = 3.5, }, ["sign"] = "", }, - ["3240_ElementalDamagePercentMaven"] = { + ["5758_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_697807915", - ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", - }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 6, + ["max"] = 7, + }, }, - ["1799_AddedFireDamageWithWands"] = { + ["2619_MinionLifeLeech"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_87098247", - ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["id"] = "explicit.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 0.3, + ["max"] = 0.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, - }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 0.3, + ["max"] = 0.5, }, }, - ["1301_IncreasedManaAndCostNew"] = { + ["1376_ChaosResistanceDamageOverTime"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, ["sign"] = "+", }, - ["1183_CriticalStrikeChanceSpellsSupported"] = { - ["specialCaseData"] = { + ["887_BlockPercent"] = { + ["Gloves"] = { + ["min"] = 2, + ["max"] = 5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", - }, - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 82, + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", }, - ["sign"] = "", - }, - ["93_LocalIncreaseSocketedFireGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["Helmet"] = { + ["min"] = 3, + ["max"] = 4, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["sign"] = "", + ["Chest"] = { + ["min"] = 3, + ["max"] = 9, }, - ["sign"] = "+", ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 3, + ["max"] = 4, }, }, - ["2867_PoisonDamage"] = { + ["8522_TrapAndMineThrowSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", }, ["sign"] = "", }, - ["1104_LightningDamageWeaponPrefix"] = { + ["1824_AddedLightningDamageWithBows"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["Bow"] = { ["min"] = 10, - ["max"] = 109, + ["max"] = 27.5, }, - ["Shield"] = { + ["AnyJewel"] = { ["min"] = 10, - ["max"] = 109, + ["max"] = 27.5, }, }, - ["1792_AddedFireDamageWithAxes"] = { + ["1870_PowerChargeOnKillChanceMaven"] = { + ["1HMace"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Staff"] = { + ["min"] = 50, + ["max"] = 50, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2461965653", - ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["Claw"] = { + ["min"] = 50, + ["max"] = 50, }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Wand"] = { + ["min"] = 50, + ["max"] = 50, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 50, + ["max"] = 50, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["specialCaseData"] = { }, }, - ["7923_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["1614_SupportedBySpellCascadeArea"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1539825365", - ["text"] = "# to Armour during Soul Gain Prevention", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 3201, - ["max"] = 4000, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 3201, - ["max"] = 4000, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 15, }, }, - ["1784_AddedPhysicalDamageWithClaws"] = { + ["109_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3303015", - ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["id"] = "explicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, }, + }, + ["744_FlaskShockImmunityDuringEffect"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Flask"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1183_SpellCriticalStrikeChance"] = { + ["1827_AddedLightningDamageWithMaces"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 27.5, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", }, - ["2HWeapon"] = { + ["AbyssJewel"] = { ["min"] = 10, - ["max"] = 109, + ["max"] = 27.5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "", ["1HWeapon"] = { ["min"] = 10, - ["max"] = 109, + ["max"] = 27.5, }, - ["Shield"] = { + ["1HMace"] = { ["min"] = 10, - ["max"] = 109, + ["max"] = 27.5, }, }, - ["5140_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["1287_ArmourEvasionForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["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, + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1306_IncreasedManaRegenForJewel"] = { + ["2875_AbyssMinionPoisonOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", }, ["AbyssJewel"] = { - ["min"] = 12, + ["min"] = 10, ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, ["AnyJewel"] = { - ["min"] = 12, + ["min"] = 10, ["max"] = 15, }, }, - ["3986_ElementalDamageTakenWhileStationary"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3859593448", - ["text"] = "#% reduced Elemental Damage Taken while stationary", - }, - ["sign"] = "", - }, - ["2602_MinionAttackAndCastSpeedOnWeapon"] = { + ["1370_MaximumLightningResistance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["sign"] = "+", + ["Helmet"] = { + ["min"] = 1, + ["max"] = 3, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 38, + ["Shield"] = { + ["min"] = 1, + ["max"] = 3, }, }, - ["4903_ChanceWhenHitForArmourToBeDoubled"] = { + ["1288_LocalEvasionRatingIncreasePercent"] = { ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 30, + ["min"] = 15, + ["max"] = 100, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", }, - ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["Shield"] = { + ["min"] = 101, + ["max"] = 110, }, ["Helmet"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 20, + ["min"] = 15, + ["max"] = 100, }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 20, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, + ["sign"] = "", ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["min"] = 15, + ["max"] = 110, }, - }, - ["2931_MovementVelocitySpeed"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 15, + ["max"] = 100, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + }, + ["8728_ZealotryAuraEffect"] = { + ["1HMace"] = { + ["min"] = 28, + ["max"] = 40, }, ["sign"] = "", - }, - ["2198_LightRadiusAndAccuracyPercent"] = { + ["Dagger"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 48, + ["max"] = 60, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 5, - ["max"] = 15, + ["2HWeapon"] = { + ["min"] = 48, + ["max"] = 60, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 15, + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 28, + ["max"] = 40, }, }, - ["2769_ChanceToGainUnholyMightOnKillAbyss"] = { + ["5552_FlatEnergyShieldRegeneration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3166317791", - ["text"] = "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + ["id"] = "explicit.stat_2561836520", + ["text"] = "Regenerate # Energy Shield per second", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 5, + ["min"] = 9, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 5, + ["min"] = 9, + ["max"] = 20, }, }, - ["1850_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { + ["7667_AddedPhysicalDamageVsPoisonedEnemies"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4193088553", - ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["id"] = "explicit.stat_424026624", + ["text"] = "Adds # to # Physical Damage against Poisoned Enemies", + }, + ["Gloves"] = { + ["min"] = 9.5, + ["max"] = 14.5, + }, + ["sign"] = "", + }, + ["2893_NoExtraDamageFromBleedMoving"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + }, + }, + ["907_BlockDualWieldingForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 1, + ["max"] = 1, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 1, + ["max"] = 1, }, }, - ["2649_GlobalChanceToBlindOnHit"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 15, - }, + ["4421_EnchantmentElusive"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "explicit.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", }, - ["Quiver"] = { + ["AbyssJewel"] = { ["min"] = 8, - ["max"] = 15, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["6781_PoisonDamageAndLocalChanceOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["3032_WarcryCooldownSpeed"] = { + ["2HMace"] = { + ["min"] = 35, + ["max"] = 45, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 45, }, - }, - ["1710_SupportedByLesserMultipleProjectilesDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 35, + ["max"] = 45, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + }, + ["1HAxe"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["2HWeapon"] = { + ["min"] = 17, + ["max"] = 45, }, ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 30, + ["min"] = 17, + ["max"] = 25, + }, + ["Shield"] = { + ["min"] = 35, + ["max"] = 45, }, - ["sign"] = "", }, - ["3451_MinionAddedLightningDamage"] = { + ["1848_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2930653471", - ["text"] = "Minions deal # to # additional Lightning Damage", + ["id"] = "explicit.stat_2921084940", + ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", }, ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 41.5, + ["min"] = 2, + ["max"] = 20.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 41.5, + ["min"] = 2, + ["max"] = 20.5, }, }, - ["4392_AttacksTauntOnHitChance"] = { + ["1316_AbyssJewelMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["min"] = 21, + ["max"] = 40, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 21, + ["max"] = 40, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["min"] = 21, + ["max"] = 40, }, }, - ["2602_MinionAttackAndCastSpeed"] = { + ["1148_SpellAddedChaosSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", }, ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 4.5, + ["max"] = 19, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 4.5, + ["max"] = 19, }, }, - ["1747_AreaDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["1203_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["2HMace"] = { + ["min"] = 22, + ["max"] = 29, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HAxe"] = { + ["min"] = 22, + ["max"] = 29, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["Staff"] = { + ["min"] = 22, + ["max"] = 29, }, - }, - ["1517_MovementVelocitySpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 22, + ["max"] = 29, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["sign"] = "", - }, - ["3891_AvoidBleedAndPoison"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 22, + ["max"] = 29, }, + ["Bow"] = { + ["min"] = 22, + ["max"] = 29, + }, + }, + ["1841_SpellAddedFireDamageWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["id"] = "explicit.stat_44182350", + ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + }, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 41, - ["max"] = 70, + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, }, - ["4909_GainFortifyOnStunChance"] = { + ["3464_MinionAddedColdDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["id"] = "explicit.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + }, + ["AbyssJewel"] = { + ["min"] = 5.5, + ["max"] = 43, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 5.5, + ["max"] = 43, }, }, - ["1184_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["3456_LocalFireDamageTwoHandAndPen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", }, ["sign"] = "", }, - ["1280_EnergyShield"] = { - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, - }, - ["specialCaseData"] = { + ["1350_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 3, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skill Gems", }, - ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["specialCaseData"] = { }, - ["Ring"] = { + ["2HWeapon"] = { ["min"] = 1, - ["max"] = 47, + ["max"] = 3, }, - ["Amulet"] = { + ["1HWeapon"] = { ["min"] = 1, - ["max"] = 51, + ["max"] = 1, }, - ["Belt"] = { + ["Shield"] = { ["min"] = 1, - ["max"] = 51, + ["max"] = 1, }, }, - ["1710_ProjectileDamageSupported"] = { - ["specialCaseData"] = { - }, + ["1845_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_2398198236", + ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, }, - ["sign"] = "", - }, - ["2187_BleedOnHitAndDamage"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, + }, + }, + ["1834_SpellAddedChaosDamageWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "explicit.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 20.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 15, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 20.5, }, }, - ["7341_MapMonsterPacksVaalMapWorlds"] = { + ["5882_HatredReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2609768284", - ["text"] = "Area is inhabited by the Vaal", + ["id"] = "explicit.stat_2156140483", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + }, + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, + ["sign"] = "", }, - ["296_TrapDamageMineSupported"] = { + ["159_AreaOfEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", }, - ["Gloves"] = { + ["Helmet"] = { ["min"] = 16, ["max"] = 25, }, ["sign"] = "", }, - ["1131_SpellAddedColdDamagePenetrationHybrid"] = { + ["1675_LifeDegenerationAndPercentGracePeriod"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of Life per second", }, + ["sign"] = "", + }, + ["5073_ConsecratedGroundStationaryMaven"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 11.5, - ["max"] = 47, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", }, - ["1HWeapon"] = { - ["min"] = 7.5, - ["max"] = 31.5, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1785_AddedPhysicalDamageWithDaggers"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1298238534", - ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["4391_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + ["Wand"] = { + ["min"] = 12, + ["max"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Bow"] = { + ["min"] = 27, + ["max"] = 30, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["Staff"] = { + ["min"] = 27, + ["max"] = 30, + }, + ["1HMace"] = { + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Dagger"] = { + ["min"] = 12, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Claw"] = { + ["min"] = 12, + ["max"] = 15, }, - }, - ["8477_WarcryTauntedEnemiesTakeIncreasedDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 27, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3610197448", - ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", }, - ["sign"] = "", - }, - ["1809_AddedLightningDamageWithBows"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["2HAxe"] = { + ["min"] = 27, + ["max"] = 30, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["2HMace"] = { + ["min"] = 27, + ["max"] = 30, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 12, + ["max"] = 15, }, - ["sign"] = "", ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["min"] = 27, + ["max"] = 30, }, - }, - ["1344_MaximumFireResist"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 3, - }, }, - ["1093_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["1213_TrapCritChanceForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", }, ["sign"] = "", }, - ["1798_AddedFireDamageWithSwords"] = { + ["1101_AddedFireAndLightningDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_601249293", - ["text"] = "# to # Added Fire Damage with Sword Attacks", - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["Ring"] = { + ["min"] = 17, + ["max"] = 19, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 25, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, }, }, - ["1188_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["7946_GlobalPhysicalGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_619213329", + ["text"] = "# to Level of all Physical Skill Gems", }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["953_SpellDamageAndManaRegenerationRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, + ["3308_PowerFrenzyOrEnduranceChargeOnKill"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, - }, - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 79, - }, - ["sign"] = "", - }, - ["1208_ElementalCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_439950087", - ["text"] = "#% increased Critical Strike Chance with Elemental Skills", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["id"] = "explicit.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 3, + ["max"] = 10, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, - }, }, - ["8786_Solipsism"] = { + ["1298_EvasionEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_112130960", - ["text"] = "Solipsism", - }, - }, - ["1096_AddedColdSuffix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 19.5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 19.5, - }, }, - ["6308_GlobalLightningGemLevel"] = { + ["8800_IronWill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1147690586", - ["text"] = "# to Level of all Lightning Skill Gems", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", }, - ["sign"] = "+", }, - ["1301_BaseManaAndLifeDegenGracePeriod"] = { + ["1377_MaximumResistances"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", }, ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 2, + }, }, - ["2735_MapMonsterPacksVaalMapWorlds"] = { + ["1312_LifeDegenerationAndPercentGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_728267040", - ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", }, ["sign"] = "", }, - ["5665_SkillsCostNoManaWhileFocusedCDR"] = { - ["specialCaseData"] = { - }, + ["1843_SpellAddedLightningDamageWhileDualWielding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 28.5, + }, }, - ["5537_FlatEnergyShieldRegeneration"] = { + ["362_PoisonDamageWeaponSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", - }, - ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 20, + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 9, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 18, ["max"] = 20, }, }, - ["169_WeaponSpellDamageEfficacy"] = { + ["3457_LocalColdDamageAndPen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3924539382", - ["text"] = "Socketed Gems are Supported by Level # Efficacy", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", }, ["sign"] = "", }, - ["4407_EnchantmentElusive"] = { + ["102_DelveIntelligenceGemLevel"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2662268382", - ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["id"] = "explicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["347_PoisonDamageSupported"] = { + ["1329_ItemFoundQuantityIncrease"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 10, }, ["sign"] = "", }, - ["1301_AbyssJewelMana"] = { + ["1835_SpellAddedChaosDamageWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", }, ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["min"] = 2, + ["max"] = 20.5, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 40, - }, + ["sign"] = "", ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 40, + ["min"] = 2, + ["max"] = 20.5, }, }, - ["1133_SpellAddedChaosSuffix"] = { + ["1634_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, - ["AbyssJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 17, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, }, }, - ["1782_AddedPhysicalDamageWithAxes"] = { + ["2592_AllLightningDamageCanFreeze"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_311030839", - ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["id"] = "explicit.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", }, - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + }, + ["108_LocalIncreaseSocketedFireGemLevel"] = { + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, }, - ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, }, - ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["124_SocketedGemQuality"] = { + ["1227_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3828613551", - ["text"] = "#% to Quality of Socketed Gems", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["2HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 10, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["Claw"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["1826_SpellAddedFireDamageWhileHoldingAShield"] = { + ["1333_ItemFoundRarityIncrease"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 14, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_44182350", - ["text"] = "# to # Added Spell Fire Damage while holding a Shield", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Ring"] = { + ["min"] = 6, + ["max"] = 26, + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 26, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["Amulet"] = { + ["min"] = 6, + ["max"] = 26, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 14, }, }, - ["1352_ColdResistanceAilments"] = { + ["108_LocalIncreaseSocketedFireGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", }, ["sign"] = "+", + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, + }, }, - ["1112_IncreasedChaosAndPhysicalDamage"] = { + ["141_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_1325783255", + ["text"] = "#% to Quality of Socketed Active Skill Gems", }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 20, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1132_SpellAddedLightningDamage"] = { + ["388_SocketedGemsHaveMoreAttackAndCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - }, - ["1HWeapon"] = { - ["min"] = 2.5, - ["max"] = 96.5, + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", }, ["sign"] = "", }, - ["1811_AddedLightningDamageWithDaggers"] = { + ["7908_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3479683016", - ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["id"] = "explicit.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["min"] = 2, + ["max"] = 4, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["min"] = 2, + ["max"] = 4, }, }, - ["3464_RegenerateLifeOver1Second"] = { - ["specialCaseData"] = { - }, + ["3463_MinionAddedChaosDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1242155304", - ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["id"] = "explicit.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 32.5, }, - ["sign"] = "", - }, - ["2391_DamageRemovedFromManaBeforeLife"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, - }, ["sign"] = "", - }, - ["1674_ConvertPhysicalToCold"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 32.5, }, + }, + ["1839_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "explicit.stat_2464689927", + ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 30, - }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, }, - ["1148_ClawAttackSpeedForJewel"] = { + ["4650_OnHitBlindChilledEnemies"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", }, - ["BaseJewel"] = { + }, + ["1634_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["Gloves"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 17, }, - ["AbyssJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + }, + ["Helmet"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 17, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["Chest"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 17, }, - ["AnyJewel"] = { + ["Boots"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 17, }, }, - ["1171_IncreasedCastSpeedForJewel"] = { + ["1853_EnduranceChargeDurationForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + }, + ["sign"] = "", + }, + ["2508_FireColdResistanceForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 10, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 10, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, - }, - }, - ["6715_NearbyEnemyChaosDamageResistance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1902595112", - ["text"] = "Nearby Enemies have #% to Chaos Resistance", - }, - ["Helmet"] = { - ["min"] = 9, + ["min"] = 10, ["max"] = 12, }, - ["sign"] = "-", }, - ["1787_AddedPhysicalDamageWithStaves"] = { + ["1380_ChillEffectivenessOnSelf"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_69898010", - ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", }, ["AbyssJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 30, + ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 9, + ["BaseJewel"] = { + ["min"] = 30, + ["max"] = 35, }, ["AnyJewel"] = { - ["min"] = 2.5, - ["max"] = 9, + ["min"] = 30, + ["max"] = 35, }, }, - ["1803_AddedColdDamageWithDaggers"] = { + ["1530_IncreasedProjectileSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1263342750", - ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["min"] = 6, + ["max"] = 8, }, }, - ["1816_AddedChaosDamageWithBows"] = { + ["897_StaffSpellBlockForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["id"] = "explicit.stat_2120297997", + ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 18.5, + ["min"] = 1, + ["max"] = 1, }, }, - ["8765_KeystoneGhostReaver"] = { + ["213_SupportedByItemRarityUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4272248216", - ["text"] = "Ghost Reaver", - }, - }, - ["1570_AvoidStun"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 50, - }, - ["BaseJewel"] = { - ["min"] = 21, - ["max"] = 30, - }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 50, + ["id"] = "explicit.stat_3587013273", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 10, + ["max"] = 20, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 21, - ["max"] = 30, - }, + }, + ["889_ShieldSpellBlockForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "explicit.stat_938645499", + ["text"] = "#% Chance to Block Spell Damage while holding a Shield", }, ["AbyssJewel"] = { - ["min"] = 21, - ["max"] = 30, - }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 50, + ["min"] = 1, + ["max"] = 1, }, - }, - ["1511_AdditionalProjectiles"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { + ["AnyJewel"] = { ["min"] = 1, ["max"] = 1, }, }, - ["5306_MalevolenceAuraEffect"] = { + ["2244_FrostbiteOnHitLevel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", + ["id"] = "explicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, + }, ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["3448_MinionAddedChaosDamage"] = { + ["2164_PhysicalDamageTakenAsChaosUberMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2889601781", - ["text"] = "Minions deal # to # additional Chaos Damage", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 16, + ["max"] = 18, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, - }, }, - ["2683_ChanceToGainOnslaughtOnKillMaven"] = { + ["1890_MaximumMinionCount"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 10, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["1759_AttackAndCastSpeed"] = { + ["1705_MinionDamageOnWeaponAndMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 8, + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 8, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 39, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 39, }, }, - ["1821_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1HMace"] = { + ["min"] = 25, + ["max"] = 69, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1743759111", - ["text"] = "# to # Added Spell Chaos Damage while wielding a Two Handed Weapon", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["2HMace"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["Staff"] = { + ["min"] = 25, + ["max"] = 69, }, }, - ["4332_ChanceToGainOnslaughtOnKillMaven"] = { + ["8560_DesecratedGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_879520319", - ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", - }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_4004298002", + ["text"] = "Unaffected by Desecrated Ground", }, - ["sign"] = "", ["Boots"] = { - ["min"] = 3, - ["max"] = 10, + ["min"] = 1, + ["max"] = 1, }, }, - ["1824_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { + ["4927_GainEnduranceChargeOnHittingBleedingEnemy"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2464689927", - ["text"] = "# to # Added Spell Cold Damage while wielding a Two Handed Weapon", + ["id"] = "explicit.stat_1536266147", + ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["1235_ReducedExtraDamageFromCrits"] = { + ["2698_MovementVelocityAndOnslaughtOnKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, ["sign"] = "", - ["Shield"] = { - ["min"] = 21, - ["max"] = 60, + ["Boots"] = { + ["min"] = 13, + ["max"] = 16, }, }, - ["3450_MinionAddedFireDamage"] = { + ["1579_DexterityAndAvoidFreeze"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3351784991", - ["text"] = "Minions deal # to # additional Fire Damage", - }, - ["AbyssJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + ["Chest"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["Shield"] = { + ["min"] = 21, + ["max"] = 25, }, }, - ["1153_WandAttackSpeedForJewel"] = { + ["1500_MinionLife"] = { + ["Chest"] = { + ["min"] = 20, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Belt"] = { + ["min"] = 20, + ["max"] = 30, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Helmet"] = { + ["min"] = 21, + ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["Ring"] = { + ["min"] = 13, + ["max"] = 32, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Shield"] = { + ["min"] = 13, + ["max"] = 40, }, }, - ["1283_LifeAndEnergyShieldForJewel"] = { + ["1292_LocalEvasionAndEnergyShieldAndStunRecovery"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", }, ["sign"] = "", }, - ["1812_AddedLightningDamageWithMaces"] = { + ["1614_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2096159630", - ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 27.5, + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 8, + ["max"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 27.5, - }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 27.5, - }, }, - ["155_SupportedByCastOnMeleeKillWeapon"] = { + ["8727_SpellsAdditionalUnleashSealMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3312593243", - ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["id"] = "explicit.stat_1264919148", + ["text"] = "Skills supported by Unleash have # to maximum number of Seals", }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1838_EnduranceChargeDurationForJewel"] = { + ["2580_AllColdDamageCanIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["id"] = "explicit.stat_3573591118", + ["text"] = "Your Cold Damage can Ignite", }, - ["sign"] = "", }, - ["7677_MinionAccuracyRatingForJewel"] = { + ["5280_LifeRecoupForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", }, ["AbyssJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["min"] = 4, + ["max"] = 6, }, ["AnyJewel"] = { - ["min"] = 22, - ["max"] = 26, + ["min"] = 4, + ["max"] = 6, }, }, - ["1346_FireResistanceLeech"] = { + ["1593_BurnDurationForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1293_LifeAndEnergyShieldForJewel"] = { + ["1119_IncreasedFireAndLightningDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + }, + ["Ring"] = { + ["min"] = 20, + ["max"] = 22, }, ["sign"] = "", }, - ["5715_GainArcaneSurgeOnCrit"] = { + ["5646_GlobalFireGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["id"] = "explicit.stat_599749213", + ["text"] = "# to Level of all Fire Skill Gems", }, - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 30, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1419_ManaLeechPermyriadForJewel"] = { + ["311_MineDamageTrapSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", }, - ["AbyssJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, }, + ["sign"] = "", + }, + ["1298_LifeAndEnergyShieldForJewel"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, - ["AnyJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["sign"] = "", + }, + ["3262_AuraEffect"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Shield"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["1527_MinimumFrenzyChargesAndOnKillLose"] = { + ["898_BlockingBlocksSpellsUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", }, ["sign"] = "+", }, - ["1979_ReducedPhysicalDamageTaken"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 8, + ["976_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 5, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 8, + ["Dagger"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["Claw"] = { + ["min"] = 25, + ["max"] = 69, + }, + }, + ["3970_ElusiveOnCriticalStrike"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 8, + ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 4, + }, + ["2900_DamagePerEnduranceCharge"] = { + ["2HMace"] = { + ["min"] = 7, ["max"] = 8, }, - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, - }, - ["1136_IncreasedAttackSpeed"] = { - ["Gloves"] = { + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 8, + }, + ["Claw"] = { ["min"] = 5, - ["max"] = 16, + ["max"] = 6, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", }, - ["Ring"] = { + ["1HAxe"] = { ["min"] = 5, - ["max"] = 7, + ["max"] = 6, }, - ["Quiver"] = { + ["Amulet"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["1HSword"] = { ["min"] = 5, - ["max"] = 16, + ["max"] = 6, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 6, + }, + ["Staff"] = { + ["min"] = 7, + ["max"] = 17, + }, + ["2HSword"] = { + ["min"] = 7, + ["max"] = 8, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { + ["Bow"] = { ["min"] = 7, - ["max"] = 13, + ["max"] = 8, }, - ["Shield"] = { + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 17, + }, + ["1HWeapon"] = { ["min"] = 5, - ["max"] = 16, + ["max"] = 10, + }, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 6, }, }, - ["5228_DamagePerBlockChance"] = { + ["8661_WrathReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3400437584", - ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", + ["id"] = "explicit.stat_3444518809", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, + ["sign"] = "", }, - ["1939_IncreasedManaAndReservation"] = { + ["1948_LifeReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["id"] = "explicit.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", }, ["sign"] = "", }, - ["1066_IncreasedSwordDamageForJewel"] = { + ["1434_ManaLeechPermyriadForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_83050999", - ["text"] = "#% increased Damage with Swords", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["AbyssJewel"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["BaseJewel"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 0.2, + ["max"] = 0.4, }, }, - ["1293_PercentageLifeAndManaForJewel"] = { - ["specialCaseData"] = { - }, + ["1119_TwoHandLightningDamageWeaponPrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - ["sign"] = "", - }, - ["3076_FlaskChargeOnCrit"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1546046884", - ["text"] = "Gain a Flask Charge when you deal a Critical Strike", + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 164, }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 15, + ["max"] = 164, }, }, - ["6223_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { - ["specialCaseData"] = { - }, + ["1292_LocalEvasionAndEnergyShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3324747104", - ["text"] = "#% of Damage Leeched as Life while Focused", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 15, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["sign"] = "", - }, - ["1219_CritMultiplierWithBowForJewel"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 101, + ["max"] = 110, + }, + ["Shield"] = { + ["min"] = 101, + ["max"] = 110, }, + }, + ["1414_LightningDamageLifeLeechPermyriad"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 0.3, + ["max"] = 0.5, + }, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - ["sign"] = "+", }, - ["1198_TrapCritChanceForJewel"] = { + ["4453_FasterBleedDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1192661666", - ["text"] = "#% increased Critical Strike Chance with Traps", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 20, + }, }, - ["1085_SelfFireAndColdDamageTaken"] = { + ["1279_ArmourEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", }, ["sign"] = "", }, - ["1184_AccuracyAndCritsForJewel"] = { + ["1223_ElementalCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", }, ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 10, + ["max"] = 14, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 10, + ["max"] = 14, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 10, + ["max"] = 14, }, }, - ["1759_AttackAndCastSpeedForJewel"] = { + ["1199_CritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 8, + ["max"] = 12, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 8, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 8, + ["max"] = 12, }, }, - ["984_ColdDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, - }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, + ["1375_MaximumChaosResistance"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", - }, - ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, - }, - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 38, + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 3, }, }, - ["1145_OneHandedMeleeAttackSpeedForJewel"] = { + ["1433_EnemyManaLeechPermyriad"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1813451228", - ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, }, - ["1287_EnergyShieldRegenerationPerMinuteMaven"] = { + ["2980_WarcrySpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + ["Amulet"] = { + ["min"] = 21, + ["max"] = 35, }, ["sign"] = "", }, - ["213_SupportedByVolleySpeed"] = { + ["1634_LocalWardAndStunRecoveryPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2696557965", - ["text"] = "Socketed Gems are Supported by Level # Volley", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["sign"] = "", }, - ["3452_MinionAddedPhysicalDamage"] = { + ["1147_SpellAddedLightningDamageTwoHand"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1172029298", - ["text"] = "Minions deal # to # additional Physical Damage", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 32.5, + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { + ["2HWeapon"] = { ["min"] = 3.5, - ["max"] = 32.5, + ["max"] = 145, + }, + ["Staff"] = { + ["min"] = 3.5, + ["max"] = 145, }, }, - ["1807_AddedColdDamageWithWands"] = { + ["6723_NearbyEnemyPhysicalDamageTaken"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2383797932", - ["text"] = "# to # Added Cold Damage with Wand Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["id"] = "explicit.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 9, + ["max"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + }, + ["4913_ChanceToDealDoubleDamageWhileFocused"] = { + ["2HMace"] = { + ["min"] = 36, + ["max"] = 40, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["1672_ConvertPhysicalToFireMaven"] = { - ["Gloves"] = { - ["min"] = 22, - ["max"] = 25, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", }, - ["Quiver"] = { - ["min"] = 22, - ["max"] = 25, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["2HSword"] = { + ["min"] = 36, + ["max"] = 40, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["Bow"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Shield"] = { + ["min"] = 18, + ["max"] = 20, + }, }, - ["1645_MineLayingSpeed"] = { + ["1660_MineLaySpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", ["id"] = "explicit.stat_1896971621", @@ -11983,178 +12822,205 @@ return { ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 16, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, }, }, - ["5239_DamageChilledEnemies"] = { + ["234_WeaponSpellDamagePowerChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 26, - ["max"] = 40, - }, }, - ["1467_EnergyShieldGainPerTargetForJewel"] = { + ["1199_AccuracyAndCritsForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["min"] = 6, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["min"] = 6, + ["max"] = 10, }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["min"] = 6, + ["max"] = 10, }, }, - ["1287_EnergyShieldRechargeRateForJewel"] = { + ["1174_AccuracyAndCritsForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", }, ["AbyssJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, ["AnyJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, }, - ["1840_FrenzyChargeDurationForJewel"] = { - ["specialCaseData"] = { - }, + ["1774_AttackAndCastSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 4, + }, }, - ["307_IncreasedAttackSpeedSupported"] = { + ["8770_HexMaster"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_3849554033", + ["text"] = "Hex Master", }, - ["sign"] = "", }, - ["2669_ArmourPenetration"] = { + ["185_ElementalDamagePrefixElementalFocus"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", - }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 20, + ["id"] = "explicit.stat_1169422227", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["min"] = 16, + ["max"] = 20, }, - ["Belt"] = { - ["min"] = 8, - ["max"] = 15, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["3065_OnslaugtOnKillPercentChance"] = { + ["5841_ChanceToFreezeAddedDamage"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["id"] = "explicit.stat_2233361223", + ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["Ring"] = { + ["min"] = 26, + ["max"] = 37, }, - ["specialCaseData"] = { + ["sign"] = "", + }, + ["976_LocalPhysicalDamagePercentRuthless"] = { + ["2HMace"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HMace"] = { + ["min"] = 101, + ["max"] = 134, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 101, + ["max"] = 134, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["Claw"] = { + ["min"] = 101, + ["max"] = 134, }, - }, - ["1171_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 101, + ["max"] = 134, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HSword"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HAxe"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HAxe"] = { + ["min"] = 101, + ["max"] = 134, }, ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 101, + ["max"] = 134, + }, + ["1HWeapon"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["4409_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { + ["2291_SummonTotemCastSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_720398262", - ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 10, - ["max"] = 12, + ["Amulet"] = { + ["min"] = 36, + ["max"] = 40, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 12, + ["Boots"] = { + ["min"] = 36, + ["max"] = 40, }, }, - ["1144_TwoHandedMeleeAttackSpeedForJewel"] = { + ["1160_OneHandedMeleeAttackSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1917910910", - ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", }, ["specialCaseData"] = { }, @@ -12168,498 +13034,478 @@ return { ["max"] = 6, }, }, - ["1855_PowerChargeDurationForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - }, - ["sign"] = "", - }, - ["1291_IncreasedLife"] = { - ["Shield"] = { - ["min"] = 100, - ["max"] = 109, - }, + ["4453_BleedChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 129, + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 99, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 99, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 99, - }, - }, - ["1005_IncreasedDualWieldlingDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_444174528", - ["text"] = "#% increased Attack Damage while Dual Wielding", + ["min"] = 12, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { ["min"] = 12, - ["max"] = 14, + ["max"] = 16, }, ["AnyJewel"] = { ["min"] = 12, - ["max"] = 14, + ["max"] = 16, }, }, - ["1215_SpellCritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_274716455", - ["text"] = "#% to Critical Strike Multiplier for Spell Damage", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["321_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Claw"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["7600_StrikeSkillsAdditionalTarget"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1661253443", - ["text"] = "Strike Skills target # additional nearby Enemy", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_2985291457", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", }, - ["sign"] = "", - }, - ["1690_MinionDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["1563_AvoidChillForJewel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["sign"] = "", }, - ["1052_IncreasedMaceDamageForJewel"] = { + ["1760_ChanceToShock"] = { ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 20, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces or Sceptres", + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Wand"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 10, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Staff"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["1093_ColdDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["330_LocalIncreasedAttackSpeedMultistrike"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["2704_IncreasedDamagePerCurse"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1818773442", - ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", }, - ["sign"] = "", - }, - ["136_LocalIncreaseSocketedLightningGemLevelMaven"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1065580342", - ["text"] = "#% to Quality of Socketed Lightning Gems", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["specialCaseData"] = { }, }, - ["1283_EvasionEnergyShieldForJewel"] = { + ["6034_FreezeChanceAndDurationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_1302208736", + ["text"] = "Freeze Enemies as though dealing #% more Damage", + }, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 50, }, ["sign"] = "", }, - ["1272_EvasionEnergyShieldForJewel"] = { + ["8566_BurningGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_2635869389", + ["text"] = "Unaffected by Ignite", + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1306_ManaRegeneration"] = { - ["specialCaseData"] = { + ["1147_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 41.5, }, ["sign"] = "", - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["Dagger"] = { + ["min"] = 11, + ["max"] = 41.5, }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 69, + ["Staff"] = { + ["min"] = 16.5, + ["max"] = 62, }, - ["Helmet"] = { - ["min"] = 41, - ["max"] = 70, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 69, + ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 69, + ["min"] = 16.5, + ["max"] = 62, }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 69, + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 41.5, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 69, + ["Wand"] = { + ["min"] = 11, + ["max"] = 41.5, }, }, - ["1207_ColdCritChanceForJewel"] = { + ["1753_ChanceToIgniteForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3337344042", - ["text"] = "#% increased Critical Strike Chance with Cold Skills", - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, }, - ["912_DexterityIntelligenceForJewel"] = { + ["893_DualWieldingSpellBlockForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["id"] = "explicit.stat_138741818", + ["text"] = "#% Chance to Block Spell Damage while Dual Wielding", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 1, + ["max"] = 1, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 1, + ["max"] = 1, }, }, - ["2856_PoisonDurationWeaponSupported"] = { - ["specialCaseData"] = { + ["170_SupportedByCastOnMeleeKillWeapon"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", }, - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 14, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1576_ShockDurationForJewel"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", + ["specialCaseData"] = { }, ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, + }, }, - ["1201_TwoHandCritMultiplierForJewel"] = { + ["1218_MeleeCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_252507949", - ["text"] = "#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["min"] = 10, + ["max"] = 14, }, ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, - }, - }, - ["1158_IncreasedAccuracyForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["min"] = 10, + ["max"] = 14, }, - ["sign"] = "+", }, - ["2636_IncreasedWandDamageForJewel"] = { + ["923_DexterityForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_379328644", - ["text"] = "#% increased Damage with Wands", - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", }, ["AbyssJewel"] = { - ["min"] = 14, + ["min"] = 12, ["max"] = 16, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 12, ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 14, + ["min"] = 12, ["max"] = 16, }, }, - ["1493_TotemLifeForJewel"] = { + ["1372_LightningDamageAvoidanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 20, + ["max"] = 30, + }, + ["Boots"] = { + ["min"] = 20, + ["max"] = 30, + }, + }, + ["1482_EnergyShieldGainPerTargetForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 2, + ["max"] = 3, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 2, + ["max"] = 3, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 2, + ["max"] = 3, }, }, - ["6926_ManaRegeneratedIfYouveHitRecently"] = { + ["927_DexterityAndIntelligence"] = { + ["Gloves"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Quiver"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 31, + ["max"] = 35, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2602865453", - ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", }, - ["2HWeapon"] = { - ["min"] = 0.8, - ["max"] = 0.8, + ["Boots"] = { + ["min"] = 31, + ["max"] = 35, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 31, + ["max"] = 35, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 0.4, - ["max"] = 0.4, + ["Ring"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Chest"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Amulet"] = { + ["min"] = 31, + ["max"] = 35, }, ["Shield"] = { - ["min"] = 0.4, - ["max"] = 0.4, + ["min"] = 31, + ["max"] = 35, }, }, - ["1302_PercentageLifeAndManaForJewel"] = { + ["365_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", }, ["sign"] = "", }, - ["8792_VersatileCombatant"] = { + ["1672_ChaosDamageAsPortionOfColdDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_593845252", - ["text"] = "Versatile Combatant", + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", }, + ["sign"] = "", }, - ["1095_AddedColdAndLightningDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["1347_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 1, + ["max"] = 3, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skill Gems", }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["923_TotemDamageSpellSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 3, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["2527_IncreasedDefensesForJewel"] = { - ["specialCaseData"] = { + ["1061_IncreasedDaggerDamageForJewel"] = { + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", }, - ["sign"] = "", - }, - ["1084_FireDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, ["AbyssJewel"] = { ["min"] = 14, @@ -12668,7 +13514,7 @@ return { ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { + ["Dagger"] = { ["min"] = 14, ["max"] = 16, }, @@ -12677,1794 +13523,1753 @@ return { ["max"] = 16, }, }, - ["1820_SpellAddedChaosDamageWhileHoldingAShield"] = { + ["1316_IncreasedManaAndCostNew"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1181129483", - ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["sign"] = "+", + }, + ["1154_AttackSpeedKilledRecently"] = { + ["2HMace"] = { + ["min"] = 17, + ["max"] = 21, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 21, }, - }, - ["8391_GlobalStrengthGemLevel"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["2HSword"] = { + ["min"] = 17, + ["max"] = 21, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2339012908", - ["text"] = "# to Level of all Strength Skill Gems", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 21, + }, + ["Bow"] = { + ["min"] = 8, + ["max"] = 12, }, - ["sign"] = "+", }, - ["1159_IncreasedAccuracyPercentForJewel"] = { + ["1302_EnergyShieldRechargeRateForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 14, + ["min"] = 6, + ["max"] = 8, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 14, - }, - }, - ["4237_AreaOfEffectIfStunnedEnemyRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 25, - ["max"] = 35, - }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45, + ["min"] = 6, + ["max"] = 8, }, }, - ["1470_MaximumEnergyShieldOnKillPercentMaven"] = { + ["1316_LifeAndManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 6, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["3440_LocalAttackReduceEnemyElementalResistance"] = { + ["1415_EnemyLightningDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, }, - ["2543_FishingRarity"] = { + ["1855_FrenzyChargeDurationForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", }, ["sign"] = "", }, - ["2606_MinionElementalResistancesForJewel"] = { + ["1351_GlobalIncreaseMinionSpellSkillGemLevel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skill Gems", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 15, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 11, - ["max"] = 15, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 15, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1711_ProjectileAttackDamage"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 38, - }, + ["8241_ManaCostTotalChannelled"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have # to Total Mana Cost", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "-", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 4, + }, ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["min"] = 4, + ["max"] = 4, }, }, - ["1171_IncreasedCastSpeedFishing"] = { + ["1870_PowerChargeDurationForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", }, ["sign"] = "", }, - ["1129_SpellAddedPhysicalDamage"] = { + ["1319_IncreasedManaAndRegen"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 56, - ["max"] = 97.5, + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 60, + ["Amulet"] = { + ["min"] = 5.3, + ["max"] = 5.3, }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 61, + ["Ring"] = { + ["min"] = 5.3, + ["max"] = 5.3, }, }, - ["4211_AngerReservationEfficiency"] = { + ["1122_LightningDamagePhysConvertedToLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2549369799", - ["text"] = "Anger has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", }, ["sign"] = "", }, - ["1617_AvoidInterruptionWhileCasting"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 60, - }, + ["1020_IncreasedDualWieldlingDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1916706958", - ["text"] = "#% chance to Avoid interruption from Stuns while Casting", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "explicit.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 14, + }, ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 12, + ["max"] = 14, }, }, - ["1369_LifeLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, + ["1725_SupportedByLesserMultipleProjectilesDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 1.2, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 30, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Wand"] = { + ["min"] = 15, + ["max"] = 30, }, }, - ["7565_FortifyEffect"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, - }, + ["1248_ElementalCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_335507772", - ["text"] = "# to maximum Fortification", + ["id"] = "explicit.stat_1569407745", + ["text"] = "#% to Critical Strike Multiplier with Elemental Skills", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 5, + ["AbyssJewel"] = { + ["min"] = 12, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Helmet"] = { - ["min"] = 3, - ["max"] = 5, + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 15, }, }, - ["1272_ArmourEvasionForJewel"] = { - ["specialCaseData"] = { - }, + ["1188_CastSpeedWithAShieldForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", }, - ["sign"] = "", - }, - ["1264_ArmourEvasionForJewel"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1568_MovementVelocitySpellDodge"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "", }, - ["1745_ShockChanceAndEffect"] = { + ["989_GlobalDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_693959086", + ["text"] = "#% to Damage over Time Multiplier with Attack Skills", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["sign"] = "+", + ["Quiver"] = { + ["min"] = 7, + ["max"] = 26, }, - ["sign"] = "", }, - ["2673_ColdResistancePenetration"] = { - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, - }, + ["1367_ColdResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, - ["sign"] = "", ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 12, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 12, ["max"] = 15, }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, - }, ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 12, + ["max"] = 15, }, }, - ["1151_BowAttackSpeedForJewel"] = { + ["1299_EnergyShieldDelay"] = { + ["Gloves"] = { + ["min"] = 27, + ["max"] = 66, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Helmet"] = { + ["min"] = 27, + ["max"] = 66, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Chest"] = { + ["min"] = 27, + ["max"] = 66, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Boots"] = { + ["min"] = 27, + ["max"] = 66, }, }, - ["1283_GlobalEnergyShieldPercent"] = { + ["1756_FreezeChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 22, + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 15, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["1318_ItemRarityForJewel"] = { + ["1592_FreezeChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", }, ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 12, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 12, + ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 12, + ["max"] = 16, }, }, - ["4377_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + ["2353_EnergyShieldAndRegen"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_314741699", - ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["2HWeapon"] = { - ["min"] = 27, - ["max"] = 30, - }, }, - ["2878_NoExtraBleedDamageWhileMoving"] = { - ["specialCaseData"] = { - }, + ["1705_MinionDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - }, - ["5791_GainRandomChargeOnBlock"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2199099676", - ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["326_AdditionalMinesPlacedSupported"] = { + ["1710_ElementalDamagePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", }, ["Helmet"] = { - ["min"] = 25, - ["max"] = 25, + ["min"] = 19, + ["max"] = 22, }, ["sign"] = "", }, - ["1146_AxeAttackSpeedForJewel"] = { + ["2510_ColdLightningResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 10, + ["max"] = 12, }, }, - ["5705_GainAccuracyEqualToStrengthMaven"] = { - ["specialCaseData"] = { - }, + ["4918_AdditionalChanceToEvade"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", + ["id"] = "explicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", }, - ["Helmet"] = { + ["Ring"] = { ["min"] = 1, - ["max"] = 1, - }, - }, - ["8747_AncestralBond"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2648570028", - ["text"] = "Ancestral Bond", + ["max"] = 2, }, - }, - ["1225_MeleeCritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4237442815", - ["text"] = "#% to Melee Critical Strike Multiplier", + ["Quiver"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 2, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, + ["Belt"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["2527_AllDefences"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["1067_IncreasedMaceDamageForJewel"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["2HMace"] = { + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["891_SpellBlockPercentage"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 3, - ["max"] = 4, + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 6, - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, - }, - ["Shield"] = { - ["min"] = 4, - ["max"] = 15, - }, - }, - ["520_CurseOnHitWarlordsMark"] = { - ["specialCaseData"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2021420128", - ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "", - }, - ["1710_ProjectileDamageAndProjectileSpeed"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 20, + ["1HMace"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "", }, - ["1184_CritChanceForJewel"] = { + ["1108_ColdDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 14, + ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 14, + ["max"] = 16, }, }, - ["1577_FreezeChanceAndDuration"] = { + ["1940_CurseCastSpeedForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 15, + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", }, ["sign"] = "", }, - ["963_MeleeDamageForJewel"] = { + ["926_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HSword"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["Wand"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HMace"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["Staff"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["1HMace"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["Claw"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 28, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 25, + ["max"] = 28, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 28, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["1HAxe"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["specialCaseData"] = { }, }, - ["2605_MinionLifeRegeneration"] = { + ["8032_PurityOfIceReservationEfficiency"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - }, - ["AbyssJewel"] = { - ["min"] = 0.4, - ["max"] = 0.8, + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 50, + ["max"] = 60, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 0.4, - ["max"] = 0.8, - }, }, - ["1582_StunDurationIncreasePercent"] = { + ["900_BlockStaffForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", }, ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 35, + ["min"] = 1, + ["max"] = 1, }, - ["Quiver"] = { - ["min"] = 11, - ["max"] = 35, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 35, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 35, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["960_PhysicalDamageForJewel"] = { + ["1222_ColdCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", }, ["AbyssJewel"] = { ["min"] = 14, - ["max"] = 16, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { ["min"] = 14, - ["max"] = 16, + ["max"] = 18, }, ["AnyJewel"] = { ["min"] = 14, - ["max"] = 16, + ["max"] = 18, }, }, - ["5410_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { - ["Gloves"] = { - ["min"] = 27, - ["max"] = 30, + ["6784_LocalChanceToPoisonOnHit"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2379781920", - ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", - }, - ["Quiver"] = { - ["min"] = 27, - ["max"] = 30, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", }, ["sign"] = "", }, - ["4104_GainArmourIfBlockedRecently"] = { + ["7716_MinionMaxElementalResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4091848539", - ["text"] = "# Armour if you've Blocked Recently", + ["id"] = "explicit.stat_10224385", + ["text"] = "Minions have #% to all maximum Elemental Resistances", }, ["sign"] = "+", ["Shield"] = { - ["min"] = 500, - ["max"] = 800, - }, - }, - ["7815_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2063695047", - ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["min"] = 3, + ["max"] = 8, }, - ["sign"] = "", }, - ["1576_ShockChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", + ["207_CriticalStrikeChanceSupported"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["1695_ElementalDamagePercent"] = { - ["Ring"] = { - ["min"] = 25, - ["max"] = 30, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "explicit.stat_2259700079", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", }, - ["2HWeapon"] = { - ["min"] = 37, - ["max"] = 94, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 12, - ["max"] = 22, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 19, - ["max"] = 49, + ["min"] = 18, + ["max"] = 20, }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 30, + ["specialCaseData"] = { }, }, - ["3024_IncreasedTwoHandedMeleeDamageForJewel"] = { + ["8035_PurityOfLightningReservationEfficiency"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1836374041", - ["text"] = "#% increased Damage with Two Handed Weapons", + ["id"] = "explicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 50, + ["max"] = 60, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, }, - ["2493_FireColdResistanceForJewel"] = { + ["2542_AllDefences"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 4, + ["max"] = 6, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 4, + ["max"] = 6, }, }, - ["1451_MaximumLifeLeechRate"] = { - ["Gloves"] = { - ["min"] = 10, - ["max"] = 20, + ["1719_MaximumSpellBlockChance"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 15, - ["max"] = 25, + ["min"] = 2, + ["max"] = 2, }, + ["sign"] = "+", }, - ["1346_FireResistanceForJewel"] = { + ["1173_IncreasedAccuracyForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 15, - }, }, - ["1396_EnemyColdDamageLifeLeechPermyriad"] = { + ["1298_EnergyShieldAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, ["sign"] = "", }, - ["8567_ShockedGroundEffectEffectivenessMaven"] = { + ["1298_EnergyShieldAndManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1473289174", - ["text"] = "Unaffected by Shock", - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1823_SpellAddedColdDamageWhileHoldingAShield"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2671663397", - ["text"] = "# to # Added Spell Cold Damage while holding a Shield", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, - }, }, - ["5322_GlobalDexterityGemLevel"] = { + ["1317_PercentageLifeAndManaForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_146924886", - ["text"] = "# to Level of all Dexterity Skill Gems", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1579_IncreasedAilmentDuration"] = { - ["specialCaseData"] = { + ["976_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["2HMace"] = { + ["min"] = 101, + ["max"] = 134, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", + ["1HSword"] = { + ["min"] = 101, + ["max"] = 134, }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 15, + ["1HMace"] = { + ["min"] = 101, + ["max"] = 134, }, ["sign"] = "", - }, - ["953_WeaponSpellDamagePowerChargeOnCrit"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 101, + ["max"] = 134, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["Claw"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HSword"] = { + ["min"] = 101, + ["max"] = 134, }, - ["sign"] = "", - }, - ["2885_DamagePerEnduranceCharge"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Wand"] = { + ["min"] = 101, + ["max"] = 134, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 101, + ["max"] = 134, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["1HAxe"] = { + ["min"] = 101, + ["max"] = 134, }, ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 17, + ["min"] = 101, + ["max"] = 134, + }, + ["1HWeapon"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["specialCaseData"] = { }, }, - ["6281_ShockEffectSupported"] = { + ["1801_AddedPhysicalDamageWithMaces"] = { + ["2HMace"] = { + ["min"] = 2.5, + ["max"] = 9, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 20, - }, - ["sign"] = "", - }, - ["1931_AuraRadiusForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_895264825", - ["text"] = "#% increased Area of Effect of Aura Skills", - }, ["sign"] = "", - }, - ["7943_GlobalPhysicalGemLevel"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_619213329", - ["text"] = "# to Level of all Physical Skill Gems", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", }, - ["sign"] = "+", - }, - ["1363_AllResistancesMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all maximum Elemental Resistances", + ["AbyssJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["min"] = 2.5, + ["max"] = 9, }, }, - ["6142_ImpaleEffect"] = { + ["1163_ClawAttackSpeedForJewel"] = { + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_298173317", - ["text"] = "#% increased Impale Effect", + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", }, - ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 38, + ["Claw"] = { + ["min"] = 6, + ["max"] = 8, }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 25, + ["min"] = 6, + ["max"] = 8, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 6, + ["min"] = 6, + ["max"] = 8, }, }, - ["1567_AvoidShockForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["139_SocketedGemQuality"] = { + ["2HMace"] = { + ["min"] = 9, + ["max"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 9, + ["max"] = 10, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Claw"] = { + ["min"] = 9, + ["max"] = 10, }, - }, - ["4919_ChanceToGainOnslaughtOnFlaskUse"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1324450398", - ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["id"] = "explicit.stat_3828613551", + ["text"] = "#% to Quality of Socketed Gems", }, - ["AbyssJewel"] = { - ["min"] = 5, + ["1HAxe"] = { + ["min"] = 9, ["max"] = 10, }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 10, }, - ["AnyJewel"] = { - ["min"] = 5, + ["Wand"] = { + ["min"] = 9, ["max"] = 10, }, - }, - ["1549_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 9, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["2HSword"] = { + ["min"] = 9, + ["max"] = 10, }, - ["2HWeapon"] = { - ["min"] = 10, + ["Bow"] = { + ["min"] = 9, ["max"] = 10, }, - ["sign"] = "", - }, - ["1361_ChaosResistanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["specialCaseData"] = { }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 13, + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 7, - ["max"] = 13, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 10, }, - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 13, + ["Shield"] = { + ["min"] = 9, + ["max"] = 10, }, }, - ["1147_StaffAttackSpeedForJewel"] = { + ["1317_PercentIncreasedManaForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 8, + ["max"] = 10, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 8, + ["max"] = 10, }, }, - ["3023_IncreasedOneHandedMeleeDamageForJewel"] = { + ["115_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["Gloves"] = { + ["min"] = 2, + ["max"] = 2, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1010549321", - ["text"] = "#% increased Damage with One Handed Weapons", + ["id"] = "explicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, + ["sign"] = "+", + ["Helmet"] = { + ["min"] = 2, + ["max"] = 2, }, }, - ["5113_GainAccuracyEqualToStrengthMaven"] = { + ["1174_IncreasedAccuracyPercentSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2511370818", - ["text"] = "#% increased Critical Strike Chance per 10 Strength", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 6, + ["max"] = 20, }, ["sign"] = "", }, - ["926_MineDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["1756_ColdDamageAndBaseChanceToFreeze"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 40, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 40, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 21, + ["max"] = 40, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Claw"] = { + ["min"] = 21, + ["max"] = 40, }, - }, - ["1741_ChanceToFreezeForJewel"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 21, + ["max"] = 40, }, ["tradeMod"] = { ["type"] = "explicit", ["id"] = "explicit.stat_2309614417", ["text"] = "#% chance to Freeze", }, - ["sign"] = "", - }, - ["3939_DualWieldingCritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2546185479", - ["text"] = "#% to Critical Strike Multiplier while Dual Wielding", + ["Bow"] = { + ["min"] = 21, + ["max"] = 40, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 40, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 40, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HWeapon"] = { + ["min"] = 21, + ["max"] = 40, }, - }, - ["7565_FortifyEffectMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_335507772", - ["text"] = "# to maximum Fortification", + }, + ["5735_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HMace"] = { + ["min"] = 15, + ["max"] = 15, }, - ["Helmet"] = { - ["min"] = 4.2, - ["max"] = 5, + ["Wand"] = { + ["min"] = 15, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["4394_ImpaleChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["2HMace"] = { + ["min"] = 15, + ["max"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["1HSword"] = { + ["min"] = 15, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["Staff"] = { + ["min"] = 15, + ["max"] = 15, }, - }, - ["341_DisplaySupportedByManaLeech"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 15, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", }, - ["Gloves"] = { + ["Claw"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["Dagger"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["Bow"] = { ["min"] = 15, ["max"] = 15, }, - ["sign"] = "", }, - ["1599_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["7818_WeaponSpellDamageAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", }, ["sign"] = "", }, - ["370_SocketedAttackCriticalStrikeChance"] = { + ["8555_ChilledGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2867348718", - ["text"] = "Socketed Attacks have #% to Critical Strike Chance", + ["id"] = "explicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", }, - ["Helmet"] = { + ["Boots"] = { ["min"] = 1, - ["max"] = 4, + ["max"] = 1, }, - ["sign"] = "+", }, - ["1352_ColdResistance"] = { - ["Quiver"] = { - ["min"] = 6, - ["max"] = 48, + ["117_LocalIncreaseSocketedBowGemLevel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2027269580", + ["text"] = "# to Level of Socketed Bow Gems", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Belt"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 2, + }, + }, + ["1166_BowAttackSpeedForJewel"] = { + ["2HWeapon"] = { ["min"] = 6, - ["max"] = 48, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", }, - ["Ring"] = { + ["Bow"] = { ["min"] = 6, - ["max"] = 48, + ["max"] = 8, }, - ["2HWeapon"] = { + ["AbyssJewel"] = { ["min"] = 6, - ["max"] = 48, + ["max"] = 8, }, - ["1HWeapon"] = { + ["specialCaseData"] = { + }, + ["sign"] = "", + ["BaseJewel"] = { ["min"] = 6, - ["max"] = 48, + ["max"] = 8, }, - ["Amulet"] = { + ["AnyJewel"] = { ["min"] = 6, - ["max"] = 48, + ["max"] = 8, }, }, - ["2228_FlammabilityOnHitLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", + ["4405_AttacksBlindOnHitChance"] = { + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 6, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 5, + ["max"] = 25, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 10, }, - }, - ["8306_SpellDamagePer10Strength"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 25, + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 5, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 25, + }, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 25, }, - ["sign"] = "", }, - ["103_MeleeRangeAndMeleeGemLevel"] = { - ["Gloves"] = { + ["111_LocalIncreaseSocketedChaosGemLevel"] = { + ["Boots"] = { ["min"] = 2, ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, + ["1HWeapon"] = { + ["min"] = 1, ["max"] = 2, }, - }, - ["2398_EnemiesExplodeOnDeath"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3457687358", - ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["1594_ReducedIgniteDurationOnSelf"] = { + ["1118_ColdGemCastSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", }, ["AbyssJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["min"] = 3, + ["max"] = 5, }, ["AnyJewel"] = { - ["min"] = 30, - ["max"] = 35, + ["min"] = 3, + ["max"] = 5, }, }, - ["1086_GlobalAddedFireDamage"] = { + ["922_StrengthAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - }, - ["Gloves"] = { - ["min"] = 23, - ["max"] = 30, + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", }, - ["sign"] = "", + ["sign"] = "+", }, - ["6687_LocalChanceToIntimidateOnHit"] = { + ["1333_ItemRarityForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + }, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["4415_ChanceToAvoidProjectilesMaven"] = { - ["specialCaseData"] = { + ["1689_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["min"] = 22, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3114696875", - ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["Quiver"] = { + ["min"] = 22, + ["max"] = 25, + }, + ["specialCaseData"] = { }, + ["sign"] = "", }, - ["4468_LightningExposureOnHit"] = { + ["4330_AttackAndCastSpeedWhileFocused"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 45, + ["max"] = 50, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 20, - }, }, - ["1291_LifeAndManaForJewel"] = { + ["1161_AxeAttackSpeedForJewel"] = { + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + }, + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["sign"] = "+", }, - ["188_IgniteDurationSupported"] = { + ["993_PhysicalDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2420410470", - ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["id"] = "explicit.stat_709768359", + ["text"] = "#% to Physical Damage over Time Multiplier with Attack Skills", }, - ["Helmet"] = { + ["sign"] = "+", + ["Quiver"] = { ["min"] = 16, ["max"] = 25, }, - ["sign"] = "", }, - ["1932_CurseRadiusForJewel"] = { + ["734_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + }, + ["Flask"] = { + ["min"] = 19, + ["max"] = 34, }, ["sign"] = "", }, - ["1230_FireCritMultiplierForJewel"] = { + ["5730_GainArcaneSurgeOnCrit"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2307547323", - ["text"] = "#% to Critical Strike Multiplier with Fire Skills", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 30, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Wand"] = { + ["min"] = 11, + ["max"] = 30, }, }, - ["8243_SkillsCostNoManaWhileFocusedCDR"] = { - ["specialCaseData"] = { - }, + ["898_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_849152640", - ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 5, }, }, - ["2494_FireLightningResistanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["101_DelveDexterityGemLevel"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["4950_ChaosResistanceAgainstDamageOverTime"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2266636761", - ["text"] = "#% Chaos Resistance against Damage Over Time", + ["id"] = "explicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", }, - ["Quiver"] = { - ["min"] = 30, - ["max"] = 40, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", ["Chest"] = { - ["min"] = 30, - ["max"] = 40, + ["min"] = 1, + ["max"] = 1, }, - ["Shield"] = { - ["min"] = 30, - ["max"] = 40, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1206_LightningCritChanceForJewel"] = { + ["1298_EnergyShieldForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1186596295", - ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 6, + ["max"] = 8, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 6, + ["max"] = 8, }, }, - ["1357_LightningResistance"] = { + ["1311_BaseManaAndLifeRegen"] = { + ["Gloves"] = { + ["min"] = 33.3, + ["max"] = 33.3, + }, ["Quiver"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 33.3, + ["max"] = 33.3, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Belt"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 33.3, + ["max"] = 33.3, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", }, ["Ring"] = { - ["min"] = 6, - ["max"] = 48, - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 48, + ["min"] = 33.3, + ["max"] = 33.3, }, - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 48, + ["Helmet"] = { + ["min"] = 33.3, + ["max"] = 33.3, }, ["Amulet"] = { - ["min"] = 6, - ["max"] = 48, - }, - }, - ["302_TotemSpeedSpellSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["min"] = 33.3, + ["max"] = 33.3, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 18, - ["max"] = 25, + ["min"] = 33.3, + ["max"] = 33.3, }, }, - ["1204_DualWieldingCritChanceForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3702513529", - ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["1081_IncreasedSwordDamageForJewel"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["1HSword"] = { + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, ["AnyJewel"] = { ["min"] = 14, - ["max"] = 18, + ["max"] = 16, }, - }, - ["175_SupportedByEnlighten"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2065361612", - ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["id"] = "explicit.stat_83050999", + ["text"] = "#% increased Damage with Swords", + }, + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "", }, - ["2481_TotemElementalResistancesForJewel"] = { + ["978_MeleeDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 10, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["min"] = 10, + ["max"] = 12, }, }, - ["4394_AttackImpaleChanceMaven"] = { - ["specialCaseData"] = { - }, + ["3074_ColdDamageAvoidanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", }, - ["Gloves"] = { - ["min"] = 21, - ["max"] = 25, + ["specialCaseData"] = { }, ["sign"] = "", + ["Shield"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 8, + ["max"] = 10, + }, }, - ["1578_IgniteChanceAndDurationForJewel"] = { + ["1168_WandAttackSpeedForJewel"] = { + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["id"] = "explicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + }, + ["Wand"] = { + ["min"] = 6, + ["max"] = 8, }, ["AbyssJewel"] = { ["min"] = 6, @@ -14473,7 +15278,7 @@ return { ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { + ["1HWeapon"] = { ["min"] = 6, ["max"] = 8, }, @@ -14482,39 +15287,88 @@ return { ["max"] = 8, }, }, - ["3156_ChanceToLoseManaOnSkillUse"] = { + ["8474_TailwindOnCriticalStrike"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2858930612", - ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["315_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + }, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["specialCaseData"] = { + }, }, - ["1902_BeltFlaskManaRecoveryRate"] = { + ["1479_IncreasedManaAndOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, - }, }, - ["1040_IncreasedClawDamageForJewel"] = { + ["975_PhysicalDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1069260037", - ["text"] = "#% increased Damage with Claws", - }, - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, ["AbyssJewel"] = { ["min"] = 14, @@ -14523,7 +15377,7 @@ return { ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["BaseJewel"] = { ["min"] = 14, ["max"] = 16, }, @@ -14532,162 +15386,191 @@ return { ["max"] = 16, }, }, - ["1291_BaseLifeAndManaRegen"] = { - ["Gloves"] = { - ["min"] = 55, - ["max"] = 60, + ["976_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1HSword"] = { + ["min"] = 120, + ["max"] = 139, }, - ["Quiver"] = { - ["min"] = 55, - ["max"] = 60, + ["Wand"] = { + ["min"] = 120, + ["max"] = 139, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 120, + ["max"] = 139, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 55, - ["max"] = 60, + ["Staff"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HMace"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["Claw"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HSword"] = { + ["min"] = 120, + ["max"] = 139, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["Helmet"] = { - ["min"] = 55, - ["max"] = 60, + ["Bow"] = { + ["min"] = 120, + ["max"] = 139, }, - ["Ring"] = { - ["min"] = 55, - ["max"] = 60, + ["2HAxe"] = { + ["min"] = 120, + ["max"] = 139, }, - ["Amulet"] = { - ["min"] = 55, - ["max"] = 60, + ["1HAxe"] = { + ["min"] = 120, + ["max"] = 139, }, - ["Boots"] = { - ["min"] = 55, - ["max"] = 60, + ["2HWeapon"] = { + ["min"] = 120, + ["max"] = 139, }, - }, - ["1738_ChanceToIgniteForJewel"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 120, + ["max"] = 139, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2867_PoisonDamageWeaponSupported"] = { + ["5763_FrenzyChargeOnHittingRareOrUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - }, - ["1HWeapon"] = { - ["min"] = 19, - ["max"] = 26, + ["id"] = "explicit.stat_4179663748", + ["text"] = "#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 3, + ["max"] = 5, + }, }, - ["1093_ColdDamagePercentage"] = { + ["2870_BleedDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["AbyssJewel"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["BaseJewel"] = { + ["min"] = 16, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["8774_MinionInstability"] = { - ["specialCaseData"] = { + ["8602_VaalSoulCost"] = { + ["Wand"] = { + ["min"] = 20, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_433293234", - ["text"] = "Minion Instability", + ["Bow"] = { + ["min"] = 40, + ["max"] = 40, }, - }, - ["4394_AttackImpaleChance"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 20, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["Staff"] = { + ["min"] = 40, + ["max"] = 40, }, - ["Gloves"] = { - ["min"] = 13, + ["1HMace"] = { + ["min"] = 20, ["max"] = 20, }, ["sign"] = "", - }, - ["1129_SpellAddedPhysicalSuffix"] = { + ["Dagger"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 40, + ["max"] = 40, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "explicit.stat_678245679", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", }, - ["AbyssJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["2HAxe"] = { + ["min"] = 40, + ["max"] = 40, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 40, + ["max"] = 40, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4.5, - ["max"] = 19, + ["1HAxe"] = { + ["min"] = 20, + ["max"] = 20, }, - }, - ["940_DamageOverTimeForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["2HWeapon"] = { + ["min"] = 40, + ["max"] = 40, }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["specialCaseData"] = { }, + }, + ["1204_CritChanceWithBowForJewel"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + }, + ["2213_LightRadiusAndAccuracy"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", }, + ["sign"] = "", }, - ["1357_LightningResistanceForJewel"] = { + ["1361_FireResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, ["AbyssJewel"] = { ["min"] = 12, @@ -14705,69 +15588,47 @@ return { ["max"] = 15, }, }, - ["1172_CastSpeedWhileDualWieldingForJewel"] = { + ["2451_FlaskEffect"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Belt"] = { + ["min"] = 4, + ["max"] = 12, }, }, - ["1710_ProjectileDamageForJewel"] = { + ["1591_ShockChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 12, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["min"] = 12, + ["max"] = 16, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, - }, - }, - ["1942_FlatPhysicalDamageTaken"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_321765853", - ["text"] = "# Physical Damage taken from Hits", - }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 50, + ["min"] = 12, + ["max"] = 16, }, - ["sign"] = "-", }, - ["1104_LightningDamageForJewel"] = { + ["973_ShieldSpellDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", }, ["AbyssJewel"] = { ["min"] = 14, @@ -14785,280 +15646,261 @@ return { ["max"] = 16, }, }, - ["1136_IncreasedAttackSpeedForJewel"] = { + ["1164_DaggerAttackSpeedForJewel"] = { + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + }, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6, + ["max"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["Dagger"] = { + ["min"] = 6, + ["max"] = 8, }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 6, + ["max"] = 8, }, }, - ["8751_CallToArms"] = { + ["1946_AuraRadiusForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3292262540", - ["text"] = "Call to Arms", + ["id"] = "explicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", }, + ["sign"] = "", }, - ["1212_CritMultiplierForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["AbyssJewel"] = { - ["min"] = 9, - ["max"] = 12, - }, + ["1104_LocalFireDamageHybrid"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 9, - ["max"] = 12, - }, - ["AnyJewel"] = { - ["min"] = 9, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, + ["sign"] = "", }, - ["347_PoisonDurationSupported"] = { + ["1316_IncreasedManaAndBaseCost"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["5281_FasterAilmentDamageForJewel"] = { + ["1888_MaximumMinionCount"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", + }, + ["110_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, }, }, - ["924_TrapDamageForJewel"] = { + ["1582_AvoidShockForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + }, + ["AbyssJewel"] = { + ["min"] = 31, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 31, + ["max"] = 50, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 31, + ["max"] = 50, }, }, - ["2597_MinionBlockForJewel"] = { + ["7846_AdditionalTrapsThrownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3374054207", - ["text"] = "Minions have #% Chance to Block Attack Damage", + ["id"] = "explicit.stat_1220800126", + ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", }, - ["sign"] = "+", - }, - ["1400_LightningResistanceEnemyLeech"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["1597_StunDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, }, - ["873_BlockShieldForJewel"] = { + ["1376_ChaosResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4061558269", - ["text"] = "#% Chance to Block Attack Damage while holding a Shield", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 7, + ["max"] = 13, }, ["specialCaseData"] = { }, ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 7, + ["max"] = 13, }, ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 7, + ["max"] = 13, }, }, - ["4904_AdditionalChanceToEvade"] = { + ["2454_LocalWeaponRangeUber"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 3, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", + ["id"] = "explicit.stat_350598685", + ["text"] = "# to Weapon Range", }, - ["Ring"] = { + ["2HMace"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 3, }, - ["Quiver"] = { + ["2HWeapon"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 3, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Amulet"] = { + ["2HAxe"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 3, }, - ["Belt"] = { + ["Staff"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 3, }, }, - ["5265_LifeRecoupForJewel"] = { + ["3038_IncreasedOneHandedMeleeDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "explicit.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 12, + ["max"] = 14, }, ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 12, + ["max"] = 14, }, }, - ["4270_IncreasedArmourIfNoEnemySlainRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2424133568", - ["text"] = "#% increased Armour if you haven't Killed Recently", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["1154_AttackSpeedDoubleDamage"] = { + ["2HMace"] = { + ["min"] = 17, + ["max"] = 21, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 30, - }, - }, - ["6283_LightningAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 21, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 17, + ["max"] = 21, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["2HSword"] = { + ["min"] = 17, + ["max"] = 21, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", - }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", }, - ["Amulet"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 21, }, - ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["Bow"] = { + ["min"] = 8, + ["max"] = 12, }, }, - ["956_StaffSpellDamageForJewel"] = { + ["941_MineDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", }, ["specialCaseData"] = { }, @@ -15072,2676 +15914,2631 @@ return { ["max"] = 16, }, }, - ["1340_AllResistancesForJewel"] = { + ["968_SpellDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 10, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 10, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 10, + ["max"] = 12, }, }, - ["8198_ShockYourselfOnFocusCDR"] = { + ["1108_ColdDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3181879507", - ["text"] = "Shock yourself for # Seconds when you Focus", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["sign"] = "", }, - ["1205_FireCritChanceForJewel"] = { + ["1579_AvoidFreezeForJewel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1104796138", - ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + }, + ["sign"] = "", + }, + ["1724_KnockbackChanceForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", }, ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 4, + ["max"] = 6, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, - }, - }, - ["8727_ZealotryReservationEfficiency"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", - }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["910_StrengthDexterityForJewel"] = { + ["4408_ImpaleChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 5, + ["max"] = 7, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 5, + ["max"] = 7, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 5, + ["max"] = 7, }, }, - ["4645_AttackBlockIfBlockedAttackRecently"] = { - ["specialCaseData"] = { - }, + ["216_LightningDamagePrefixLightningPenetration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3789765926", - ["text"] = "#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["id"] = "explicit.stat_3354027870", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["1171_CastSpeedAndGainArcaneSurgeOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 31, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 22, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", }, - ["4439_BleedDamageAndDuration"] = { + ["1131_LocalChaosDamageHybrid"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", }, ["sign"] = "", }, - ["1150_MaceAttackSpeedForJewel"] = { - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["943_AttackDamage"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["sign"] = "", + }, + ["193_FireDamagePrefixFirePenetration"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3265951306", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 16, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["953_SpellDamageForJewel"] = { + ["2719_IncreasedDamagePerCurse"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["sign"] = "", + }, + ["976_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["1HSword"] = { + ["min"] = 25, + ["max"] = 69, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 69, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 12, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 69, }, - }, - ["1340_AllResistances"] = { - ["Chest"] = { - ["min"] = 10, - ["max"] = 18, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HAxe"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, + }, + ["1227_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["Belt"] = { - ["min"] = 10, - ["max"] = 18, + ["specialCaseData"] = { }, - ["Ring"] = { + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 15, + ["max"] = 25, + }, + }, + ["1154_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["1HSword"] = { ["min"] = 3, - ["max"] = 16, + ["max"] = 4, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, - ["sign"] = "+", - ["Amulet"] = { + ["sign"] = "", + ["2HAxe"] = { ["min"] = 3, - ["max"] = 18, + ["max"] = 4, }, - ["Shield"] = { + ["2HSword"] = { ["min"] = 3, - ["max"] = 18, + ["max"] = 4, }, - }, - ["2855_BleedDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - }, - ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 3, + ["max"] = 4, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 4, }, - ["AnyJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 4, }, }, - ["1283_ArmourEnergyShieldForJewel"] = { - ["specialCaseData"] = { + ["3457_LocalColdPenetration"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["Wand"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "", - }, - ["1264_IncreasedArmourForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["2HMace"] = { + ["min"] = 9, + ["max"] = 15, }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["Staff"] = { + ["min"] = 9, + ["max"] = 15, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 9, + ["max"] = 15, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["Claw"] = { + ["min"] = 9, + ["max"] = 15, }, - }, - ["8241_IncreasedManaAndBaseCost"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 9, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost # Mana", + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", }, - ["sign"] = "-", - }, - ["3059_ColdDamageAvoidance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["Bow"] = { + ["min"] = 9, + ["max"] = 15, }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, - ["Quiver"] = { - ["min"] = 6, - ["max"] = 10, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { }, }, - ["5826_ChanceToFreezeAddedDamage"] = { + ["1577_AvoidStunAndElementalStatusAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2233361223", - ["text"] = "Adds # to # Cold Damage against Chilled or Frozen Enemies", + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 37, + ["Chest"] = { + ["min"] = 30, + ["max"] = 35, }, ["sign"] = "", }, - ["1112_IncreasedChaosDamage"] = { + ["2617_MinionAttackAndCastSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", }, ["AbyssJewel"] = { - ["min"] = 13, - ["max"] = 19, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, + }, ["AnyJewel"] = { - ["min"] = 13, - ["max"] = 19, + ["min"] = 4, + ["max"] = 6, }, }, - ["4753_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["975_SpellAddedPhysicalDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", - }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, ["sign"] = "", }, - ["2855_BleedDamageAndDuration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + ["1434_ManaLeechPermyriad"] = { + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["sign"] = "", - }, - ["907_StrengthForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.8, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, }, - ["1296_BaseManaAndLifeRegen"] = { - ["Gloves"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["1124_LocalLightningDamage"] = { + ["2HMace"] = { + ["min"] = 3, + ["max"] = 182.5, }, - ["Quiver"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["1HSword"] = { + ["min"] = 3, + ["max"] = 182.5, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 182.5, }, ["sign"] = "", - ["Belt"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Dagger"] = { + ["min"] = 3, + ["max"] = 182.5, + }, + ["Claw"] = { + ["min"] = 3, + ["max"] = 182.5, + }, + ["2HSword"] = { + ["min"] = 3, + ["max"] = 182.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, - ["Helmet"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["Wand"] = { + ["min"] = 3, + ["max"] = 182.5, }, - ["Ring"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["2HAxe"] = { + ["min"] = 3, + ["max"] = 182.5, }, - ["Amulet"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["1HAxe"] = { + ["min"] = 3, + ["max"] = 182.5, }, - ["Boots"] = { - ["min"] = 33.3, - ["max"] = 33.3, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 182.5, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 182.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, }, - ["1464_ManaGainPerTargetForJewel"] = { + ["2616_MinionAttackAndCastSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", }, ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 4, + ["max"] = 6, }, ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 4, + ["max"] = 6, }, }, - ["1264_ReducedPhysicalDamageTakenMaven"] = { + ["1665_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + }, + ["Quiver"] = { + ["min"] = 3, + ["max"] = 5, + }, ["specialCaseData"] = { }, + ["sign"] = "", + }, + ["1159_TwoHandedMeleeAttackSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["1302_EnergyShieldAndManaForJewel"] = { + ["1131_PoisonDamageAddedChaosToAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", }, ["sign"] = "", }, - ["3941_ArmourAndEvasionRating"] = { + ["226_SupportedByOnslaughtWeapon"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 10, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2316658489", - ["text"] = "# to Armour and Evasion Rating", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Onslaught", }, - ["Quiver"] = { - ["min"] = 365, - ["max"] = 400, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, }, - ["5225_DamagePer15Dexterity"] = { + ["3091_FlaskChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2062174346", - ["text"] = "#% increased Damage per 15 Dexterity", + ["id"] = "explicit.stat_1546046884", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike", }, - ["Amulet"] = { + ["Belt"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "", }, - ["7657_AddedLightningDamagePerShockedEnemyKilled"] = { - ["specialCaseData"] = { + ["1672_ColdAddedAsChaos"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4222857095", - ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["1HMace"] = { + ["min"] = 9, + ["max"] = 10, }, ["sign"] = "", - }, - ["1549_PowerChargeOnCriticalStrikeChanceMaven"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 15, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1283_EnergyShieldAndManaForJewel"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["Wand"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1280_EnergyShieldAndRegen"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", - }, - ["113_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", + ["Bow"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "+", - }, - ["960_PhysicalDamagePercent"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1296_LifeRegeneration"] = { ["Shield"] = { - ["min"] = 128.1, - ["max"] = 152, + ["min"] = 9, + ["max"] = 10, }, + }, + ["1299_EnergyShieldDelayForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["Chest"] = { - ["min"] = 128.1, - ["max"] = 176, + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", }, ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 128, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 128, + ["min"] = 4, + ["max"] = 6, }, ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 128, + ["min"] = 4, + ["max"] = 6, }, }, - ["8225_BrandAttachmentRange"] = { - ["Gloves"] = { - ["min"] = 25, - ["max"] = 28, - }, + ["1186_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 28, - }, - }, - ["1308_ManaRecoveryRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 15, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, + ["Staff"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["1485_MinionLifeForJewel"] = { + ["1384_LifeLeechPermyriadForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", }, ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 0.2, + ["max"] = 0.4, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 0.2, + ["max"] = 0.4, }, ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 0.2, + ["max"] = 0.4, }, }, - ["8724_SpellsAdditionalUnleashSeal"] = { + ["1947_CurseRadiusForJewel"] = { ["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"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1189_CritChanceWithBowForJewel"] = { + ["1547_MinimumPowerChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2232_MeleeRangeAndMeleeGemLevel"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["1306_LifeAndManaForJewel"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, + ["sign"] = "+", + }, + ["1296_LocalBaseArmourEnergyShieldAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", }, + ["sign"] = "+", }, - ["5532_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { + ["7697_MinionCriticalStrikeMultiplier"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2238019079", - ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% to Critical Strike Multiplier", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 200, - ["max"] = 200, + ["sign"] = "+", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 38, }, - ["Belt"] = { - ["min"] = 200, - ["max"] = 200, + ["Wand"] = { + ["min"] = 10, + ["max"] = 38, }, }, - ["910_StrengthAndDexterity"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["1131_LocalChaosDamageTwoHand"] = { + ["2HMace"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 140.5, + ["max"] = 214.5, + }, + ["Bow"] = { + ["min"] = 140.5, + ["max"] = 214.5, + }, + ["2HSword"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + ["1HMace"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["Staff"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, + ["1HAxe"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, + ["2HWeapon"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, + ["1HWeapon"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["1HSword"] = { + ["min"] = 140.5, + ["max"] = 214.5, }, }, - ["2338_EnergyShieldAndRegen"] = { - ["specialCaseData"] = { + ["1611_BurnDamagePrefix"] = { + ["2HWeapon"] = { + ["min"] = 100, + ["max"] = 134, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + }, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["Wand"] = { + ["min"] = 60, + ["max"] = 94, }, - ["sign"] = "", - }, - ["1262_ArmourAndEnergyShield"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 94, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, + ["Staff"] = { + ["min"] = 100, + ["max"] = 134, }, }, - ["5665_FocusCooldownRecovery"] = { + ["340_LocalPhysicalDamagePercentFortify"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, - }, }, - ["544_SummonWolfOnKillOld"] = { - ["specialCaseData"] = { - }, + ["1279_GlobalPhysicalDamageReductionRatingPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1468606528", - ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + }, + ["Ring"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["specialCaseData"] = { }, + ["sign"] = "", ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 4, + ["max"] = 36, + }, + ["Belt"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["5214_ReducedBurnDurationMaven"] = { + ["8751_AvatarOfFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_430821956", - ["text"] = "#% increased Damage if you've been Ignited Recently", - }, - ["Helmet"] = { - ["min"] = 36, - ["max"] = 50, + ["id"] = "explicit.stat_346029096", + ["text"] = "Avatar of Fire", }, - ["sign"] = "", }, - ["1579_IncreasedAilmentDurationMaven"] = { + ["5186_OLDAdditionalCurseOnEnemiesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["Chest"] = { + ["min"] = 20, + ["max"] = 20, }, ["sign"] = "", }, - ["1158_IncreasedAccuracy"] = { + ["1290_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Gloves"] = { - ["min"] = 50, - ["max"] = 600, - }, - ["Quiver"] = { - ["min"] = 50, - ["max"] = 600, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 300, + ["min"] = 24, + ["max"] = 28, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 300, - }, - ["Ring"] = { - ["min"] = 50, - ["max"] = 480, + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", }, ["Helmet"] = { - ["min"] = 50, - ["max"] = 600, + ["min"] = 24, + ["max"] = 28, }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 480, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, - ["Shield"] = { - ["min"] = 50, - ["max"] = 480, + ["sign"] = "", + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["Boots"] = { + ["min"] = 24, + ["max"] = 28, }, }, - ["1188_CriticalStrikeChanceSupported"] = { + ["1898_ReducedCurseEffect"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 35, + ["max"] = 40, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 22, - ["max"] = 29, - }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, - }, }, - ["352_DisplaySocketedGemsGetReducedReservation"] = { + ["938_TotemDamageSpellSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", }, ["sign"] = "", - ["Shield"] = { + ["Boots"] = { ["min"] = 20, - ["max"] = 30, + ["max"] = 35, }, }, - ["2146_ColdResistancePhysTakenAsCold"] = { + ["1306_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2450_RarityDuringFlaskEffect"] = { + ["4242_ArcticArmourReservationCost"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_301625329", - ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1565_StrengthAndAvoidIgnite"] = { + ["7568_FortifyEffect"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 5, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["id"] = "explicit.stat_335507772", + ["text"] = "# to maximum Fortification", + }, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Chest"] = { - ["min"] = 21, - ["max"] = 25, + ["min"] = 3, + ["max"] = 5, }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, + ["Boots"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["907_StrengthAndAvoidIgnite"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - }, + ["1321_ManaRegeneration"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 69, }, - }, - ["5598_FireAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 69, }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 69, }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 10, + ["max"] = 69, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["Wand"] = { + ["min"] = 10, + ["max"] = 69, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, + ["Ring"] = { + ["min"] = 10, + ["max"] = 69, }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, + ["Staff"] = { + ["min"] = 10, + ["max"] = 69, }, ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 41, + ["max"] = 70, }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 69, }, ["Amulet"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 10, + ["max"] = 69, }, ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 10, + ["max"] = 69, }, }, - ["1330_GlobalIncreaseSpellSkillGemLevel"] = { + ["1221_LightningCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skill Gems", + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 18, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 18, + }, + }, + ["2796_VaalSkillDamage"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Ring"] = { + ["min"] = 20, + ["max"] = 40, + }, + ["Belt"] = { + ["min"] = 20, + ["max"] = 40, }, - ["sign"] = "+", }, - ["145_WeaponSpellDamageArcaneSurge"] = { + ["5844_ChanceToShockAddedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["id"] = "explicit.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + }, + ["Ring"] = { + ["min"] = 35.5, + ["max"] = 47, }, ["sign"] = "", }, - ["1517_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["1547_MinimumPowerCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 25, - ["max"] = 30, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["906_AllAttributesForJewel"] = { + ["1148_IncreasedCastSpeedAddedChaos"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + }, + ["sign"] = "", + }, + ["2496_TotemElementalResistancesForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", }, ["AbyssJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "+", ["BaseJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, ["AnyJewel"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 10, }, }, - ["1515_ProjectileDamageAndProjectileSpeed"] = { - ["specialCaseData"] = { - }, + ["2871_PoisonDurationWeaponSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", }, - ["Amulet"] = { - ["min"] = 23, - ["max"] = 25, + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 14, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 14, + }, }, - ["4917_AccuracyRatingPerFrenzyChargeUber"] = { + ["2874_PoisonChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3769211656", - ["text"] = "#% chance to gain a Frenzy Charge when you Block", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 25, + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 25, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["5227_DamagePer15Strength"] = { + ["1474_LifeGainedOnSpellHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3948776386", - ["text"] = "#% increased Damage per 15 Strength", + ["id"] = "explicit.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 8, + ["max"] = 15, }, ["sign"] = "", }, - ["2198_LightRadiusAndAccuracy"] = { + ["2542_IncreasedDefensesForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", }, ["sign"] = "", }, - ["338_ChillEffectSupported"] = { - ["specialCaseData"] = { - }, + ["1593_IgniteChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_13669281", - ["text"] = "Socketed Gems are Supported by Level # Hypothermia", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["309_SupportedByMeleeSplashDamage"] = { + ["1634_StunRecoveryForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + }, + ["AbyssJewel"] = { + ["min"] = 25, + ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 25, + ["max"] = 35, }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 25, + ["max"] = 35, }, }, - ["4242_AreaOfEffectPerEnduranceCharge"] = { - ["specialCaseData"] = { - }, + ["4993_ChanceToChillAttackersOnBlock"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", + ["id"] = "explicit.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["min"] = 25, + ["max"] = 50, }, - ["sign"] = "", - }, - ["2226_CurseOnHitDespair"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", + ["sign"] = "", + ["Staff"] = { + ["min"] = 25, + ["max"] = 50, }, - ["1HWeapon"] = { + ["Shield"] = { + ["min"] = 25, + ["max"] = 50, + }, + }, + ["1766_CullingStrikeMaven"] = { + ["Gloves"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { + ["2HMace"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["5802_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", - }, - ["Amulet"] = { + ["2HAxe"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["1352_ColdResistancePrefix"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["2225_ConductivityOnHitLevel"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", }, - ["1HWeapon"] = { + ["2HWeapon"] = { ["min"] = 1, ["max"] = 1, }, - ["Ring"] = { + ["Bow"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2145_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["1725_ProjectileDamageAndProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 9, + ["Amulet"] = { + ["min"] = 17, + ["max"] = 20, }, ["sign"] = "", }, - ["1772_GlobalFlaskLifeRecovery"] = { + ["1317_MaximumManaIncreasePercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, - ["Ring"] = { + ["Quiver"] = { ["min"] = 20, ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["Chest"] = { + ["min"] = 9, + ["max"] = 18, }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 18, }, }, - ["8241_ManaCostBaseNonChannelled"] = { - ["specialCaseData"] = { + ["1055_IncreasedClawDamageForJewel"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_407482587", - ["text"] = "Non-Channelling Skills Cost # Mana", + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + }, + ["Claw"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "-", }, - ["2436_FlaskEffectAndFlaskChargesGained"] = { + ["1432_ManaLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 15, - ["max"] = 18, - }, }, - ["1267_EvasionRatingAndEnergyShield"] = { + ["1889_MaximumMinionCount"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - }, - ["Quiver"] = { - ["min"] = 365, - ["max"] = 400, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_125218179", + ["text"] = "# to maximum number of Spectres", }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 365, - ["max"] = 400, - }, }, - ["241_TrapDamageCooldownSupported"] = { + ["2871_FasterPoisonDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 20, + }, }, - ["5534_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { + ["1751_LocalAccuracyRatingStrengthDexterity"] = { + ["1HSword"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["Wand"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["2HMace"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["Staff"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["1HMace"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["Claw"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["2HSword"] = { + ["min"] = 311, + ["max"] = 350, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_588560583", - ["text"] = "Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", }, - ["sign"] = "", - ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["Bow"] = { + ["min"] = 311, + ["max"] = 350, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 311, + ["max"] = 350, + }, + ["1HAxe"] = { + ["min"] = 311, + ["max"] = 350, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 311, + ["max"] = 350, }, ["1HWeapon"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["min"] = 311, + ["max"] = 350, }, - ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, }, - ["2867_PoisonDamageForJewel"] = { + ["2451_FlaskEffectAndFlaskChargesGained"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + }, + ["sign"] = "", + ["Belt"] = { + ["min"] = 15, + ["max"] = 18, + }, + }, + ["1372_LightningResistanceForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 12, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["BaseJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 12, + ["max"] = 15, }, ["AnyJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 12, + ["max"] = 15, }, }, - ["2321_MinimumEnduranceChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["976_LocalChanceToMaimPhysicalDamage"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 20, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, + ["Bow"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 20, }, - }, - ["1747_SupportedByMeleeSplashDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 20, }, ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 37, - }, - }, - ["5665_TriggerSocketedSpellWhenYouFocusCDR"] = { - ["specialCaseData"] = { + ["min"] = 10, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 8, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", }, - ["1361_ChaosResistanceDamageOverTime"] = { + ["2328_MapExtraInvasionBosses"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "explicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", }, - ["sign"] = "+", }, - ["2322_MinimumEnduranceChargesAndOnKillLose"] = { - ["specialCaseData"] = { - }, + ["1187_CastSpeedWhileDualWieldingForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_627015097", - ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, }, - ["916_PercentageIntelligenceMaven"] = { + ["5712_GainRareMonsterModsOnKillChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_2736829661", + ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 12, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 40, }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 12, + ["Claw"] = { + ["min"] = 15, + ["max"] = 40, }, }, - ["125_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["927_DexterityIntelligenceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 8, + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 8, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["5110_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["1908_IgnoreArmourMovementPenalties"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["id"] = "explicit.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", }, - ["2HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["3143_TrapCooldownRecoveryAndDuration"] = { - ["specialCaseData"] = { - }, + ["1119_LightningDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3417757416", - ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", - }, - ["sign"] = "", - }, - ["1304_BaseLifeAndManaRegen"] = { - ["Gloves"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - ["Quiver"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, + }, + ["2511_ChanceToFreezeShockIgniteUnboundAilments"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - }, - ["Helmet"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", }, - ["Ring"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Boots"] = { - ["min"] = 5.3, - ["max"] = 5.3, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["912_DexterityAndIntelligence"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["1659_TrapThrowSpeedForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, }, + }, + ["924_IntelligenceAndAvoidShock"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + ["specialCaseData"] = { }, + ["sign"] = "+", ["Chest"] = { ["min"] = 31, ["max"] = 35, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, - }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, - }, ["Shield"] = { ["min"] = 31, ["max"] = 35, }, }, - ["1567_IntelligenceAndAvoidShock"] = { + ["1151_IncreasedAttackSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 21, - ["max"] = 25, + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["4904_AdditionalChanceToEvadeMaven"] = { - ["specialCaseData"] = { + ["1073_IncreasedBowDamageForJewel"] = { + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, + ["Bow"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "+", - }, - ["1755_AlwaysHits"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4126210832", - ["text"] = "Hits can't be Evaded", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["87_DelveIntelligenceGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, + ["1227_CritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1301_BaseManaAndLifeRegen"] = { - ["Gloves"] = { - ["min"] = 55, - ["max"] = 60, + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["Quiver"] = { - ["min"] = 55, - ["max"] = 60, + ["AbyssJewel"] = { + ["min"] = 9, + ["max"] = 12, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 55, - ["max"] = 60, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["Helmet"] = { - ["min"] = 55, - ["max"] = 60, - }, - ["Ring"] = { - ["min"] = 55, - ["max"] = 60, - }, - ["Amulet"] = { - ["min"] = 55, - ["max"] = 60, + ["BaseJewel"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Boots"] = { - ["min"] = 55, - ["max"] = 60, + ["AnyJewel"] = { + ["min"] = 9, + ["max"] = 12, }, }, - ["5802_GainVaalPactWhileFocused"] = { + ["1306_LocalBaseArmourEvasionRatingAndLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2022851697", - ["text"] = "You have Vaal Pact while Focused", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, + ["sign"] = "+", }, - ["2321_EnduranceChargeOnKillChance"] = { + ["5296_FasterAilmentDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", }, - ["2HWeapon"] = { + ["AbyssJewel"] = { ["min"] = 4, - ["max"] = 10, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["BaseJewel"] = { ["min"] = 4, - ["max"] = 10, + ["max"] = 6, }, - ["Boots"] = { + ["AnyJewel"] = { ["min"] = 4, - ["max"] = 10, + ["max"] = 6, }, }, - ["1006_DualWieldingPhysicalDamage"] = { + ["939_TrapDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1274831335", - ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["1563_MovementVelocityAndCannotBeChilled"] = { + ["2612_MinionBlockForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 100, - ["max"] = 100, + ["id"] = "explicit.stat_3374054207", + ["text"] = "Minions have #% Chance to Block Attack Damage", }, + ["sign"] = "+", }, - ["960_IncreasedChaosAndPhysicalDamage"] = { + ["527_GrantsEssenceMinion"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_470688636", + ["text"] = "Triggers Level 20 Spectral Spirits when Equipped", }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, + }, + ["1144_SpellAddedPhysicalDamage"] = { + ["1HMace"] = { + ["min"] = 34, + ["max"] = 60, }, ["sign"] = "", - }, - ["1093_ColdDamageWeaponPrefixAndFlat"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 34, + ["max"] = 60, + }, + ["Staff"] = { + ["min"] = 56, + ["max"] = 97.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", }, - ["sign"] = "", - }, - ["551_TriggerOnRareAssassinsMark"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 34, + ["max"] = 60, }, - ["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", + ["Helmet"] = { + ["min"] = 25, + ["max"] = 61, + }, + ["2HWeapon"] = { + ["min"] = 56, + ["max"] = 97.5, + }, + ["1HWeapon"] = { + ["min"] = 34, + ["max"] = 60, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["3118_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { + ["901_BlockingBlocksSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2355615476", - ["text"] = "#% to Critical Strike Multiplier against Enemies that are on Full Life", - }, - ["1HWeapon"] = { - ["min"] = 41, - ["max"] = 60, + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", }, - ["sign"] = "+", + ["sign"] = "", }, - ["2604_MinionLifeLeech"] = { + ["1617_ManaCostReductionForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2770782267", - ["text"] = "Minions Leech #% of Damage as Life", + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", }, ["AbyssJewel"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, ["AnyJewel"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["min"] = 3, + ["max"] = 5, }, }, - ["2855_BleedingDamageChance"] = { - ["specialCaseData"] = { + ["1255_StunThresholdReduction"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 15, }, ["sign"] = "", - }, - ["1104_IncreasedFireAndLightningDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 22, + ["Belt"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["1301_IncreasedManaAndPercent"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 5, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", }, - ["sign"] = "+", - }, - ["1084_FireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["Staff"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["2323_MinimumFrenzyChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 15, }, }, - ["1527_MinimumFrenzyChargesAndOnKillChance"] = { + ["931_PercentageIntelligence"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 5, + ["max"] = 12, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 5, + ["max"] = 12, }, }, - ["3017_WarcryCooldownSpeed"] = { + ["5158_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_3527458221", + ["text"] = "#% to Critical Strike Multiplier if you have Blocked Recently", }, - ["sign"] = "", ["specialCaseData"] = { }, + ["sign"] = "+", ["2HWeapon"] = { - ["min"] = 17, + ["min"] = 35, ["max"] = 45, }, - ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, - }, - ["Shield"] = { + ["Staff"] = { ["min"] = 35, ["max"] = 45, }, }, - ["1564_DexterityAndAvoidFreeze"] = { + ["2556_FishingCastDistance"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "explicit.stat_170497091", + ["text"] = "#% increased Fishing Range", }, - ["specialCaseData"] = { + ["FishingRod"] = { + ["min"] = 30, + ["max"] = 50, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 21, - ["max"] = 25, - }, - ["Shield"] = { - ["min"] = 21, - ["max"] = 25, - }, }, - ["908_DexterityAndAvoidFreeze"] = { + ["2353_EnergyShieldRegenerationPerMinute"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["min"] = 1, + ["max"] = 1, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["6938_ManaRegenerationRateWhileMoving"] = { + ["1564_CriticalMultiplierSupportedTwoHanded"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1327522346", - ["text"] = "#% increased Mana Regeneration Rate while moving", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Boots"] = { - ["min"] = 50, - ["max"] = 70, + ["Bow"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["1517_MovementVelocityAndOnslaughtOnKill"] = { + ["308_AdditionalTrapsThrownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", }, - ["sign"] = "", - ["Boots"] = { + ["Gloves"] = { ["min"] = 25, - ["max"] = 30, + ["max"] = 25, }, + ["sign"] = "", }, - ["911_StrengthAndIntelligence"] = { - ["Gloves"] = { - ["min"] = 31, - ["max"] = 35, + ["8202_ShockNearbyEnemiesOnFocusCDR"] = { + ["specialCaseData"] = { }, - ["Quiver"] = { - ["min"] = 31, - ["max"] = 35, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 4, + ["max"] = 4, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, + ["sign"] = "", + }, + ["971_StaffSpellDamageForJewel"] = { + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", - }, - ["Boots"] = { - ["min"] = 31, - ["max"] = 35, + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["Staff"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 35, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 35, + ["specialCaseData"] = { }, - ["Amulet"] = { - ["min"] = 31, - ["max"] = 35, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["4899_ChanceToDealDoubleDamageWhileFocused"] = { + ["1227_CriticalMultiplierSupportedTwoHanded"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2908886986", - ["text"] = "#% chance to deal Double Damage while Focused", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["sign"] = "", ["specialCaseData"] = { }, + ["sign"] = "+", ["2HWeapon"] = { - ["min"] = 36, - ["max"] = 40, - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["min"] = 22, + ["max"] = 29, }, - ["Shield"] = { - ["min"] = 18, - ["max"] = 20, + ["Bow"] = { + ["min"] = 22, + ["max"] = 29, }, }, - ["193_SkillEffectDurationSupported"] = { - ["specialCaseData"] = { - }, + ["1355_AllResistancesForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_407317553", - ["text"] = "Socketed Gems are Supported by Level # Increased Duration", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 20, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - }, - ["172_SupportedByEmpower"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3581578643", - ["text"] = "Socketed Gems are Supported by Level # Empower", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["sign"] = "", }, - ["1143_AttackSpeedWithAShieldForJewel"] = { + ["1220_FireCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3805075944", - ["text"] = "#% increased Attack Speed while holding a Shield", + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", }, ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 14, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 14, + ["max"] = 18, }, ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 14, + ["max"] = 18, }, }, - ["1114_AddedChaosSuffix"] = { + ["925_StrengthDexterityForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", }, ["AbyssJewel"] = { - ["min"] = 8.5, - ["max"] = 16, + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, + }, ["AnyJewel"] = { - ["min"] = 8.5, - ["max"] = 16, + ["min"] = 8, + ["max"] = 10, }, }, - ["1464_ManaGainPerTargetMaven"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 5, + ["5481_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", }, - ["Quiver"] = { - ["min"] = 3, + ["Chest"] = { + ["min"] = 5, ["max"] = 5, }, - ["specialCaseData"] = { - }, ["sign"] = "", }, - ["2856_PoisonChanceAndDurationForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", + ["1165_MaceAttackSpeedForJewel"] = { ["BaseJewel"] = { ["min"] = 6, ["max"] = 8, }, - ["AnyJewel"] = { + ["2HMace"] = { ["min"] = 6, ["max"] = 8, }, - }, - ["2649_GlobalChanceToBlindOnHitMaven"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 15, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - }, - ["Quiver"] = { - ["min"] = 12, - ["max"] = 15, - }, ["specialCaseData"] = { }, ["sign"] = "", - }, - ["5008_ColdAndChaosDamageResistance"] = { - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Quiver"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 16, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", - }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 20, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Amulet"] = { - ["min"] = 16, - ["max"] = 20, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Shield"] = { - ["min"] = 16, - ["max"] = 20, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 8, }, }, - ["1308_ManaRecoveryRateMaven"] = { - ["specialCaseData"] = { - }, + ["1215_TwoHandedCritChanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", }, - ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1129_SpellAddedPhysicalDamageHybrid"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - ["sign"] = "", }, - ["4291_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["533_CurseOnHitPoachersMark"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", - }, - ["Chest"] = { - ["min"] = 0.5, - ["max"] = 2, + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1596_BurningDamageForJewel"] = { + ["6740_LocalItemQuality"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["AbyssJewel"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 16, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 10, ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 16, + ["Shield"] = { + ["min"] = 10, ["max"] = 20, }, }, - ["1149_DaggerAttackSpeedForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", + ["968_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HMace"] = { + ["min"] = 60, + ["max"] = 69, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 60, + ["max"] = 69, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["2HMace"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["1HSword"] = { + ["min"] = 60, + ["max"] = 69, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["2HAxe"] = { + ["min"] = 60, + ["max"] = 99, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Staff"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["2HSword"] = { + ["min"] = 60, + ["max"] = 99, }, - }, - ["1003_LocalAddedPhysicalDamageAndCausesBleeding"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 60, + ["max"] = 69, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 17, + ["Dagger"] = { + ["min"] = 60, + ["max"] = 69, + }, + ["1HAxe"] = { + ["min"] = 60, + ["max"] = 69, }, ["2HWeapon"] = { - ["min"] = 21.5, - ["max"] = 24, + ["min"] = 60, + ["max"] = 99, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 69, + }, + ["Bow"] = { + ["min"] = 60, + ["max"] = 99, }, }, - ["1745_LightningDamageAndChanceToShock"] = { + ["923_DexterityAndAvoidFreeze"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 31, + ["max"] = 35, }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["Shield"] = { + ["min"] = 31, + ["max"] = 35, }, }, - ["512_GrantsEssenceMinion"] = { + ["1186_IncreasedCastSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_470688636", - ["text"] = "Triggers Level 20 Spectral Spirits when Equipped", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - }, - ["1184_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["min"] = 20, - ["max"] = 22, + ["min"] = 7, + ["max"] = 14, + }, + ["sign"] = "", + }, + ["941_MineDamageTrapSupported"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", }, - ["Quiver"] = { + ["Helmet"] = { ["min"] = 20, - ["max"] = 22, - }, - ["specialCaseData"] = { + ["max"] = 35, }, ["sign"] = "", }, - ["8240_IncreasedManaAndCostNew"] = { + ["535_CurseOnHitWarlordsMark"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_677564538", - ["text"] = "Non-Channelling Skills have # to Total Mana Cost", + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", }, - ["sign"] = "-", + ["sign"] = "", }, - ["5138_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["1298_ArmourEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_536929014", - ["text"] = "#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", - }, - ["Ring"] = { - ["min"] = 27, - ["max"] = 30, + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1212_CriticalStrikeMultiplierSupported"] = { + ["1239_OneHandCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_670153687", + ["text"] = "#% to Critical Strike Multiplier with One Handed Melee Weapons", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 18, }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["AnyJewel"] = { + ["min"] = 15, + ["max"] = 18, }, }, - ["1106_AddedColdAndLightningDamage"] = { + ["4495_PhysicalDamageOverTimeTaken"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_511024200", + ["text"] = "#% reduced Physical Damage taken over time", }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 2, }, - ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["1468_LifeGainedFromEnemyDeath"] = { - ["Gloves"] = { - ["min"] = 3, - ["max"] = 14, - }, - ["Quiver"] = { - ["min"] = 3, - ["max"] = 14, - }, + ["1410_ColdResistanceLeech"] = { ["specialCaseData"] = { }, - ["sign"] = "", ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", - }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 14, - }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 14, - }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 14, - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 14, + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", }, + ["sign"] = "", }, - ["223_TotemDamageAttackSupported"] = { + ["331_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 18, - ["max"] = 25, - }, }, - ["158_BleedingDamageSupported"] = { + ["939_TrapDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", }, ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["1596_BurnDamagePrefix"] = { + ["1279_IncreasedArmourForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", }, - ["2HWeapon"] = { - ["min"] = 100, - ["max"] = 134, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - }, - ["1296_LifeRegenerationAndPercent"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, ["sign"] = "", - }, - ["1105_SelfFireAndLightningDamageTaken"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 18, }, - ["sign"] = "", }, - ["4355_AddedFireDamagePerStrength"] = { + ["1475_LifeGainPerTargetForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", }, - ["1HWeapon"] = { + ["AbyssJewel"] = { ["min"] = 2, ["max"] = 3, }, - ["sign"] = "", - }, - ["883_SpellBlockAndBlockUber"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 3, }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 3, }, - ["sign"] = "+", }, - ["1615_ChaosDamageAndChaosSkillDuration"] = { + ["4423_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_289885185", - ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 12, }, - ["2HWeapon"] = { - ["min"] = 13, - ["max"] = 30, + ["Chest"] = { + ["min"] = 10, + ["max"] = 12, }, }, - ["1114_ChaosDamage"] = { - ["specialCaseData"] = { + ["1018_LocalPhysicalDamage"] = { + ["1HSword"] = { + ["min"] = 1.5, + ["max"] = 40.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["1HMace"] = { + ["min"] = 1.5, + ["max"] = 40.5, }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 41, - ["max"] = 55, + ["Dagger"] = { + ["min"] = 1.5, + ["max"] = 40.5, }, - }, - ["5041_GlobalColdGemLevel"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 1.5, + ["max"] = 40.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1078455967", - ["text"] = "# to Level of all Cold Skill Gems", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 1.5, + ["max"] = 40.5, + }, + ["Wand"] = { + ["min"] = 1.5, + ["max"] = 40.5, + }, + ["1HWeapon"] = { + ["min"] = 1.5, + ["max"] = 40.5, }, - ["sign"] = "+", - }, - ["1567_ReducedShockChance"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, + }, + ["924_IntelligenceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + }, + ["AbyssJewel"] = { + ["min"] = 12, + ["max"] = 16, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 16, }, - ["sign"] = "", }, - ["1130_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["1145_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17751,1206 +18548,1269 @@ return { }, ["sign"] = "", }, - ["2262_FasterIgniteDamageMaven"] = { + ["5333_DeterminationReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["id"] = "explicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, + ["sign"] = "", }, - ["4893_DoubleDamageChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - }, - ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 14, + ["1367_ColdResistance"] = { + ["2HMace"] = { + ["min"] = 6, + ["max"] = 48, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { + ["sign"] = "+", + ["Dagger"] = { ["min"] = 6, - ["max"] = 7, + ["max"] = 48, }, - ["Shield"] = { + ["Bow"] = { ["min"] = 6, - ["max"] = 7, - }, - }, - ["2324_MinimumFrenzyChargesAndOnKillLose"] = { - ["specialCaseData"] = { + ["max"] = 48, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2142803347", - ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, - ["sign"] = "", - }, - ["1112_PoisonDurationChaosDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - }, - ["4240_AreaOfEffectPer50Strength"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2611023406", - ["text"] = "#% increased Area of Effect per 50 Strength", + ["1HSword"] = { + ["min"] = 6, + ["max"] = 48, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 3, + ["Wand"] = { + ["min"] = 6, + ["max"] = 48, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 3, + ["Staff"] = { + ["min"] = 6, + ["max"] = 48, }, - }, - ["1100_AddedFireDamageSpellsAndAttacks"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - }, - ["1939_ReducedReservation"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["Claw"] = { + ["min"] = 6, + ["max"] = 48, }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 14, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 48, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 14, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 48, }, - }, - ["1094_SelfFireAndColdDamageTaken"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Belt"] = { + ["min"] = 6, + ["max"] = 48, }, + }, + ["100_PercentageStrengthMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", + ["id"] = "explicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", }, - ["sign"] = "", - }, - ["7742_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3500359417", - ["text"] = "Minions Recover #% of their Life when you Focus", + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 100, - ["max"] = 100, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1644_TrapThrowSpeedOnWeapon"] = { - ["specialCaseData"] = { - }, + ["1838_SpellAddedColdDamageWhileHoldingAShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "explicit.stat_2671663397", + ["text"] = "# to # Added Spell Cold Damage while holding a Shield", }, - ["sign"] = "", - }, - ["1096_ColdDamagePhysConvertedToCold"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, + }, }, - ["8777_PointBlank"] = { - ["specialCaseData"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HSword"] = { + ["min"] = 15, + ["max"] = 79, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2896346114", - ["text"] = "Point Blank", + ["Wand"] = { + ["min"] = 15, + ["max"] = 79, }, - }, - ["1293_MaximumLifeIncreasePercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["2HMace"] = { + ["min"] = 15, + ["max"] = 79, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 15, + ["Staff"] = { + ["min"] = 15, + ["max"] = 79, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 15, + ["max"] = 79, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 15, + ["max"] = 79, }, - ["Belt"] = { - ["min"] = 3, - ["max"] = 10, + ["Claw"] = { + ["min"] = 15, + ["max"] = 79, + }, + ["2HSword"] = { + ["min"] = 15, + ["max"] = 79, }, - }, - ["2153_PercentDamageGoesToMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 15, + ["max"] = 79, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 79, }, - }, - ["941_PhysicalDamageOverTimePrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1692565595", - ["text"] = "#% increased Physical Damage over Time", + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 79, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 79, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, + ["min"] = 15, + ["max"] = 79, }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 134, + ["specialCaseData"] = { }, }, - ["2496_ChanceToFreezeShockIgniteProliferation"] = { + ["5720_GainAccuracyEqualToStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["328_IncreasedCastSpeedFasterCasting"] = { + ["4257_EnduranceChargeIfHitRecentlyMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["Chest"] = { + ["min"] = 3, + ["max"] = 3, }, ["sign"] = "", }, - ["5764_GainOnslaughtDuringSoulGainPrevention"] = { + ["8554_ChilledGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1572897579", - ["text"] = "You have Onslaught during Soul Gain Prevention", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_937372143", + ["text"] = "Unaffected by Chill", }, ["Boots"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8239_ManaCostBaseChannelled"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1178188780", - ["text"] = "Channelling Skills Cost # Mana", - }, - ["sign"] = "-", - }, - ["908_DexterityForJewel"] = { + ["1508_TotemLifeForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", }, ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 8, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 8, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 8, + ["max"] = 12, }, }, - ["144_AreaOfEffectSupported"] = { - ["specialCaseData"] = { + ["1756_ChanceToFreeze"] = { + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["Wand"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1602_ManaAndManaCostPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 7, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 7, + ["Staff"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["1453_DisplaySupportedByManaLeechMaven"] = { + ["4408_AttackImpaleChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, ["Gloves"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 13, + ["max"] = 20, }, ["sign"] = "", }, - ["1896_BeltReducedFlaskChargesUsed"] = { + ["5571_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { + ["BaseJewel"] = { + ["min"] = 250, + ["max"] = 300, + }, + ["1HSword"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["Bow"] = { + ["min"] = 1000, + ["max"] = 1000, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["Claw"] = { + ["min"] = 500, + ["max"] = 500, + }, + ["2HSword"] = { + ["min"] = 500, + ["max"] = 1000, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "explicit.stat_2935548106", + ["text"] = "# to Evasion Rating if Hit an Enemy Recently", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 250, + ["max"] = 300, + }, + ["AbyssJewel"] = { + ["min"] = 250, + ["max"] = 300, + }, + ["1HAxe"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["2HWeapon"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["1HWeapon"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["Dagger"] = { + ["min"] = 500, + ["max"] = 500, }, }, - ["924_TrapDamageOnWeapon"] = { + ["241_SupportedByLessDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_2487643588", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 25, }, ["sign"] = "", }, - ["1952_DegenDamageTaken"] = { + ["8758_CrimsonDance"] = { ["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_300702212", + ["text"] = "Crimson Dance", }, }, - ["1599_AreaOfEffectSupported"] = { + ["8775_Magebane"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 15, + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", }, - ["sign"] = "", }, - ["1875_MaximumMinionCount"] = { + ["4452_ChanceToAvoidProjectilesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 12, }, - ["sign"] = "+", }, - ["8775_TheAgnostic"] = { + ["1625_IncreaseManaCostFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_462691314", - ["text"] = "The Agnostic", + ["id"] = "explicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", }, + ["sign"] = "-", }, - ["6688_LocalChaosPenetration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3762412853", - ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["4249_CullingStrikeMaven"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["2HMace"] = { + ["min"] = 15, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 25, }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, + ["Staff"] = { + ["min"] = 15, + ["max"] = 25, }, - }, - ["7650_AddedFireDamageIfCritRecently"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 15, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3144358296", - ["text"] = "Adds # to # Fire Damage if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_1785568076", + ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", }, - ["Gloves"] = { - ["min"] = 19, - ["max"] = 37.5, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["Bow"] = { + ["min"] = 15, + ["max"] = 25, }, - ["sign"] = "", }, - ["1738_FireDamageAndChanceToIgnite"] = { + ["936_DamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + }, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["1084_FireDamageAndChanceToIgnite"] = { + ["1108_ColdDamageWeaponPrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 109, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 109, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 70, + ["min"] = 10, ["max"] = 109, }, - ["2HWeapon"] = { - ["min"] = 70, + ["Shield"] = { + ["min"] = 10, ["max"] = 109, }, }, - ["2145_PhysicalDamageTakenAsFireUberMaven"] = { + ["1762_AreaDamageAndAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["Amulet"] = { + ["min"] = 17, + ["max"] = 20, }, ["sign"] = "", }, - ["88_LocalIncreaseSocketedGemLevel"] = { + ["5547_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", + ["id"] = "explicit.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Chest"] = { + ["min"] = 200, + ["max"] = 200, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Belt"] = { + ["min"] = 200, + ["max"] = 200, }, }, - ["2149_PhysicalDamageTakenAsChaosUber"] = { + ["5280_DamageTakenGainedAsLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", }, - ["Chest"] = { - ["min"] = 5, + ["Ring"] = { + ["min"] = 4, ["max"] = 15, }, ["sign"] = "", }, - ["556_TriggerOnRarePoachersMark"] = { + ["5229_ReducedBurnDurationMaven"] = { ["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"] = "explicit.stat_430821956", + ["text"] = "#% increased Damage if you've been Ignited Recently", + }, + ["Helmet"] = { + ["min"] = 36, + ["max"] = 50, }, ["sign"] = "", }, - ["7655_AddedLightningDamageIfCritRecently"] = { + ["8780_PointBlank"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_935623115", - ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", }, + }, + ["925_StrengthAndDexterity"] = { ["Gloves"] = { - ["min"] = 21, - ["max"] = 45.5, + ["min"] = 31, + ["max"] = 35, + }, + ["Quiver"] = { + ["min"] = 31, + ["max"] = 35, }, - ["sign"] = "", - }, - ["926_MineDamageOnWeapon"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - }, - ["sign"] = "", - }, - ["1132_SpellAddedLightningDamageTwoHand"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 3.5, - ["max"] = 145, - }, - ["sign"] = "", - }, - ["1297_LifeDegenerationGracePeriod"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["Belt"] = { + ["min"] = 31, + ["max"] = 35, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", }, - ["sign"] = "", - }, - ["8769_Impaler"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 31, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1441799693", - ["text"] = "The Impaler", + ["Helmet"] = { + ["min"] = 31, + ["max"] = 35, }, - }, - ["4481_PhysicalDamageOverTimeTaken"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_511024200", - ["text"] = "#% reduced Physical Damage taken over time", + ["Ring"] = { + ["min"] = 31, + ["max"] = 35, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["Chest"] = { + ["min"] = 31, + ["max"] = 35, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 31, + ["max"] = 35, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 2, + ["Shield"] = { + ["min"] = 31, + ["max"] = 35, }, }, - ["6683_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1560880986", - ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["1853_EnduranceChargeOnKillChanceMaven"] = { + ["1HSword"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - }, - ["5226_DamagePer15Intelligence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3801128794", - ["text"] = "#% increased Damage per 15 Intelligence", - }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, ["sign"] = "", - }, - ["2326_MinimumPowerChargesAndOnKillLose"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 50, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2939195168", - ["text"] = "#% chance to lose a Power Charge on Kill", + ["Boots"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - }, - ["1532_MinimumPowerChargesAndOnKillLose"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 50, + ["max"] = 50, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", - }, - ["sign"] = "+", - }, - ["1650_PhysicalAddedAsCold"] = { - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 30, + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["1HMace"] = { + ["min"] = 50, + ["max"] = 50, }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 15, + ["Staff"] = { + ["min"] = 50, + ["max"] = 50, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 15, + ["1HAxe"] = { + ["min"] = 50, + ["max"] = 50, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 20, + ["min"] = 50, + ["max"] = 50, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["2HMace"] = { + ["min"] = 50, + ["max"] = 50, }, }, - ["2538_FishingPoolConsumption"] = { + ["1295_ArmourAndEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1550221644", - ["text"] = "#% reduced Fishing Pool Consumption", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 31, + ["max"] = 35, }, - ["sign"] = "", }, - ["1301_TwoHandWeaponSpellDamageAndMana"] = { + ["1277_ArmourAndEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - }, - ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 64, + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", }, ["sign"] = "+", - }, - ["1387_EnemyPhysicalDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3423022686", - ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["Belt"] = { + ["min"] = 365, + ["max"] = 400, }, - ["sign"] = "", }, - ["1831_SpellAddedPhysicalDamageWhileDualWielding"] = { + ["5125_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4255924189", - ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["min"] = 20, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["min"] = 20, + ["max"] = 30, }, }, - ["1297_BaseManaAndLifeDegenGracePeriod"] = { + ["4731_CorruptedBloodImmunity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", }, - ["sign"] = "", }, - ["1369_LifeLeechPermyriadForJewel"] = { + ["1629_SkillEffectDurationSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["AbyssJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, - }, - ["AnyJewel"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Boots"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["1106_AddedFireAndLightningDamage"] = { + ["1580_StrengthAndAvoidIgnite"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["Chest"] = { + ["min"] = 21, + ["max"] = 25, }, ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["min"] = 21, + ["max"] = 25, }, }, - ["1086_AddedFireAndLightningDamage"] = { + ["922_StrengthAndAvoidIgnite"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 19, + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 17, - ["max"] = 19, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 31, + ["max"] = 35, }, ["Shield"] = { - ["min"] = 17, - ["max"] = 19, + ["min"] = 31, + ["max"] = 35, }, }, - ["1840_FrenzyChargeOnKillChanceMaven"] = { - ["Gloves"] = { - ["min"] = 50, - ["max"] = 50, - }, + ["3039_IncreasedTwoHandedMeleeDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - }, - ["Quiver"] = { - ["min"] = 50, - ["max"] = 50, + ["id"] = "explicit.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 14, }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 14, }, }, - ["2153_ManaAndDamageTakenGoesToManaPercent"] = { + ["1099_FireDamagePercentagePrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 7, - ["max"] = 8, + ["min"] = 20, + ["max"] = 30, }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 8, + ["Belt"] = { + ["min"] = 16, + ["max"] = 30, }, }, - ["1301_ManaAndDamageTakenGoesToManaPercent"] = { + ["6697_CullingStrikeOnBleedingEnemiesUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["5618_PhysicalDamageTakenAsFireUberMaven"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["3071_PhysicalDamageAvoidance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", }, - ["Chest"] = { - ["min"] = 7, + ["Quiver"] = { + ["min"] = 5, ["max"] = 10, }, + ["specialCaseData"] = { + }, ["sign"] = "", + ["Shield"] = { + ["min"] = 5, + ["max"] = 10, + }, }, - ["1804_AddedColdDamageWithMaces"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_187418672", - ["text"] = "# to # Added Cold Damage with Mace or Sceptre Attacks", + ["976_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HSword"] = { + ["min"] = 120, + ["max"] = 139, }, - ["2HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Wand"] = { + ["min"] = 120, + ["max"] = 139, }, - ["AbyssJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["2HMace"] = { + ["min"] = 120, + ["max"] = 139, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HMace"] = { + ["min"] = 120, + ["max"] = 139, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Dagger"] = { + ["min"] = 120, + ["max"] = 139, }, - ["AnyJewel"] = { - ["min"] = 6.5, - ["max"] = 21.5, + ["Claw"] = { + ["min"] = 120, + ["max"] = 139, }, - }, - ["1302_PercentageLifeAndMana"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 120, + ["max"] = 139, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 10, + ["Bow"] = { + ["min"] = 120, + ["max"] = 139, }, - ["sign"] = "", - }, - ["8776_PainAttunement"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 120, + ["max"] = 139, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_98977150", - ["text"] = "Pain Attunement", + ["1HAxe"] = { + ["min"] = 120, + ["max"] = 139, }, - }, - ["7646_ColdDamageToAttacksPerDexterity"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 120, + ["max"] = 139, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_769783486", - ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["1HWeapon"] = { + ["min"] = 120, + ["max"] = 139, }, - ["sign"] = "", - }, - ["2867_PoisonDamageAndDuration"] = { ["specialCaseData"] = { }, + }, + ["1553_GainEnduranceChargeOnCritUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_2542650946", + ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 22, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1093_ColdDamageAndBaseChanceToFreeze"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 10, }, - ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["2145_PhysicalDamageTakenAsFirePercent"] = { - ["specialCaseData"] = { + ["2247_MeleeRangeAndMeleeGemLevel"] = { + ["Gloves"] = { + ["min"] = 2, + ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + }, + ["specialCaseData"] = { }, + ["sign"] = "+", ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", }, - ["5554_LifeRegenerationPerEvasionDuringFocus"] = { + ["1204_CriticalStrikeChanceWithBows"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3244118730", - ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", - }, - ["Chest"] = { - ["min"] = 1.5, - ["max"] = 1.5, + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 10, + ["max"] = 44, + }, }, - ["2325_MinimumPowerChargesAndOnKillChance"] = { + ["1280_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 42, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + ["Chest"] = { + ["min"] = 6, + ["max"] = 42, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 4, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, }, }, - ["1509_AdditionalPierce"] = { + ["1976_AdditionalTotems"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "explicit.stat_429867172", + ["text"] = "# to maximum number of Summoned Totems", }, - ["2HWeapon"] = { + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["118_MeleeRangeAndMeleeGemLevel"] = { + ["Gloves"] = { ["min"] = 2, ["max"] = 2, }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", + }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { + ["sign"] = "+", + ["Helmet"] = { ["min"] = 2, ["max"] = 2, }, - ["Boots"] = { - ["min"] = 2, - ["max"] = 5, - }, }, - ["4438_ChanceToAvoidProjectilesMaven"] = { + ["1124_LocalLightningDamageRanged"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 12, - }, }, - ["1532_MinimumPowerChargesAndOnKillChance"] = { + ["1503_MinionMovementSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 10, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, + ["sign"] = "", ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 6, + ["max"] = 30, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 10, }, }, - ["4467_FireExposureOnHit"] = { + ["8789_Solipsism"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + }, + }, + ["1124_LocalLightningDamageTwoHand"] = { + ["2HMace"] = { + ["min"] = 6, + ["max"] = 338, }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 338, }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 20, + ["Bow"] = { + ["min"] = 6, + ["max"] = 338, }, - }, - ["3157_ChanceToRecoverManaOnSkillUse"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 6, + ["max"] = 338, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_308309328", - ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, - ["sign"] = "", - }, - ["384_SocketedSkillsAttackSpeed"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 6, + ["max"] = 338, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2881124988", - ["text"] = "Socketed Skills have #% increased Attack Speed", + ["Staff"] = { + ["min"] = 6, + ["max"] = 338, }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 18, + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 338, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 338, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 338, + }, + ["1HSword"] = { + ["min"] = 6, + ["max"] = 338, }, - ["sign"] = "", }, - ["923_TotemDamageForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["1500_MinionDamageAndMinionMaximumLife"] = { + ["1HSword"] = { + ["min"] = 34, + ["max"] = 59, }, - ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Wand"] = { + ["min"] = 34, + ["max"] = 59, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 34, + ["max"] = 59, + }, + ["Staff"] = { + ["min"] = 34, + ["max"] = 59, + }, + ["1HMace"] = { + ["min"] = 34, + ["max"] = 59, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 34, + ["max"] = 59, }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["Claw"] = { + ["min"] = 34, + ["max"] = 59, + }, + ["2HSword"] = { + ["min"] = 34, + ["max"] = 59, }, - }, - ["4913_GainEnduranceChargeOnHittingBleedingEnemy"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1536266147", - ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 34, + ["max"] = 59, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["2HAxe"] = { + ["min"] = 34, + ["max"] = 59, + }, + ["1HAxe"] = { + ["min"] = 34, + ["max"] = 59, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 34, + ["max"] = 59, + }, + ["1HWeapon"] = { + ["min"] = 34, + ["max"] = 59, + }, + ["specialCaseData"] = { }, }, - ["5827_ChanceToIgniteAddedDamage"] = { + ["8304_SpellDamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_794830148", - ["text"] = "Adds # to # Fire Damage against Ignited Enemies", - }, - ["Ring"] = { - ["min"] = 28.5, - ["max"] = 42, + ["id"] = "explicit.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 20, + ["max"] = 35, + }, }, - ["170_ElementalDamagePrefixElementalFocus"] = { + ["1829_AddedLightningDamageWithSwords"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 27.5, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 27.5, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1169422227", - ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["id"] = "explicit.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, }, ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["min"] = 10, + ["max"] = 27.5, }, - ["sign"] = "", }, - ["1107_LightningDamagePhysConvertedToLightning"] = { - ["specialCaseData"] = { - }, + ["1174_IncreasedAccuracyPercentForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, }, - ["4466_ColdExposureOnHit"] = { + ["4480_ColdExposureOnHit"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 11, + ["max"] = 20, + }, ["tradeMod"] = { ["type"] = "explicit", ["id"] = "explicit.stat_2630708439", @@ -18958,1696 +19818,2062 @@ return { }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 20, + }, ["1HWeapon"] = { ["min"] = 11, ["max"] = 20, }, - ["2HWeapon"] = { + ["Wand"] = { ["min"] = 11, ["max"] = 20, }, }, - ["4720_CannotBeShockedOrIgnitedWhileMoving"] = { - ["specialCaseData"] = { - }, + ["1898_CurseEffectOnYouJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3592330380", - ["text"] = "Cannot be Shocked or Ignited while moving", + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["AbyssJewel"] = { + ["min"] = 25, + ["max"] = 30, }, - }, - ["5329_DisciplineReservationEfficiency"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 25, + ["max"] = 30, + }, + ["AnyJewel"] = { + ["min"] = 25, + ["max"] = 30, + }, + }, + ["3074_ColdDamageAvoidance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Quiver"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 5, + ["max"] = 10, + }, }, - ["341_DisplaySupportedByManaLeechMaven"] = { + ["1108_TwoHandColdDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", - }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 20, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["sign"] = "", }, - ["1400_EnemyLightningDamageLifeLeechPermyriad"] = { + ["128_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", }, - ["sign"] = "", + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", }, - ["1095_GlobalAddedColdDamage"] = { + ["2874_PoisonOnHitAndDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - }, - ["Gloves"] = { - ["min"] = 23, - ["max"] = 30, + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", }, ["sign"] = "", - }, - ["1651_PhysicalAddedAsLightning"] = { - ["1HWeapon"] = { - ["min"] = 7, + ["Quiver"] = { + ["min"] = 15, ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + }, + ["925_LocalAccuracyRatingStrengthDexterity"] = { + ["1HSword"] = { + ["min"] = 25, + ["max"] = 28, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 30, + ["Wand"] = { + ["min"] = 25, + ["max"] = 28, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 15, + ["2HMace"] = { + ["min"] = 25, + ["max"] = 28, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 25, + ["max"] = 28, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 15, + ["1HMace"] = { + ["min"] = 25, + ["max"] = 28, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 25, + ["max"] = 28, }, - }, - ["3757_DamageDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 28, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", }, - ["Gloves"] = { - ["min"] = 36, - ["max"] = 40, + ["Bow"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["1HAxe"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2856_FasterPoisonDamageMaven"] = { + ["2925_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", }, ["sign"] = "", ["Boots"] = { ["min"] = 10, - ["max"] = 20, + ["max"] = 12, }, }, - ["1346_FireResistanceAilments"] = { + ["1532_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 25, + ["max"] = 30, }, - ["sign"] = "+", }, - ["953_WeaponSpellDamageEfficacy"] = { + ["8589_SupportedByItemRarityUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_121185030", + ["text"] = "#% increased Rarity of Items found from Slain Unique Enemies", }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["Chest"] = { + ["min"] = 8, + ["max"] = 25, }, ["sign"] = "", }, - ["1301_ManaAndManaCostPercent"] = { + ["5152_CriticalStrikeMultiplierIfEnemySlainRecently"] = { + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 14, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2937483991", + ["text"] = "#% to Critical Strike Multiplier if you've Killed Recently", + }, + ["1HWeapon"] = { + ["min"] = 26, + ["max"] = 35, + }, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 14, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Amulet"] = { - ["min"] = 51, - ["max"] = 55, + ["Dagger"] = { + ["min"] = 26, + ["max"] = 35, }, - ["Ring"] = { - ["min"] = 51, - ["max"] = 55, + ["Claw"] = { + ["min"] = 26, + ["max"] = 35, }, }, - ["1619_StunRecovery"] = { - ["specialCaseData"] = { + ["217_ChanceToMaimSupported"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 28, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["specialCaseData"] = { }, }, - ["7986_PrideReservationEfficiency"] = { + ["1593_FasterIgniteDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", }, - ["Amulet"] = { + ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 20, + }, + }, + ["384_SocketedAttacksDamageFinal"] = { + ["Staff"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HMace"] = { + ["min"] = 20, + ["max"] = 40, + }, + ["1HSword"] = { ["min"] = 40, - ["max"] = 50, + ["max"] = 40, + }, + ["1HMace"] = { + ["min"] = 40, + ["max"] = 40, }, ["sign"] = "", - }, - ["5171_OLDAdditionalCurseOnEnemiesMaven"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["Claw"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 40, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", }, - ["Chest"] = { + ["Wand"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["2HAxe"] = { ["min"] = 20, - ["max"] = 20, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 40, + }, + ["1HWeapon"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["310_SupportedByCastOnCritWeapon"] = { + ["976_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["1594_ReducedBurnDurationMaven"] = { + ["7660_AddedLightningDamagePerShockedEnemyKilled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + ["id"] = "explicit.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", }, ["sign"] = "", }, - ["2992_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["1530_ProjectileDamageAndProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["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", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["Amulet"] = { + ["min"] = 23, + ["max"] = 25, }, ["sign"] = "", }, - ["1881_OLDAdditionalCurseOnEnemiesMaven"] = { + ["1290_LocalArmourAndEnergyShieldSuffix"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", }, ["sign"] = "", }, - ["1488_MinionRunSpeed"] = { + ["1146_SpellAddedColdSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, - ["Quiver"] = { - ["min"] = 15, - ["max"] = 30, + ["AbyssJewel"] = { + ["min"] = 7.5, + ["max"] = 27.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 7.5, + ["max"] = 27.5, }, }, - ["2232_MeleeWeaponAndUnarmedRange"] = { + ["256_TrapSpeedCooldownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", }, ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, - }, - ["sign"] = "+", - }, - ["1290_EnergyShieldRecoveryRate"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["specialCaseData"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 8, - ["max"] = 15, - }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 12, - }, }, - ["7653_FireDamageToAttacksPerStrength"] = { + ["263_SocketedTriggeredSkillsDoubleDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_68673913", - ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", }, - ["sign"] = "", }, - ["3950_AddedFireDamageIfBlockedRecently"] = { + ["5817_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3623716321", - ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + }, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2867_PoisonDamageSupported"] = { + ["2870_BleedDamageAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["Ring"] = { + ["min"] = 8, + ["max"] = 22, }, ["sign"] = "", }, - ["2262_IgniteChanceAndDamageMaven"] = { - ["specialCaseData"] = { + ["1674_ElementalDamagePercentAddedAsChaos"] = { + ["1HMace"] = { + ["min"] = 5, + ["max"] = 8, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 8, }, - ["Helmet"] = { + ["Staff"] = { ["min"] = 10, ["max"] = 15, }, - ["sign"] = "", - }, - ["1104_LightningDamageAndChanceToShock"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 70, - ["max"] = 109, - }, ["2HWeapon"] = { - ["min"] = 70, - ["max"] = 109, - }, - }, - ["1304_IncreasedManaAndRegen"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 5.3, - ["max"] = 5.3, - }, - ["Ring"] = { - ["min"] = 5.3, - ["max"] = 5.3, - }, - }, - ["5429_IncreasedWeaponElementalDamagePercentSupported"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - }, - ["specialCaseData"] = { + ["min"] = 10, + ["max"] = 15, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 37, + ["min"] = 5, + ["max"] = 8, }, - ["2HWeapon"] = { - ["min"] = 28, - ["max"] = 37, + ["Wand"] = { + ["min"] = 5, + ["max"] = 8, }, }, - ["1469_MaximumLifeOnKillPercentMaven"] = { + ["1478_LifeGainOnHitVsIgnitedEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 6, + ["id"] = "explicit.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", }, ["sign"] = "", }, - ["914_PercentageStrength"] = { + ["1108_TwoHandColdDamageWeaponPrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 12, + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 12, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 164, }, - ["Boots"] = { - ["min"] = 6, - ["max"] = 12, + ["Staff"] = { + ["min"] = 15, + ["max"] = 164, }, }, - ["1171_IncreasedCastSpeedSpellEcho"] = { + ["8244_ManaCostBaseNonChannelled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost # Mana", }, - ["sign"] = "", + ["sign"] = "-", }, - ["1093_TwoHandColdDamageWeaponPrefix"] = { + ["5332_DeterminationReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, + ["id"] = "explicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1881_AdditionalCurseOnEnemiesMaven"] = { + ["8367_StatusAilmentsYouInflictDurationWhileFocused"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 81, + ["max"] = 90, }, ["sign"] = "", }, - ["7663_AttackImpaleChanceMaven"] = { - ["specialCaseData"] = { - }, + ["1295_EvasionRatingAndEnergyShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1455766505", - ["text"] = "Adds # to # Physical Damage for each Impale on Enemy", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 3.5, + ["Quiver"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 31, + ["max"] = 35, }, - ["sign"] = "", }, - ["96_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["5599_LuckyCriticalsDuringFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", + ["id"] = "explicit.stat_1349659520", + ["text"] = "Your Critical Strike Chance is Lucky while Focused", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1543_GainPowerChargeOnKillingFrozenEnemy"] = { + ["1402_EnemyPhysicalDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3607154250", - ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["id"] = "explicit.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", }, ["sign"] = "", }, - ["1745_ShockChanceAndEffectMaven"] = { + ["3772_DamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Gloves"] = { + ["min"] = 36, + ["max"] = 40, }, ["sign"] = "", }, - ["961_CullingStrikeOnBleedingEnemiesUber"] = { + ["1726_ProjectileAttackDamage"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 38, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 49, - }, - ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 49, + ["Ring"] = { + ["min"] = 15, + ["max"] = 25, }, }, - ["1827_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { - ["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, + ["1803_AddedPhysicalDamageWithSwords"] = { + ["1HSword"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 29.5, + ["min"] = 2.5, + ["max"] = 9, }, - }, - ["6894_MalevolenceReservationEfficiency"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3383226338", - ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["AbyssJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["sign"] = "", - }, - ["2683_IncreasedAttackAndCastSpeedSupportedMaven"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, }, + }, + ["1173_IncreasedAccuracy"] = { ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 50, + ["max"] = 600, + }, + ["Quiver"] = { + ["min"] = 50, + ["max"] = 600, }, - ["sign"] = "", - }, - ["2665_NearbyEnemiesAreBlindedMaven"] = { ["specialCaseData"] = { }, + ["sign"] = "+", + ["AnyJewel"] = { + ["min"] = 31, + ["max"] = 300, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["AbyssJewel"] = { + ["min"] = 31, + ["max"] = 300, }, - }, - ["8029_PurityOfIceReservationEfficiency"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 50, + ["max"] = 600, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["Ring"] = { + ["min"] = 50, + ["max"] = 480, }, ["Amulet"] = { ["min"] = 50, - ["max"] = 60, + ["max"] = 480, }, - ["sign"] = "", - }, - ["387_DisplaySocketedSkillsFork"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["min"] = 50, + ["max"] = 480, }, + }, + ["184_WeaponSpellDamageEfficacy"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1519665289", - ["text"] = "Projectiles from Socketed Gems Fork", + ["id"] = "explicit.stat_3924539382", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["5466_EnemiesExplodeOnDeathPhysical"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, + }, }, - ["4915_GainEnduranceChargeOnTauntingEnemies"] = { + ["5240_DamagePer15Dexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1657549833", - ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", + ["id"] = "explicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 30, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["1130_SpellAddedFireDamage"] = { + ["4470_FireDamageESLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", }, - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 90.5, + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["sign"] = "", }, - ["4396_AddedColdDamagePerDexterity"] = { + ["1186_IncreasedCastSpeedTwoHandedKilledRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 3, - }, ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 15, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["7677_MinionAccuracyRating"] = { + ["2196_LocalChanceToBleed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, ["sign"] = "", }, - ["1096_ColdDamage"] = { - ["Gloves"] = { - ["min"] = 1.5, - ["max"] = 18.5, + ["1594_IncreasedAilmentDurationMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - }, - ["Quiver"] = { - ["min"] = 1.5, - ["max"] = 61.5, + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 13, + ["max"] = 15, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 31, - }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 31, - }, }, - ["4180_MaximumManaIncreasePercentMaven"] = { + ["1888_MaximumMinionCountAndMinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2571899044", - ["text"] = "Transfiguration of Mind", + ["id"] = "explicit.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", }, ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["5867_HatredReservationEfficiency"] = { - ["specialCaseData"] = { + ["6784_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2156140483", - ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["Wand"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 25, }, ["sign"] = "", - }, - ["1093_ColdDamageWeaponPrefix"] = { + ["Dagger"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 109, + ["min"] = 21, + ["max"] = 25, }, - ["Shield"] = { - ["min"] = 10, - ["max"] = 109, + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", }, }, - ["3987_PhysicalDamageReductionWhileNotMoving"] = { - ["specialCaseData"] = { + ["976_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HSword"] = { + ["min"] = 120, + ["max"] = 139, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", + ["Wand"] = { + ["min"] = 120, + ["max"] = 139, }, - ["sign"] = "", - }, - ["4171_AdditionalPhysicalDamageReductionWhileMoving"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 120, + ["max"] = 139, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2713357573", - ["text"] = "#% additional Physical Damage Reduction while moving", + ["Staff"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HMace"] = { + ["min"] = 120, + ["max"] = 139, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 3, - ["max"] = 5, + ["Dagger"] = { + ["min"] = 120, + ["max"] = 139, }, - }, - ["1106_GlobalAddedLightningDamage"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HSword"] = { + ["min"] = 120, + ["max"] = 139, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["Gloves"] = { - ["min"] = 24.5, - ["max"] = 30.5, + ["Bow"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HAxe"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HAxe"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HWeapon"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HWeapon"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1759_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["7788_MovementSpeedOnBurningChilledShockedGround"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 14, + ["id"] = "explicit.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", }, ["sign"] = "", }, - ["154_SupportedByCastOnDamageTaken"] = { + ["6740_StrengthAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3036440332", - ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 5, + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, + ["sign"] = "+", }, - ["1336_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skill Gems", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, - }, - ["specialCaseData"] = { + ["2338_FrenzyChargeOnKillChance"] = { + ["Gloves"] = { + ["min"] = 4, + ["max"] = 10, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Quiver"] = { + ["min"] = 4, + ["max"] = 10, }, - }, - ["1084_SpellAddedFireDamageHybrid"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - }, ["sign"] = "", - }, - ["1318_ItemFoundRarityIncreasePrefix"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 18, + ["Dagger"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["Claw"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 24, + ["Bow"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 28, + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 10, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 28, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Boots"] = { - ["min"] = 8, - ["max"] = 18, + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 10, }, }, - ["1350_MaximumColdResist"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 3, - }, + ["1410_ColdDamageLifeLeechPermyriad"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 0.3, + ["max"] = 0.5, + }, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, }, - ["1741_ColdDamageAndBaseChanceToFreeze"] = { + ["7578_MaximumEnergyShieldFromBodyArmour"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Body Armour", + }, + ["Ring"] = { + ["min"] = 20, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["Amulet"] = { + ["min"] = 20, + ["max"] = 30, }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 40, + ["Belt"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["8788_IronGrip"] = { + ["6896_MalevolenceReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_573347393", - ["text"] = "Iron Grip", + ["id"] = "explicit.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", }, + ["sign"] = "", }, - ["2232_MeleeDamageAndMeleeRange"] = { - ["Gloves"] = { - ["min"] = 2, - ["max"] = 4, + ["976_LocalPhysicalDamagePercentOnslaught"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, + ["sign"] = "", }, - ["5102_CriticalChanceIncreasedByUncappedLightningResistance"] = { + ["2465_RarityDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2478752719", - ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", }, + ["sign"] = "", }, - ["4889_CrushOnHitChance"] = { + ["311_TrapDamageMineSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2228892313", - ["text"] = "#% chance to Crush on Hit", + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + }, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["1704_SpellBlockPercentageMaven"] = { - ["specialCaseData"] = { + ["1634_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 6, + ["max"] = 17, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, }, - ["sign"] = "+", }, - ["2606_MinionElementalResistance"] = { + ["3956_ArmourAndEvasionRating"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_2316658489", + ["text"] = "# to Armour and Evasion Rating", + }, + ["Quiver"] = { + ["min"] = 365, + ["max"] = 400, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Ring"] = { - ["min"] = 11, - ["max"] = 30, - }, - ["Shield"] = { - ["min"] = 11, - ["max"] = 30, + ["Belt"] = { + ["min"] = 365, + ["max"] = 400, }, }, - ["5595_FasterPoisonDamage"] = { + ["140_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 8, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, + ["Wand"] = { + ["min"] = 5, + ["max"] = 8, }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["Staff"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 8, }, - }, - ["6695_CullingStrikeOnBleedingEnemiesUber"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2558253923", - ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 8, }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 5, + ["max"] = 8, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Shield"] = { + ["min"] = 5, + ["max"] = 8, }, }, - ["1058_IncreasedBowDamageForJewel"] = { + ["726_FlaskBuffAvoidIgnite"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", - }, - ["2HWeapon"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", }, - ["specialCaseData"] = { + ["Flask"] = { + ["min"] = 31, + ["max"] = 55, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 16, + }, + ["1319_BaseLifeAndManaRegen"] = { + ["Gloves"] = { + ["min"] = 5.3, + ["max"] = 5.3, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 16, + ["Quiver"] = { + ["min"] = 5.3, + ["max"] = 5.3, }, - }, - ["325_SupportedByFortifyWeapon"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Belt"] = { + ["min"] = 5.3, + ["max"] = 5.3, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 5.3, + ["max"] = 5.3, + }, + ["Helmet"] = { + ["min"] = 5.3, + ["max"] = 5.3, + }, + ["Amulet"] = { + ["min"] = 5.3, + ["max"] = 5.3, + }, + ["Boots"] = { + ["min"] = 5.3, + ["max"] = 5.3, }, - ["sign"] = "", }, - ["211_SupportedByOnslaughtWeapon"] = { + ["1306_BaseLifeAndManaRegen"] = { + ["Gloves"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Quiver"] = { + ["min"] = 55, + ["max"] = 60, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 55, + ["max"] = 60, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Onslaught", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Ring"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Helmet"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Amulet"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Boots"] = { + ["min"] = 55, + ["max"] = 60, }, - ["sign"] = "", }, - ["3982_IncreaseProjectileAttackDamagePerAccuracy"] = { + ["2620_MinionLifeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4157767905", - ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", }, - ["2HWeapon"] = { + ["Helmet"] = { ["min"] = 1, - ["max"] = 1, + ["max"] = 1.5, }, ["sign"] = "", }, - ["375_DisplaySupportedSkillsDealDamageOnLowLife"] = { + ["1297_LocalEnergyShieldPercentSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1235873320", - ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", }, ["sign"] = "", }, - ["5108_CriticalStrikeChanceIfKilledRecently"] = { + ["2447_SpellDamagePer10Intelligence"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 31, - ["max"] = 100, - }, ["2HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1235_ReducedCriticalStrikeDamageTaken"] = { + ["1320_BaseLifeAndManaDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", }, ["sign"] = "", }, - ["3073_LightningDamageTaken"] = { + ["1383_EnemyLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", + ["id"] = "explicit.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", }, ["sign"] = "", }, - ["5328_DisciplineReservation"] = { - ["specialCaseData"] = { - }, + ["1119_LightningDamageWeaponPrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - ["sign"] = "", - }, - ["1695_ElementalDamagePrefixElementalFocus"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 109, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["Wand"] = { + ["min"] = 10, + ["max"] = 109, }, - ["1HWeapon"] = { - ["min"] = 45, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1293_IncreasedLifeAndPercent"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 109, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["Shield"] = { + ["min"] = 10, + ["max"] = 109, }, - ["sign"] = "", }, - ["1470_MaximumEnergyShieldOnKillPercent"] = { - ["specialCaseData"] = { - }, + ["1582_IntelligenceAndAvoidShock"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 6, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["8109_ReflectDamageTaken"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["Shield"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "", }, - ["110_LocalIncreaseSocketedTrapGemLevel"] = { - ["specialCaseData"] = { + ["1321_SpellDamageAndManaRegenerationRate"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_407139870", - ["text"] = "# to Level of Socketed Trap Gems", + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 40, + }, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", - }, - ["6767_LifeGainPerBlindedEnemyHit"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 40, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 40, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1649099067", - ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 40, }, ["1HWeapon"] = { - ["min"] = 35, - ["max"] = 50, + ["min"] = 18, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 40, }, - ["sign"] = "", }, - ["7605_MovementSkillsFortifyOnHitChance"] = { + ["5344_DisciplineReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_59547568", - ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", + ["id"] = "explicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", }, - ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 50, + ["Amulet"] = { + ["min"] = 50, + ["max"] = 60, }, ["sign"] = "", }, - ["1301_IncreasedManaAndOnHit"] = { - ["specialCaseData"] = { - }, + ["2240_ConductivityOnHitLevel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", }, - ["sign"] = "+", - }, - ["111_IncreasedSocketedTrapOrMineGemLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["1306_LocalIncreasedEnergyShieldAndLife"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 26, + }, + ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_150668988", - ["text"] = "# to Level of Socketed Trap or Mine Gems", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, + }, + ["specialCaseData"] = { }, ["sign"] = "+", + ["Chest"] = { + ["min"] = 17, + ["max"] = 26, + }, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, + }, }, - ["891_SpellBlockPercentageMaven"] = { + ["1316_BaseManaAndLifeRegen"] = { + ["Gloves"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Quiver"] = { + ["min"] = 55, + ["max"] = 60, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 55, + ["max"] = 60, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["Ring"] = { + ["min"] = 55, + ["max"] = 60, }, ["Helmet"] = { - ["min"] = 5, - ["max"] = 6, + ["min"] = 55, + ["max"] = 60, + }, + ["Amulet"] = { + ["min"] = 55, + ["max"] = 60, + }, + ["Boots"] = { + ["min"] = 55, + ["max"] = 60, }, - ["sign"] = "", }, - ["376_SocketedGemsDealMoreElementalDamage"] = { + ["8791_IronGrip"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3835899275", - ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", }, - ["sign"] = "", }, - ["960_SpellAddedPhysicalDamageHybrid"] = { + ["956_PhysicalDamageOverTimePrefix"] = { + ["2HMace"] = { + ["min"] = 60, + ["max"] = 134, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 60, + ["max"] = 134, + }, + ["Bow"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["2HSword"] = { + ["min"] = 60, + ["max"] = 134, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + }, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["1HAxe"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 134, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["1HSword"] = { + ["min"] = 60, + ["max"] = 94, }, - ["sign"] = "", }, - ["1101_AddedColdDamageToSpellsAndAttacks"] = { + ["5817_GainVaalPactWhileFocused"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", }, - ["sign"] = "", }, - ["4752_CastSpeedDuringFlaskEffect"] = { + ["1579_AvoidFreezeAndChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 14, + ["Boots"] = { + ["min"] = 100, + ["max"] = 100, }, }, - ["4234_CullingStrikeMaven"] = { - ["Gloves"] = { - ["min"] = 15, - ["max"] = 25, + ["118_LocalIncreaseSocketedMeleeGemLevel"] = { + ["2HMace"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1785568076", - ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["id"] = "explicit.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 2, }, - ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 25, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 2, }, - }, - ["1751_CullingStrikeMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 2, }, ["2HWeapon"] = { ["min"] = 1, - ["max"] = 1, + ["max"] = 2, }, - ["Gloves"] = { + ["1HWeapon"] = { ["min"] = 1, - ["max"] = 1, + ["max"] = 2, + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["3914_MaximumEnduranceChargesMaven"] = { + ["732_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2713233613", - ["text"] = "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 10, + ["Flask"] = { + ["min"] = 50, + ["max"] = 50, }, + ["sign"] = "", }, - ["7679_MinionAttackSpeedAndCastSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["6690_LocalChaosDamagePenetrationHybrid"] = { + ["Staff"] = { + ["min"] = 4, + ["max"] = 6, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["2HMace"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Wand"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 6, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 16, + ["Claw"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1515_ProjectileSpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 4, + ["max"] = 6, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 10, - ["max"] = 46, + ["Bow"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1602_ManaCostReduction"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Ring"] = { + ["2HWeapon"] = { ["min"] = 4, ["max"] = 6, }, - ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["specialCaseData"] = { + }, }, - ["1116_PoisonDamageAddedChaosToAttacks"] = { + ["3456_LocalFireDamageAndPen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", }, ["sign"] = "", }, - ["1695_ElementalDamagePercentMaven"] = { + ["975_IncreasedChaosAndPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, - ["Helmet"] = { - ["min"] = 19, + ["Ring"] = { + ["min"] = 20, ["max"] = 22, }, ["sign"] = "", }, - ["1280_EnergyShieldAndDegenGracePeriod"] = { + ["1308_LifeAndEnergyShieldForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", }, - ["sign"] = "+", + ["sign"] = "", }, - ["6703_PowerChargeOnManaSpent"] = { - ["specialCaseData"] = { + ["1296_LocalBaseEnergyShieldAndLife"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3269060224", - ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 30, }, - }, - ["5006_ChillEffectSupported"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 8, + ["max"] = 30, }, - ["Helmet"] = { + ["Boots"] = { ["min"] = 8, - ["max"] = 20, + ["max"] = 30, }, - ["sign"] = "", }, - ["323_WeaponSpellDamageReducedMana"] = { + ["1099_IncreasedFireAndLightningDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["Ring"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", }, - ["4438_ChanceToAvoidProjectiles"] = { + ["1119_LocalLightningDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 12, - }, }, - ["2856_PoisonDurationChaosDamage"] = { - ["specialCaseData"] = { - }, + ["1542_MinimumFrenzyChargesAndOnKillChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", }, - ["sign"] = "", - }, - ["8025_PurityOfFireReservation"] = { ["specialCaseData"] = { }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["936_AllDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Ring"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["Belt"] = { + ["min"] = 11, + ["max"] = 25, + }, }, - ["202_SupportedByMaim"] = { + ["6276_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["id"] = "explicit.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", }, ["sign"] = "", }, - ["1570_AvoidStunAndElementalStatusAilments"] = { + ["4983_GlobalChaosGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "explicit.stat_67169579", + ["text"] = "# to Level of all Chaos Skill Gems", }, - ["Chest"] = { - ["min"] = 30, - ["max"] = 35, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["2992_EnemiesExplodeOnDeathPhysicalChance"] = { + ["322_IncreasedAttackSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["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", + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 30, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["6904_AddedManaRegenerationMaven"] = { + ["1316_IncreasedManaAndDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1193925814", - ["text"] = "Mana Flasks gain # Charge every 3 seconds", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1961_AdditionalTotems"] = { + ["4410_AddedColdDamagePerDexterity"] = { + ["1HSword"] = { + ["min"] = 2, + ["max"] = 3, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 4, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_429867172", - ["text"] = "# to maximum number of Summoned Totems", + ["id"] = "explicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Bow"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["Dagger"] = { + ["min"] = 2, + ["max"] = 3, }, }, - ["1563_AvoidFreezeAndChill"] = { + ["6740_LocalCriticalStrikeChanceAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, + ["sign"] = "+", }, - ["1562_AvoidStunAndElementalStatusAilments"] = { + ["1203_LocalCriticalStrikeChanceAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - }, - ["Chest"] = { - ["min"] = 30, - ["max"] = 35, + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, ["sign"] = "", }, - ["1578_FasterIgniteDamageMaven"] = { + ["1532_MovementVelocityAndOnslaughtOnKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", }, ["sign"] = "", ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["min"] = 25, + ["max"] = 30, }, }, - ["1650_ConvertPhysicalToColdMaven"] = { + ["1664_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { ["min"] = 3, ["max"] = 5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", }, ["Quiver"] = { ["min"] = 3, @@ -20657,323 +21883,221 @@ return { }, ["sign"] = "", }, - ["1293_PercentageLifeAndMana"] = { + ["2336_EnduranceChargeOnKillChance"] = { + ["2HMace"] = { + ["min"] = 4, + ["max"] = 10, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 9, + ["Staff"] = { + ["min"] = 4, ["max"] = 10, }, - ["sign"] = "", - }, - ["385_SocketedSkillsCastSpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 4, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3425934849", - ["text"] = "Socketed Skills have #% increased Cast Speed", + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 18, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 10, }, - ["sign"] = "", - }, - ["8288_AdditionalCriticalStrikeChanceWithSpells"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 4, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 0.5, - ["max"] = 2, + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 4, + ["max"] = 10, }, - ["sign"] = "+", }, - ["358_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["6740_LocalAccuracyRatingAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3984519770", - ["text"] = "Socketed Gems have #% chance to Ignite", + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, - ["sign"] = "", + ["sign"] = "+", }, - ["7661_AddedPhysicalDamageIfCritRecently"] = { - ["specialCaseData"] = { - }, + ["378_DisplaySocketedSkillsChain"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2723101291", - ["text"] = "Adds # to # Physical Damage if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 14, - }, - ["sign"] = "", - }, - ["1357_LightningResistancePhysTakenAsLightning"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - }, - ["sign"] = "+", - }, - ["201_LightningDamagePrefixLightningPenetration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3354027870", - ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, - }, - ["sign"] = "", - }, - ["5192_DamageWithBowSkills"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 5, - ["max"] = 50, - }, - }, - ["1188_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - }, ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, - }, - ["sign"] = "", - }, - ["4969_GlobalChaosGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_67169579", - ["text"] = "# to Level of all Chaos Skill Gems", + ["min"] = 1, + ["max"] = 1, }, - ["Amulet"] = { + ["Bow"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1442_EnergyShieldLeechPermyriad"] = { + ["2338_FrenzyChargeOnKillChanceMaven"] = { ["Gloves"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["min"] = 7, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["1HSword"] = { + ["min"] = 7, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 0.3, - ["max"] = 0.3, + ["Quiver"] = { + ["min"] = 7, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 0.3, - ["max"] = 0.3, - }, - ["Boots"] = { - ["min"] = 0.3, - ["max"] = 0.3, - }, - }, - ["8738_MinionLargerAggroRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_128585622", - ["text"] = "Minions are Aggressive", - }, - }, - ["1578_BurnDurationForJewel"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 7, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["Claw"] = { + ["min"] = 7, + ["max"] = 10, }, - ["sign"] = "", - }, - ["1703_BlockPercentMaven"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 7, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["Bow"] = { + ["min"] = 7, + ["max"] = 10, }, - ["sign"] = "+", - }, - ["5565_EvasionRatingWhileMoving"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_734823525", - ["text"] = "#% increased Evasion Rating while moving", + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 10, }, - ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 10, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 10, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 10, }, }, - ["7888_EnemiesBlockedAreIntimidated"] = { + ["6740_IntelligenceAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2930706364", - ["text"] = "Permanently Intimidate Enemies on Block", + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, + ["sign"] = "+", }, - ["953_WeaponSpellDamageReducedMana"] = { + ["2237_CurseLevel10VulnerabilityOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", }, ["sign"] = "", }, - ["5595_FasterPoisonDamageMaven"] = { + ["8644_WarcryAreaOfEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, - }, - }, - ["4753_CastSpeedIfEnemyKilledRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", }, - ["2HWeapon"] = { - ["min"] = 23, + ["Helmet"] = { + ["min"] = 26, ["max"] = 30, }, - ["1HWeapon"] = { - ["min"] = 13, - ["max"] = 20, - }, ["sign"] = "", }, - ["6781_LocalChanceToPoisonOnHitChaosDamage"] = { + ["924_IntelligenceAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", }, - ["sign"] = "", + ["sign"] = "+", }, - ["326_MineDamageSupported"] = { + ["246_ProjectileDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["id"] = "explicit.stat_1390285657", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", }, - ["Helmet"] = { - ["min"] = 18, + ["Gloves"] = { + ["min"] = 16, ["max"] = 25, }, ["sign"] = "", }, - ["308_BlindOnHitSupported"] = { + ["5568_EvasionIncreasedByUncappedColdResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", }, - ["sign"] = "", }, - ["1290_EnergyShieldRecoveryRateMaven"] = { + ["1293_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["Chest"] = { - ["min"] = 12, - ["max"] = 15, + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", }, ["sign"] = "", }, - ["1741_FreezeChanceAndDurationForJewel"] = { + ["1753_IgniteChanceAndDurationForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", }, ["AbyssJewel"] = { ["min"] = 3, @@ -20991,1197 +22115,1173 @@ return { ["max"] = 5, }, }, - ["4265_ArmourIncreasedByUncappedFireResistance"] = { + ["8246_SkillsCostNoManaWhileFocusedCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2129352930", - ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["id"] = "explicit.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", }, }, - ["971_GlobalDamageOverTimeMultiplier"] = { - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, - }, + ["5680_SkillsCostNoManaWhileFocusedCDR"] = { ["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, - }, - ["Amulet"] = { - ["min"] = 7, - ["max"] = 26, - }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 26, + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, + ["sign"] = "", }, - ["8759_ElementalEquilibrium"] = { + ["1890_MaximumMinionCountAndMinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", + ["id"] = "explicit.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["3091_CriticalChanceAgainstBlindedEnemies"] = { + ["229_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1939202111", - ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", - }, - ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["id"] = "explicit.stat_2513293614", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", }, ["sign"] = "", }, - ["3942_ElementalPenetrationDuringFlaskEffect"] = { - ["specialCaseData"] = { - }, + ["1787_GlobalFlaskLifeRecovery"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3392890360", - ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + }, + ["Ring"] = { + ["min"] = 20, + ["max"] = 30, }, - ["sign"] = "", - }, - ["1747_AreaDamageSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 20, + ["max"] = 30, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + ["Belt"] = { + ["min"] = 20, + ["max"] = 30, }, - ["sign"] = "", }, - ["1672_ConvertPhysicalToFire"] = { - ["Gloves"] = { - ["min"] = 18, - ["max"] = 35, - }, + ["2882_PoisonDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, - ["Quiver"] = { - ["min"] = 18, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["BaseJewel"] = { + ["min"] = 16, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 23, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["1950_ChaosDamageTakenPercentage"] = { + ["5610_FasterPoisonDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", + ["id"] = "explicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 11, + ["max"] = 15, + }, }, - ["4636_OnHitBlindChilledEnemies"] = { + ["151_LocalIncreaseSocketedLightningGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3450276548", - ["text"] = "Blind Chilled Enemies on Hit", + ["id"] = "explicit.stat_1065580342", + ["text"] = "#% to Quality of Socketed Lightning Gems", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 3, + ["max"] = 7, }, }, - ["1135_AddedLightningDamageSpellsAndAttacks"] = { + ["746_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + }, + ["Flask"] = { + ["min"] = 20, + ["max"] = 30, }, ["sign"] = "", }, - ["1460_LifeGainPerTargetForJewel"] = { + ["1411_EnemyColdDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, - }, }, - ["1460_LifeGainPerTarget"] = { + ["116_ProjectilePierceAndProjectileGemLevel"] = { ["Gloves"] = { ["min"] = 2, ["max"] = 2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "explicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { + ["sign"] = "+", + ["Helmet"] = { ["min"] = 2, - ["max"] = 4, + ["max"] = 2, }, - ["Ring"] = { - ["min"] = 2, + }, + ["6285_LightningAndChaosDamageResistance"] = { + ["Gloves"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Quiver"] = { + ["min"] = 16, ["max"] = 20, }, - }, - ["5108_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { ["specialCaseData"] = { }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 16, + ["max"] = 20, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3914638685", - ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["Boots"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - }, - ["953_WeaponSpellDamageArcaneSurge"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["Ring"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - }, - ["953_TwoHandWeaponSpellDamage"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["Amulet"] = { + ["min"] = 16, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, + ["Shield"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", }, - ["7694_MinionCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["5022_ColdAndChaosDamageResistance"] = { + ["Gloves"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% to Critical Strike Multiplier", + ["Quiver"] = { + ["min"] = 16, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 38, + ["specialCaseData"] = { }, ["sign"] = "+", - }, - ["8445_AddedFireBurningEnemies"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 16, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_165402179", - ["text"] = "# to # added Fire Damage against Burning Enemies", + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 31.5, - ["max"] = 47, + ["Boots"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["1522_MinimumEnduranceChargesAndOnKillChance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["Helmet"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Chest"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "+", ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 16, + ["max"] = 20, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Shield"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["8471_TailwindOnCriticalStrikeMaven"] = { - ["specialCaseData"] = { + ["3457_LocalColdDamagePenetrationHybrid"] = { + ["Dagger"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1085545682", - ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", + ["Bow"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 7, }, - }, - ["2162_BlockVsProjectiles"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3416410609", - ["text"] = "#% Chance to Block Projectile Attack Damage", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "+", - }, - ["1396_ColdResistanceEnemyLeech"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 7, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", }, - ["sign"] = "", - }, - ["125_IncreaseSocketedSupportGemQuality"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", - }, - ["sign"] = "+", - }, - ["1596_BurnDamage"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 26, - ["max"] = 40, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, ["2HWeapon"] = { - ["min"] = 31, - ["max"] = 60, + ["min"] = 5, + ["max"] = 7, }, - }, - ["2187_BleedingDamageChance"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", }, - ["8137_RemoveShockOnFlaskUse"] = { + ["5680_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", - }, - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - }, - ["994_PhysicalDamage"] = { ["Gloves"] = { - ["min"] = 1.5, + ["min"] = 5, ["max"] = 8, }, + ["sign"] = "", + }, + ["1282_EvasionRatingAndEnergyShield"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", }, ["Quiver"] = { - ["min"] = 2, - ["max"] = 31, + ["min"] = 365, + ["max"] = 400, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 1.5, - ["max"] = 20.5, - }, - ["Ring"] = { - ["min"] = 1.5, - ["max"] = 12, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 365, + ["max"] = 400, }, }, - ["347_PoisonDamageWeaponSupported"] = { - ["specialCaseData"] = { + ["4767_CastSpeedIfEnemyKilledRecently"] = { + ["Wand"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 23, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + }, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 23, + ["max"] = 30, }, ["1HWeapon"] = { - ["min"] = 18, + ["min"] = 13, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 13, ["max"] = 20, }, - ["sign"] = "", }, - ["3948_AddedColdDamagePerFrenzyCharge"] = { + ["1800_AddedPhysicalDamageWithDaggers"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["id"] = "explicit.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 10, + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AbyssJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Ring"] = { - ["min"] = 3, - ["max"] = 5.5, + ["Dagger"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AnyJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, }, - ["5318_DeterminationReservationEfficiency"] = { + ["4408_AttackImpaleChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, - ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["Gloves"] = { + ["min"] = 21, + ["max"] = 25, }, ["sign"] = "", }, - ["145_SupportedByArcaneSurge"] = { + ["1199_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 18, + ["max"] = 20, + }, }, - ["1459_LifeGainedOnSpellHit"] = { + ["606_FlaskFullRechargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2018035324", - ["text"] = "Gain # Life per Enemy Hit with Spells", - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 15, + ["id"] = "explicit.stat_2961372685", + ["text"] = "Recharges # Charge when you deal a Critical Strike", }, ["sign"] = "", }, - ["7675_MinionFlatAccuracyRating"] = { - ["specialCaseData"] = { + ["1760_LightningDamageAndChanceToShock"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["Claw"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 40, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1661151735", - ["text"] = "Minions have # to Accuracy Rating", + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + }, + ["Bow"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 40, }, ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 624, + ["min"] = 21, + ["max"] = 40, }, - ["sign"] = "+", - }, - ["879_SpellBlockPercentageOnLowLife"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2253286128", - ["text"] = "#% Chance to Block Spell Damage while on Low Life", + }, + ["1227_CriticalStrikeMultiplierSupported"] = { + ["2HMace"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["1HSword"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["1HMace"] = { + ["min"] = 22, + ["max"] = 29, }, ["sign"] = "+", - }, - ["960_PhysicalDamagePercentPrefix"] = { + ["Dagger"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["Claw"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["2HSword"] = { + ["min"] = 22, + ["max"] = 29, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 22, + ["max"] = 29, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["2HAxe"] = { + ["min"] = 22, + ["max"] = 29, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["1HAxe"] = { + ["min"] = 22, + ["max"] = 29, }, - }, - ["1284_EnergyShieldDelayForJewel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["2HWeapon"] = { + ["min"] = 22, + ["max"] = 29, }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["1HWeapon"] = { + ["min"] = 22, + ["max"] = 29, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1119_LightningDamageAndChanceToShock"] = { + ["1HSword"] = { + ["min"] = 70, + ["max"] = 109, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["Wand"] = { + ["min"] = 70, + ["max"] = 109, }, - }, - ["1567_AvoidShock"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["2HMace"] = { + ["min"] = 70, + ["max"] = 109, }, - ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + ["Staff"] = { + ["min"] = 70, + ["max"] = 109, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 70, + ["max"] = 109, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["Dagger"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Claw"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HSword"] = { + ["min"] = 70, + ["max"] = 109, }, - }, - ["86_PercentageDexterityMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 70, + ["max"] = 109, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["2HAxe"] = { + ["min"] = 70, + ["max"] = 109, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HWeapon"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HWeapon"] = { + ["min"] = 70, + ["max"] = 109, }, - }, - ["126_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { ["specialCaseData"] = { }, + }, + ["7945_ReducedPhysicalReflectTaken"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1325783255", - ["text"] = "#% to Quality of Socketed Active Skill Gems", + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Ring"] = { + ["min"] = 31, + ["max"] = 55, }, ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 100, + ["max"] = 100, }, - ["sign"] = "+", }, - ["5141_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["1530_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3992439283", - ["text"] = "#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 20, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 54, - ["max"] = 60, + ["min"] = 20, + ["max"] = 25, + }, + ["specialCaseData"] = { }, + ["sign"] = "", ["1HWeapon"] = { - ["min"] = 36, - ["max"] = 40, + ["min"] = 20, + ["max"] = 25, + }, + ["Bow"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "+", }, - ["1084_IncreasedFireAndLightningDamage"] = { + ["1591_ShockingConfluxMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 20, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 30, }, ["sign"] = "", }, - ["7821_IncreasedAilmentDurationMaven"] = { + ["1532_MovementVelocitySpellDodge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", - }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 15, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", }, ["sign"] = "", }, - ["2988_AttackSpeedDuringFlaskEffect"] = { - ["specialCaseData"] = { + ["927_LocalAttackSpeedDexterityIntelligence"] = { + ["1HSword"] = { + ["min"] = 25, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", + ["Wand"] = { + ["min"] = 25, + ["max"] = 28, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 14, + ["2HMace"] = { + ["min"] = 25, + ["max"] = 28, }, - }, - ["2570_AllFireDamageCanShock"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 25, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_932096321", - ["text"] = "Your Fire Damage can Shock", + ["1HMace"] = { + ["min"] = 25, + ["max"] = 28, }, - }, - ["8307_SpellDamagePer16Dexterity"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["Claw"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 28, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Bow"] = { + ["min"] = 25, + ["max"] = 28, }, - ["sign"] = "", - }, - ["4439_BleedDuration"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["1HAxe"] = { + ["min"] = 25, + ["max"] = 28, }, - ["sign"] = "", - }, - ["5317_DeterminationReservation"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 28, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2793_VaalSkillCriticalStrikeChance"] = { + ["7642_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["min"] = 80, - ["max"] = 120, + ["min"] = 25, + ["max"] = 28.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", }, ["Quiver"] = { - ["min"] = 80, - ["max"] = 120, + ["min"] = 25, + ["max"] = 28.5, }, ["specialCaseData"] = { }, ["sign"] = "", }, - ["936_DamageWhileHoldingAShieldForJewel"] = { + ["1199_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 22, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1393393937", - ["text"] = "#% increased Attack Damage while holding a Shield", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + }, + ["Quiver"] = { + ["min"] = 20, + ["max"] = 22, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, - ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 14, - }, }, - ["1136_IncreasedAttackSpeedSupported"] = { + ["238_TotemDamageAttackSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 14, + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 18, + ["max"] = 25, + }, }, - ["104_LocalIncreaseSocketedMinionGemLevel"] = { + ["5153_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["id"] = "explicit.stat_536929014", + ["text"] = "#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + }, + ["Ring"] = { + ["min"] = 27, + ["max"] = 30, }, ["sign"] = "+", }, - ["1575_ChillingConfluxMaven"] = { + ["1199_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, - ["Helmet"] = { + ["Ring"] = { ["min"] = 20, - ["max"] = 30, + ["max"] = 22, }, ["sign"] = "", }, - ["1131_SpellAddedColdDamageHybrid"] = { - ["specialCaseData"] = { - }, + ["5564_DodgeChanceDuringFocus"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + }, + ["specialCaseData"] = { + }, ["sign"] = "", + ["Helmet"] = { + ["min"] = 30, + ["max"] = 32, + }, + ["Boots"] = { + ["min"] = 30, + ["max"] = 32, + }, }, - ["1360_MaximumChaosResistance"] = { + ["8243_IncreasedManaAndCostNew"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have # to Total Mana Cost", }, + ["sign"] = "-", }, - ["3043_AngerAuraEffect"] = { + ["2336_MinimumEnduranceChargesAndOnKillChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 48, - ["max"] = 60, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 3, + ["max"] = 4, }, - ["1HWeapon"] = { - ["min"] = 28, - ["max"] = 40, + ["Ring"] = { + ["min"] = 3, + ["max"] = 4, }, - ["sign"] = "", }, - ["5594_FasterBleedDamageMaven"] = { - ["specialCaseData"] = { - }, + ["1158_AttackSpeedWithAShieldForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1273_LocalEvasionRatingIncreasePercentSuffix"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - }, ["sign"] = "", - }, - ["198_SupportedByItemRarityUnique"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3587013273", - ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["1690_MinionDamageOnWeaponAndMana"] = { + ["7655_GlobalAddedFireDamagePerEnduranceCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 39, + ["Ring"] = { + ["min"] = 3, + ["max"] = 5.5, }, ["sign"] = "", }, - ["2294_CurseEffectiveness"] = { - ["specialCaseData"] = { - }, + ["1110_AddedColdAndLightningDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", }, - }, - ["1159_LightRadiusAndAccuracyPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, ["specialCaseData"] = { }, ["sign"] = "", ["Ring"] = { - ["min"] = 9, - ["max"] = 20, + ["min"] = 17, + ["max"] = 19, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 20, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, }, }, - ["1224_OneHandCritMultiplierForJewel"] = { + ["7926_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_670153687", - ["text"] = "#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["id"] = "explicit.stat_1539825365", + ["text"] = "# to Armour during Soul Gain Prevention", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Chest"] = { + ["min"] = 3201, + ["max"] = 4000, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 18, + ["Shield"] = { + ["min"] = 3201, + ["max"] = 4000, }, }, - ["1212_CriticalMultiplierSupportedTwoHanded"] = { + ["1120_SelfFireAndLightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["2HWeapon"] = { - ["min"] = 22, - ["max"] = 29, + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1463_LifeGainOnHitVsIgnitedEnemies"] = { + ["1609_ReducedBurnDurationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_120895749", - ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + }, + ["Helmet"] = { + ["min"] = 51, + ["max"] = 60, }, ["sign"] = "", }, - ["2338_EnergyShieldRegenerationPerMinute"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, + ["1634_LocalEvasionAndEnergyShieldAndStunRecovery"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1679_PhysicalDamageConvertedToChaos"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 25, - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 25, - }, }, - ["876_ChanceToDodgeAndSpellDodge"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 6, + ["1611_IgniteChanceAndDamage"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", }, - ["sign"] = "+", ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 15, + ["max"] = 20, }, + ["sign"] = "", }, - ["2276_TotemSpeedSpellSupported"] = { + ["2557_FishingQuantity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "explicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, + ["FishingRod"] = { + ["min"] = 15, ["max"] = 20, }, + ["sign"] = "", }, - ["86_DelveDexterityGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, - }, + ["5454_ReducedElementalReflectTakenMaven"] = { ["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, - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["296_MineDamageTrapSupported"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", - }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 25, + ["min"] = 100, + ["max"] = 100, }, ["sign"] = "", }, - ["3738_OfferingEffect"] = { + ["1585_AvoidStunAndElementalStatusAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", }, ["Chest"] = { - ["min"] = 16, + ["min"] = 30, ["max"] = 35, }, ["sign"] = "", }, - ["4448_GlobalCooldownRecovery"] = { + ["5268_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["Gloves"] = { + ["min"] = 71, + ["max"] = 80, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["id"] = "explicit.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, - }, ["Boots"] = { - ["min"] = 6, - ["max"] = 20, + ["min"] = 71, + ["max"] = 80, }, }, - ["5097_CritChanceShockedEnemies"] = { + ["1542_MinimumFrenzyChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 30, - ["max"] = 45, + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", }, + ["sign"] = "+", }, - ["1549_CriticalMultiplierSupportedTwoHanded"] = { + ["126_IncreasedSocketedTrapOrMineGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_150668988", + ["text"] = "# to Level of Socketed Trap or Mine Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["875_SpellDamageSuppressed"] = { + ["8762_ElementalEquilibrium"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4116705863", - ["text"] = "Prevent #% of Suppressed Spell Damage", - }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", }, - ["sign"] = "+", }, - ["1665_ChaosDamageOverTimeTaken"] = { + ["1127_LocalChaosDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["sign"] = "", }, - ["1655_LightningAddedAsChaos"] = { + ["7745_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + }, + ["Gloves"] = { + ["min"] = 100, + ["max"] = 100, + }, + ["sign"] = "", + }, + ["1148_SpellAddedChaosDamage"] = { + ["Wand"] = { + ["min"] = 34, + ["max"] = 60, }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 34, + ["max"] = 60, + }, + ["Staff"] = { + ["min"] = 56, + ["max"] = 97.5, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + }, ["specialCaseData"] = { }, + ["Helmet"] = { + ["min"] = 20.5, + ["max"] = 50, + }, ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["min"] = 56, + ["max"] = 97.5, }, ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + ["min"] = 34, + ["max"] = 60, }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["1HMace"] = { + ["min"] = 34, + ["max"] = 60, }, }, - ["5452_ElusiveOnCriticalStrikeMaven"] = { - ["specialCaseData"] = { - }, + ["3073_FireDamageAvoidanceMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", }, - }, - ["2276_TotemSpeedAttackSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - }, ["sign"] = "", + ["Shield"] = { + ["min"] = 8, + ["max"] = 10, + }, ["Boots"] = { ["min"] = 8, - ["max"] = 20, + ["max"] = 10, }, }, - ["5665_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["5680_LuckyCriticalsDuringFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22190,1704 +23290,1800 @@ return { ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, ["sign"] = "", - ["Boots"] = { + ["Belt"] = { ["min"] = 5, ["max"] = 8, }, }, - ["1652_PhysicalAddedAsChaos"] = { + ["5775_MaximumFrenzyChargesMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["id"] = "explicit.stat_2119664154", + ["text"] = "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 10, + ["max"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 10, + }, + ["1109_SelfColdAndLightningDamageTaken"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 10, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", }, + ["sign"] = "", }, - ["5734_EnduranceChargeIfHitRecently"] = { + ["7661_LightningDamageToAttacksPerIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", }, ["sign"] = "", }, - ["8295_SpellsDoubleDamageChance"] = { + ["6226_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", + ["id"] = "explicit.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + }, + ["sign"] = "", + }, + ["1813_AddedFireDamageWithSwords"] = { + ["1HSword"] = { + ["min"] = 8, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 7, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 25, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 14, + ["2HSword"] = { + ["min"] = 8, + ["max"] = 25, }, - }, - ["944_ChaosDamageOverTimePrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_601272515", - ["text"] = "#% increased Chaos Damage over Time", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 94, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 134, + ["min"] = 8, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 25, }, }, - ["5697_GainRareMonsterModsOnKillChance"] = { + ["7569_FortifyEffectWhileFocused"] = { ["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", + ["id"] = "explicit.stat_922014346", + ["text"] = "# to maximum Fortification while Focused", }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 40, + ["Chest"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1935_ManaReservationEfficiency"] = { - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["1316_LocalBaseEnergyShieldAndMana"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["Helmet"] = { - ["min"] = 4, - ["max"] = 14, - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["min"] = 11, + ["max"] = 25, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 14, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 11, + ["max"] = 25, }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 3, + ["Boots"] = { + ["min"] = 11, + ["max"] = 25, }, }, - ["1586_SelfStatusAilmentDuration"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 30, + ["2196_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["Wand"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 30, + ["Staff"] = { + ["min"] = 21, + ["max"] = 25, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 21, + ["max"] = 25, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 30, - }, - }, - ["909_Intelligence"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 55, + ["Dagger"] = { + ["min"] = 21, + ["max"] = 25, }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 8, - ["max"] = 55, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 55, + ["Bow"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 55, + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 60, + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 21, + ["max"] = 25, }, ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 55, - }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 55, + ["min"] = 21, + ["max"] = 25, }, - }, - ["6281_ShockChanceAndEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3081816887", - ["text"] = "#% increased Effect of Lightning Ailments", - }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 15, - }, - ["sign"] = "", }, - ["1564_AvoidFreeze"] = { + ["4255_AreaOfEffectPer50Strength"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "explicit.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", }, - ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + ["2HMace"] = { + ["min"] = 3, + ["max"] = 3, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 3, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 3, + }, + ["1HMace"] = { + ["min"] = 3, + ["max"] = 3, }, }, - ["1272_IncreasedEvasionForJewel"] = { + ["1306_BaseLifeAndManaDegenGracePeriod"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["AbyssJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["sign"] = "+", + }, + ["1018_LocalPhysicalDamageTwoHanded"] = { + ["2HMace"] = { + ["min"] = 3, + ["max"] = 65.5, }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["2HAxe"] = { + ["min"] = 3, + ["max"] = 65.5, }, - ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["Staff"] = { + ["min"] = 3, + ["max"] = 65.5, }, - }, - ["316_ProjectileSpeedSupported"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 3, + ["max"] = 65.5, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", }, - ["sign"] = "", - }, - ["3946_NearbyEnemiesChilledOnBlock"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 65.5, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_583277599", - ["text"] = "Chill Nearby Enemies when you Block", + ["Bow"] = { + ["min"] = 3, + ["max"] = 65.5, }, }, - ["1362_MaximumResistances"] = { - ["specialCaseData"] = { - }, + ["3133_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_2355615476", + ["text"] = "#% to Critical Strike Multiplier against Enemies that are on Full Life", }, - }, - ["1306_ManaRegenerationMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 41, + ["max"] = 60, }, - ["Helmet"] = { - ["min"] = 56, - ["max"] = 70, + ["1HWeapon"] = { + ["min"] = 41, + ["max"] = 60, }, - ["sign"] = "", }, - ["914_PercentageStrengthMaven"] = { + ["233_PoisonDurationWeaponSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_2228279620", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 12, + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 9, - ["max"] = 12, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, }, - ["1265_LocalPhysicalDamageReductionRatingPercentSuffix"] = { + ["8146_RestoreManaAndEnergyShieldOnFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - }, - ["sign"] = "", - }, - ["4472_MinionDuration"] = { - ["specialCaseData"] = { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_999511066", - ["text"] = "#% increased Minion Duration", + ["Chest"] = { + ["min"] = 37, + ["max"] = 40, }, ["sign"] = "", }, - ["5177_CurseDuration"] = { - ["specialCaseData"] = { - }, + ["1108_ColdDamagePrefixColdPenetration"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["1HWeapon"] = { + ["min"] = 45, + ["max"] = 60, }, - ["sign"] = "", - }, - ["2649_BlindOnHitSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 45, + ["max"] = 60, }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["Wand"] = { + ["min"] = 45, + ["max"] = 60, }, - ["sign"] = "", }, - ["1596_IgniteChanceAndDamage"] = { - ["specialCaseData"] = { + ["1751_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HSword"] = { + ["min"] = 16, + ["max"] = 200, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["Wand"] = { + ["min"] = 16, + ["max"] = 200, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 20, + ["2HMace"] = { + ["min"] = 16, + ["max"] = 200, }, - ["sign"] = "", - }, - ["924_TrapDamageSupported"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 16, + ["max"] = 200, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["1HMace"] = { + ["min"] = 16, + ["max"] = 200, }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 200, + }, + ["Claw"] = { + ["min"] = 16, + ["max"] = 200, + }, + ["2HSword"] = { + ["min"] = 16, + ["max"] = 200, }, - ["sign"] = "", - }, - ["1084_FireDamagePercentage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 22, + ["Bow"] = { + ["min"] = 16, + ["max"] = 200, }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 26, + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 200, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 200, + }, + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 200, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["min"] = 16, + ["max"] = 200, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 30, + ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, }, - ["1517_MovementVelocityDodge"] = { - ["specialCaseData"] = { + ["8637_WarcryEffect"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", }, - ["sign"] = "", - }, - ["8032_PurityOfLightningReservationEfficiency"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 25, }, - ["Amulet"] = { - ["min"] = 50, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 25, + }, + ["Shield"] = { + ["min"] = 18, + ["max"] = 25, + }, }, - ["1485_MinionLifeSupported"] = { - ["specialCaseData"] = { + ["7850_GainEnduranceChargeWhileStationary"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 25, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["8028_PurityOfIceReservation"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1183_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["specialCaseData"] = { + ["398_DisplayMovementSkillsCostNoMana"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 82, + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1488_MinionMovementSpeed"] = { + ["1306_LocalIncreasedDefencesAndLife"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 26, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 6, - ["max"] = 30, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 17, + ["max"] = 26, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, }, }, - ["2325_PowerChargeOnKillChanceMaven"] = { + ["1597_StunDurationAndThresholdUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + }, + ["2HMace"] = { + ["min"] = 11, + ["max"] = 30, }, ["2HWeapon"] = { ["min"] = 11, - ["max"] = 15, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { ["min"] = 11, - ["max"] = 15, + ["max"] = 20, }, - ["Helmet"] = { + ["1HMace"] = { ["min"] = 11, - ["max"] = 15, + ["max"] = 20, }, }, - ["4456_FireDamageESLeech"] = { + ["332_SupportedByLifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3885409671", - ["text"] = "#% of Fire Damage Leeched as Energy Shield", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 20, + }, }, - ["8764_GhostDance"] = { + ["939_TrapDamageOnWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3590128077", - ["text"] = "Ghost Dance", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", }, + ["sign"] = "", }, - ["2439_LocalWeaponRangeUber"] = { + ["1676_LifeRegenerationAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_350598685", - ["text"] = "# to Weapon Range", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1361_ChaosResistancePrefix"] = { + ["2180_RecoverEnergyShieldPercentOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - }, - ["sign"] = "+", - }, - ["5439_ReducedElementalReflectTaken"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", }, ["sign"] = "", - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, - }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 55, + ["Shield"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["2145_FireResistancePhysTakenAsFire"] = { + ["1316_BaseLifeAndMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["883_BlockingBlocksSpellsUber"] = { + ["1306_BaseLifeAndMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, ["sign"] = "+", }, - ["1262_PhysicalDamageReductionRating"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - }, + ["6142_ImpaleEffect"] = { ["AnyJewel"] = { - ["min"] = 36, - ["max"] = 250, - }, - ["AbyssJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["min"] = 3, + ["max"] = 6, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 38, }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 36, - ["max"] = 250, + ["2HMace"] = { + ["min"] = 12, + ["max"] = 38, }, - ["Belt"] = { - ["min"] = 3, - ["max"] = 540, + ["Bow"] = { + ["min"] = 25, + ["max"] = 38, }, - }, - ["8797_IronWill"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 12, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4092697134", - ["text"] = "Iron Will", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 12, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 12, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 12, + ["max"] = 38, }, - }, - ["5110_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + ["id"] = "explicit.stat_298173317", + ["text"] = "#% increased Impale Effect", + }, + ["1HSword"] = { + ["min"] = 12, + ["max"] = 25, }, ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 3, + ["max"] = 6, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 12, + ["max"] = 25, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 30, + ["2HWeapon"] = { + ["min"] = 12, + ["max"] = 38, }, - }, - ["5553_EvasionIncreasedByUncappedColdResistance"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2358015838", - ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["specialCaseData"] = { }, }, - ["928_AttackDamage"] = { + ["6740_LocalAttackSpeedAndLocalItemQuality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_2016708976", + ["text"] = "#% to Quality", }, - ["sign"] = "", + ["sign"] = "+", }, - ["886_BlockingBlocksSpellsUber"] = { + ["1154_LocalAttackSpeedAndLocalItemQuality"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, ["sign"] = "", }, - ["1133_SpellAddedChaosDamage"] = { + ["1617_ManaAndManaCostPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - }, - ["2HWeapon"] = { - ["min"] = 56, - ["max"] = 97.5, + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 60, + ["Amulet"] = { + ["min"] = 6, + ["max"] = 7, }, - ["Helmet"] = { - ["min"] = 20.5, - ["max"] = 50, + ["Ring"] = { + ["min"] = 6, + ["max"] = 7, }, }, - ["1131_ColdDamageWeaponPrefixAndFlat"] = { - ["specialCaseData"] = { + ["1311_LifeRegeneration"] = { + ["Shield"] = { + ["min"] = 128.1, + ["max"] = 152, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", }, - ["sign"] = "", - }, - ["2601_MinionAttackAndCastSpeed"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["Chest"] = { + ["min"] = 128.1, + ["max"] = 176, }, ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 1, + ["max"] = 128, }, ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 128, + }, ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 1, + ["max"] = 128, }, }, - ["4125_FrenzyChargeWhenHit"] = { + ["1756_ChanceToFreezeForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_881914531", - ["text"] = "#% chance to gain a Frenzy Charge when Hit", - }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", }, ["sign"] = "", }, - ["1596_BurningDamageSupported"] = { + ["5241_DamagePer15Intelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["id"] = "explicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["4432_AilmentDamage"] = { - ["Quiver"] = { - ["min"] = 30, + ["5156_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["1HMace"] = { + ["min"] = 36, ["max"] = 40, }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 30, + ["Wand"] = { + ["min"] = 36, ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["Ring"] = { - ["min"] = 30, - ["max"] = 40, + ["2HMace"] = { + ["min"] = 54, + ["max"] = 60, }, - ["Amulet"] = { - ["min"] = 30, + ["1HSword"] = { + ["min"] = 36, ["max"] = 40, }, - ["AnyJewel"] = { - ["min"] = 15, - ["max"] = 20, - }, - }, - ["1610_IncreasedManaAndCost"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", - }, - ["sign"] = "-", - }, - ["1482_ManaGainedFromEnemyDeath"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 6, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 54, + ["max"] = 60, }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 6, + ["Staff"] = { + ["min"] = 54, + ["max"] = 60, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 54, + ["max"] = 60, }, - ["sign"] = "", ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", + ["id"] = "explicit.stat_3992439283", + ["text"] = "#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 6, + ["Claw"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["Dagger"] = { + ["min"] = 36, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 36, + ["max"] = 40, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 6, + ["min"] = 54, + ["max"] = 60, }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 6, + ["min"] = 36, + ["max"] = 40, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 6, + ["Bow"] = { + ["min"] = 54, + ["max"] = 60, }, }, - ["2974_DamagePerFrenzyCharge"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", + ["1753_FireDamageAndChanceToIgnite"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 40, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 8, + ["Wand"] = { + ["min"] = 21, + ["max"] = 40, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 40, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["Dagger"] = { + ["min"] = 21, + ["max"] = 40, }, - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Claw"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HSword"] = { + ["min"] = 21, + ["max"] = 40, }, - }, - ["388_SocketedSpellsDamageFinal"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2964800094", - ["text"] = "Socketed Skills deal #% more Spell Damage", + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 40, }, ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["min"] = 21, + ["max"] = 40, }, ["1HWeapon"] = { - ["min"] = 40, + ["min"] = 21, ["max"] = 40, }, - ["sign"] = "", + ["specialCaseData"] = { + }, }, - ["1703_MaximumBlockChance"] = { + ["2177_BlockVsProjectiles"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", - }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_3416410609", + ["text"] = "#% Chance to Block Projectile Attack Damage", }, ["sign"] = "+", }, - ["8726_ZealotryReservation"] = { - ["specialCaseData"] = { - }, + ["3951_MovementSpeedIfEnemySlainRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_168308685", - ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 4, + }, }, - ["1773_ManaRecoveryRateMaven"] = { + ["1760_ShockChanceAndEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", }, - ["1291_IncreasedLifeAndPercent"] = { - ["specialCaseData"] = { - }, + ["1316_TwoHandWeaponSpellDamageAndMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["specialCaseData"] = { }, ["sign"] = "+", - }, - ["1676_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["min"] = 22, - ["max"] = 25, + ["2HWeapon"] = { + ["min"] = 26, + ["max"] = 64, + }, + ["Staff"] = { + ["min"] = 26, + ["max"] = 64, }, + }, + ["671_FlaskPoisonImmunity"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["id"] = "explicit.stat_3596333054", + ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", }, - ["Quiver"] = { - ["min"] = 22, - ["max"] = 25, - }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["178_FireDamagePrefixFirePenetration"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3265951306", - ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["3247_AuraEffect"] = { + ["1306_LocalIncreasedEvasionAndLife"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 26, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["min"] = 17, + ["max"] = 26, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, }, }, - ["2867_PoisonOnHitAndDamage"] = { + ["402_DisplaySocketedSkillsFork"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 30, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1131_SpellAddedColdDamageUber"] = { + ["6917_ManaGainedOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 20.5, - ["max"] = 50, + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", }, ["sign"] = "", }, - ["1084_TwoHandFireDamageWeaponPrefix"] = { - ["specialCaseData"] = { + ["103_LocalIncreaseSocketedGemLevel"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 164, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["2867_PoisonDamageAndLocalChanceOnHit"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["8757_DivineShield"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2048995720", - ["text"] = "Divine Shield", + ["id"] = "explicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", }, - }, - ["1564_ChanceToAvoidFreezeAndChill"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["2222_CurseLevel10VulnerabilityOnHit"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2213584313", - ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", - }, - ["sign"] = "", }, - ["6212_LifeRecoveryRateMaven"] = { + ["341_MineDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 18, + ["max"] = 25, }, ["sign"] = "", }, - ["293_TrapDamageSupported"] = { + ["1147_TwoHandLightningDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 25, + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["sign"] = "", }, - ["6718_NearbyEnemyFireDamageResistance"] = { + ["894_SpellBlockPercentageOnLowLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3914021960", - ["text"] = "Nearby Enemies have #% to Fire Resistance", - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 12, + ["id"] = "explicit.stat_2253286128", + ["text"] = "#% Chance to Block Spell Damage while on Low Life", }, - ["sign"] = "-", + ["sign"] = "+", }, - ["1284_EnergyShieldDelay"] = { - ["Gloves"] = { - ["min"] = 27, - ["max"] = 66, + ["6679_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["Wand"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 66, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 25, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["1HMace"] = { + ["min"] = 21, + ["max"] = 25, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 27, - ["max"] = 66, - }, - ["Boots"] = { - ["min"] = 27, - ["max"] = 66, + ["Dagger"] = { + ["min"] = 21, + ["max"] = 25, }, - }, - ["7632_MineAreaOfEffect"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2228913626", - ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["2HSword"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "", - }, - ["6771_ChanceToMaimSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, - ["2HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["Bow"] = { + ["min"] = 21, + ["max"] = 25, }, - }, - ["8634_WarcryEffect"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 18, + ["min"] = 21, ["max"] = 25, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 18, + ["1HWeapon"] = { + ["min"] = 21, ["max"] = 25, }, + ["specialCaseData"] = { + }, }, - ["1899_BeltIncreasedFlaskDuration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["976_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HSword"] = { + ["min"] = 120, + ["max"] = 139, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["Wand"] = { + ["min"] = 120, + ["max"] = 139, }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["2HMace"] = { + ["min"] = 120, + ["max"] = 139, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HMace"] = { + ["min"] = 120, + ["max"] = 139, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 120, + ["max"] = 139, }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 33, + ["Claw"] = { + ["min"] = 120, + ["max"] = 139, }, - }, - ["5665_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 120, + ["max"] = 139, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 8, + ["Bow"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HAxe"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HAxe"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["2HWeapon"] = { + ["min"] = 120, + ["max"] = 139, + }, + ["1HWeapon"] = { + ["min"] = 120, + ["max"] = 139, }, - ["sign"] = "", - }, - ["1302_MaximumManaIncreasePercentMaven"] = { ["specialCaseData"] = { }, + }, + ["4174_PhysicalDamageReductionDuringFocus"] = { + ["Gloves"] = { + ["min"] = 13, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", }, + ["specialCaseData"] = { + }, + ["sign"] = "", ["Helmet"] = { - ["min"] = 12, + ["min"] = 13, ["max"] = 15, }, - ["sign"] = "", }, - ["373_SocketedGemsHaveMoreAttackAndCastSpeed"] = { - ["specialCaseData"] = { + ["5425_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["min"] = 27, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_346351023", - ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + }, + ["Quiver"] = { + ["min"] = 27, + ["max"] = 30, + }, + ["specialCaseData"] = { }, ["sign"] = "", }, - ["4886_SpellBlockChanceIfHitRecently"] = { + ["1199_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 22, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1101206134", - ["text"] = "#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["Quiver"] = { + ["min"] = 20, + ["max"] = 22, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["sign"] = "", + }, + ["1614_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["specialCaseData"] = { }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, + ["Chest"] = { + ["min"] = 8, + ["max"] = 12, }, + ["sign"] = "", }, - ["7575_MaximumEnergyShieldFromBodyArmour"] = { + ["1110_AddedFireAndColdDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1195319608", - ["text"] = "#% increased Energy Shield from Body Armour", + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 30, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["Ring"] = { + ["min"] = 17, + ["max"] = 19, }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, }, }, - ["8039_Quiver2AdditionalPierceOld"] = { + ["732_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", }, ["sign"] = "", }, - ["1132_LightningDamageWeaponPrefixAndFlat"] = { + ["3970_ElusiveOnCriticalStrikeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 11, + ["max"] = 20, + }, }, - ["218_PoisonDurationWeaponSupported"] = { + ["2729_MinionAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2228279620", - ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", - }, - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", }, ["sign"] = "", }, - ["1088_SelfFireDamageTaken"] = { - ["specialCaseData"] = { - }, + ["1121_AddedFireAndLightningDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2127433866", - ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + }, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 19, }, - ["sign"] = "", - }, - ["6295_PhysicalDamageTakenAsLightningUberMaven"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["Ring"] = { + ["min"] = 17, + ["max"] = 19, + }, + ["Shield"] = { + ["min"] = 17, + ["max"] = 19, + }, + }, + ["675_LocalManaFlaskHinderNearbyEnemies"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "explicit.stat_2313899959", + ["text"] = "Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 10, + ["AbyssJewel"] = { + ["min"] = 17, + ["max"] = 40, }, - ["sign"] = "", - }, - ["8745_Acrobatics"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_383557755", - ["text"] = "Acrobatics", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 17, + ["max"] = 40, + }, + ["AnyJewel"] = { + ["min"] = 17, + ["max"] = 40, }, }, - ["1355_MaximumLightningResistance"] = { + ["1306_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 26, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 26, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 3, + ["Chest"] = { + ["min"] = 17, + ["max"] = 26, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 3, + ["Boots"] = { + ["min"] = 17, + ["max"] = 26, }, }, - ["1649_PhysicalAddedAsFire"] = { - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 30, + ["2553_FishingPoolConsumption"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "explicit.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 20, + ["FishingRod"] = { + ["min"] = 15, + ["max"] = 30, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 15, + ["sign"] = "", + }, + ["968_TwoHandWeaponSpellDamage"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 15, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 164, }, - ["Boots"] = { - ["min"] = 3, - ["max"] = 11, + ["Staff"] = { + ["min"] = 15, + ["max"] = 164, }, }, - ["1202_OneHandedCritChanceForJewel"] = { + ["1126_LightningGemCastSpeedForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2381842786", - ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["id"] = "explicit.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 3, + ["max"] = 5, }, ["AnyJewel"] = { - ["min"] = 14, - ["max"] = 18, + ["min"] = 3, + ["max"] = 5, }, }, - ["1855_PowerChargeOnKillChanceMaven"] = { + ["1705_MinionDamageSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, - ["2HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["977_LocalArmourPenetration"] = { + ["1HMace"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["2HMace"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 13, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 50, + ["2HAxe"] = { + ["min"] = 13, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 50, - ["max"] = 50, + ["Staff"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 13, + ["max"] = 20, }, - }, - ["1599_SupportedBySpiritStrikeArea"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_3579673398", + ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 13, + ["max"] = 20, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["Dagger"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 13, + ["max"] = 20, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 15, + ["min"] = 13, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 13, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 13, + ["max"] = 20, }, }, - ["7785_MovementSpeedOnBurningChilledShockedGround"] = { + ["1108_SpellAddedColdDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1521863824", - ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, ["sign"] = "", }, - ["7566_FortifyEffectWhileFocused"] = { + ["2160_PhysicalDamageTakenAsFirePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_922014346", - ["text"] = "# to maximum Fortification while Focused", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, - ["Chest"] = { - ["min"] = 10, + ["Helmet"] = { + ["min"] = 9, ["max"] = 10, }, - ["sign"] = "+", + ["sign"] = "", }, - ["2223_CurseOnHitLevelElementalWeaknessMod"] = { - ["specialCaseData"] = { - }, + ["4964_ChaosResistanceAgainstDamageOverTime"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["id"] = "explicit.stat_2266636761", + ["text"] = "#% Chaos Resistance against Damage Over Time", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Quiver"] = { + ["min"] = 30, + ["max"] = 40, }, - }, - ["517_CurseOnHitCriticalWeakness"] = { ["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", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 30, + ["max"] = 40, + }, + ["Shield"] = { + ["min"] = 30, + ["max"] = 40, }, - ["sign"] = "", }, - ["5734_EnduranceChargeIfHitRecentlyMaven"] = { + ["1659_TrapSpeedCooldownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 20, }, ["sign"] = "", }, - ["2674_LightningResistancePenetration"] = { - ["Amulet"] = { - ["min"] = 4, + ["7818_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HMace"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 5, ["max"] = 10, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Claw"] = { + ["min"] = 5, + ["max"] = 5, }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 5, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", ["1HWeapon"] = { ["min"] = 5, - ["max"] = 8, + ["max"] = 5, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Bow"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["5504_EnchantmentWither"] = { + ["1316_ManaAndManaCostPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1032614900", - ["text"] = "Enemies Withered by you have #% to all Resistances", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["specialCaseData"] = { }, - ["sign"] = "-", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 51, + ["max"] = 55, + }, + ["Ring"] = { + ["min"] = 51, + ["max"] = 55, }, }, - ["1512_AdditionalArrows"] = { + ["1174_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["min"] = 12, + ["max"] = 30, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", }, ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 12, + ["max"] = 30, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, }, ["sign"] = "", + ["Ring"] = { + ["min"] = 6, + ["max"] = 30, + }, }, - ["2989_ChaosResistanceWhileUsingFlask"] = { + ["1101_GlobalAddedFireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_392168009", - ["text"] = "#% to Chaos Resistance during any Flask Effect", + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, + ["Gloves"] = { + ["min"] = 23, ["max"] = 30, }, + ["sign"] = "", }, - ["2859_PoisonOnHitAndDamage"] = { + ["6139_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_1766730250", + ["text"] = "You are Immune to Ailments while Focused", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 15, - ["max"] = 20, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["5006_AbyssJewelChillEffect"] = { + ["1417_ChaosDamageLifeLeechPermyriad"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "explicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["Amulet"] = { + ["min"] = 0.3, + ["max"] = 0.5, }, - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, }, - ["1833_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { + ["1532_MovementVelocityDodge"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2921084940", - ["text"] = "# to # Added Spell Physical Damage while wielding a Two Handed Weapon", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, - }, }, - ["1130_SpellAddedFireDamageHybrid"] = { + ["1372_LightningResistancePrefix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2605_MinionLifeMaven"] = { - ["specialCaseData"] = { - }, + ["898_SpellBlockAndBlockUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1.5, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 5, }, - ["sign"] = "", }, - ["7656_GlobalAddedLightningDamagePerPowerCharge"] = { + ["7659_GlobalAddedLightningDamagePerPowerCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23901,14739 +25097,32047 @@ return { }, ["sign"] = "", }, - ["1830_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { + ["362_PoisonDurationSupported"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2398198236", - ["text"] = "# to # Added Spell Lightning Damage while wielding a Two Handed Weapon", - }, - ["AbyssJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 25, + ["max"] = 25, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3.5, - ["max"] = 28.5, - }, }, - ["87_PercentageIntelligenceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", + ["5444_IncreasedWeaponElementalDamagePercentSupported"] = { + ["2HMace"] = { + ["min"] = 28, + ["max"] = 37, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 28, + ["max"] = 37, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["min"] = 28, + ["max"] = 37, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 28, + ["max"] = 37, + }, + ["Claw"] = { + ["min"] = 28, + ["max"] = 37, + }, + ["2HSword"] = { + ["min"] = 28, + ["max"] = 37, }, - }, - ["1283_EnergyShieldForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 28, + ["max"] = 37, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 28, + ["max"] = 37, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["1HAxe"] = { + ["min"] = 28, + ["max"] = 37, }, - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["2HWeapon"] = { + ["min"] = 28, + ["max"] = 37, + }, + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 37, + }, + ["specialCaseData"] = { }, }, - ["8549_BurningGroundEffectEffectiveness"] = { + ["1317_PercentageLifeAndMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 9, + ["max"] = 10, }, + ["sign"] = "", }, - ["5842_GraceReservation"] = { + ["1585_AvoidStunForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", }, ["sign"] = "", }, - ["1418_EnemyManaLeechPermyriad"] = { + ["1608_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_407390981", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + }, + ["Helmet"] = { + ["min"] = 51, + ["max"] = 60, }, ["sign"] = "", }, - ["4938_ChanceToIntimidateOnHit"] = { - ["specialCaseData"] = { + ["1108_ColdDamageAndBaseChanceToFreeze"] = { + ["1HSword"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Wand"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HMace"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Staff"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HMace"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Claw"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HSword"] = { + ["min"] = 70, + ["max"] = 109, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 10, + ["Bow"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HAxe"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HAxe"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HWeapon"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HWeapon"] = { + ["min"] = 70, + ["max"] = 109, }, - ["sign"] = "", - }, - ["1979_ReducedPhysicalDamageTakenMaven"] = { ["specialCaseData"] = { }, + }, + ["2509_FireLightningResistanceForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 4, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 12, }, - }, - ["317_SupportedByLifeLeech"] = { ["specialCaseData"] = { }, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 12, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 12, + }, + }, + ["1503_MinionRunSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + }, + ["Quiver"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { + ["Amulet"] = { ["min"] = 15, - ["max"] = 20, + ["max"] = 30, + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 30, }, }, - ["1644_TrapThrowSpeed"] = { + ["159_SupportedByIncreasedAreaOfEffectDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["Belt"] = { - ["min"] = 14, - ["max"] = 16, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["872_BlockPercent"] = { + ["2664_GlobalChanceToBlindOnHit"] = { ["Gloves"] = { - ["min"] = 2, - ["max"] = 5, + ["min"] = 4, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 9, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Quiver"] = { + ["min"] = 8, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["Chest"] = { + ["min"] = 4, + ["max"] = 6, }, ["Boots"] = { - ["min"] = 3, - ["max"] = 4, + ["min"] = 4, + ["max"] = 6, }, }, - ["1112_IncreasedChaosDamagePrefix"] = { + ["1361_FireResistanceAilments"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["specialCaseData"] = { + ["sign"] = "+", + }, + ["1124_LocalLightningDamagePenetrationHybrid"] = { + ["Staff"] = { + ["min"] = 24.5, + ["max"] = 99, + }, + ["1HSword"] = { + ["min"] = 13.5, + ["max"] = 53.5, + }, + ["2HMace"] = { + ["min"] = 13.5, + ["max"] = 99, + }, + ["Wand"] = { + ["min"] = 13.5, + ["max"] = 53.5, + }, + ["1HMace"] = { + ["min"] = 13.5, + ["max"] = 53.5, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["Dagger"] = { + ["min"] = 13.5, + ["max"] = 53.5, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["Claw"] = { + ["min"] = 13.5, + ["max"] = 53.5, + }, + ["2HSword"] = { + ["min"] = 13.5, + ["max"] = 99, }, - }, - ["921_AllDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 13.5, + ["max"] = 53.5, }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 20, - ["max"] = 23, + ["2HAxe"] = { + ["min"] = 13.5, + ["max"] = 99, }, - ["Belt"] = { - ["min"] = 11, - ["max"] = 25, + ["1HAxe"] = { + ["min"] = 13.5, + ["max"] = 53.5, + }, + ["2HWeapon"] = { + ["min"] = 13.5, + ["max"] = 99, + }, + ["1HWeapon"] = { + ["min"] = 13.5, + ["max"] = 53.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, }, - ["1690_MinionDamageOnWeaponDoubleDamage"] = { + ["1532_MovementVelocitySpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", }, ["sign"] = "", }, - ["1352_ColdResistancePhysTakenAsCold"] = { + ["1292_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1477_GainLifeOnBlock"] = { - ["specialCaseData"] = { + ["1386_LifeLeechLocalPermyriad"] = { + ["1HSword"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_762600725", - ["text"] = "# Life gained when you Block", + ["Wand"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["2HMace"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["Staff"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["1HMace"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 100, + ["Dagger"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, - }, - ["314_IncreasedAccuracyPercentSupported"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["2HSword"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["Bow"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, - ["sign"] = "", - }, - ["1130_SpellAddedFireDamageTwoHand"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["1HAxe"] = { + ["min"] = 0.2, + ["max"] = 1.2, }, ["2HWeapon"] = { - ["min"] = 2.5, - ["max"] = 121.5, + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["1HWeapon"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", }, - ["sign"] = "", }, - ["1334_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1762_AreaDamageForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skill Gems", + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 12, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 12, }, }, - ["1301_IncreasedManaAndDegenGracePeriod"] = { + ["129_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_4215039317", + ["text"] = "# to Level of Socketed Active Skill Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", }, - ["2856_PoisonDamageAndDuration"] = { + ["2207_AddedPhysicalDamageVsBleedingEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_1244003614", + ["text"] = "Adds # to # Physical Damage against Bleeding Enemies", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 10, + ["Gloves"] = { + ["min"] = 9.5, + ["max"] = 14.5, }, ["sign"] = "", }, - ["1873_MaximumMinionCountAndMinionLife"] = { + ["1484_MaximumLifeOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 5, + ["max"] = 6, }, - ["sign"] = "+", + ["sign"] = "", }, - ["130_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["1376_ChaosResistancePrefix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2062835769", - ["text"] = "#% to Quality of Socketed Chaos Gems", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 7, - }, }, - ["1649_FireDamageAsPortionOfDamage"] = { + ["1634_StunRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 11, + ["max"] = 28, + }, }, - ["1331_GlobalIncreasePhysicalSpellSkillGemLevel"] = { - ["tradeMod"] = { + ["7656_FireDamageToAttacksPerStrength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skill Gems", + ["id"] = "explicit.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", }, - ["sign"] = "+", + ["sign"] = "", + }, + ["6214_LifeRecoveryRateMaven"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", }, - ["Shield"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "", }, - ["6684_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["3171_ChanceToLoseManaOnSkillUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_768124628", - ["text"] = "#% chance for Poisons inflicted with this Weapon to deal 300% more Damage", + ["id"] = "explicit.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", }, ["sign"] = "", }, - ["1645_MineLayingSpeedOnWeapon"] = { + ["2277_FasterIgniteDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 11, + ["max"] = 15, + }, }, - ["192_CriticalStrikeChanceSupported"] = { + ["5124_ReducedShockEffectOnSelfMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["id"] = "explicit.stat_1434381067", + ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 45, + ["max"] = 75, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + }, + ["8201_ShockYourselfOnFocusCDR"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", }, + ["sign"] = "", }, - ["2855_BleedingDamageChanceWeaponSuffix"] = { + ["1116_AddedColdDamageToSpellsAndAttacks"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + }, + ["sign"] = "", + }, + ["1676_LifeRegenerationRatePercentage"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["BaseJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, + ["Quiver"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 21, - ["max"] = 50, - }, - ["2HWeapon"] = { - ["min"] = 21, - ["max"] = 50, + ["Boots"] = { + ["min"] = 1, + ["max"] = 2, }, - }, - ["4754_CastSpeedIfCriticalStrikeDealtRecently"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1174076861", - ["text"] = "#% increased Cast Speed if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + }, + ["AnyJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, }, ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 0.3, + ["max"] = 0.3, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 1, + ["max"] = 2, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["Chest"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["Amulet"] = { + ["min"] = 2.1, + ["max"] = 3, + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["2872_MovementSpeedDuringFlaskEffect"] = { + ["1150_AddedLightningDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", }, ["sign"] = "", - ["Belt"] = { - ["min"] = 6, - ["max"] = 10, - }, }, - ["3060_LightningDamageAvoidance"] = { + ["7680_MinionAccuracyRatingForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", }, - ["Quiver"] = { - ["min"] = 6, - ["max"] = 10, + ["AbyssJewel"] = { + ["min"] = 22, + ["max"] = 26, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["BaseJewel"] = { + ["min"] = 22, + ["max"] = 26, }, - ["Shield"] = { - ["min"] = 5, - ["max"] = 10, + ["AnyJewel"] = { + ["min"] = 22, + ["max"] = 26, }, }, - ["1745_ShockChanceAndDurationForJewel"] = { + ["1145_SpellAddedFireSuffix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 7.5, + ["max"] = 27.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, - ["max"] = 5, - }, ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 7.5, + ["max"] = 27.5, }, }, - ["1159_IncreasedAccuracyPercentSupported"] = { - ["specialCaseData"] = { - }, + ["1316_ManaAndDamageTakenGoesToManaPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 20, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", - }, - ["1640_TrapCooldownRecoveryAndDuration"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2001530951", - ["text"] = "#% increased Trap Duration", + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 51, + ["max"] = 55, }, - ["sign"] = "", - }, - ["978_PhysicalDamageOverTimeMultiplierWithAttacks"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 51, + ["max"] = 55, }, + }, + ["2621_MinionElementalResistance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_709768359", - ["text"] = "#% to Physical Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + }, + ["specialCaseData"] = { }, ["sign"] = "+", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, + ["Ring"] = { + ["min"] = 11, + ["max"] = 30, + }, + ["Shield"] = { + ["min"] = 11, + ["max"] = 30, }, }, - ["8796_ResoluteTechnique"] = { - ["specialCaseData"] = { + ["968_SpellDamageAndManaRegenerationRate"] = { + ["1HMace"] = { + ["min"] = 70, + ["max"] = 79, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3943945975", - ["text"] = "Resolute Technique", + ["Wand"] = { + ["min"] = 70, + ["max"] = 79, }, - }, - ["2976_ArcaneSurgeEffect"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 70, + ["max"] = 109, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", + ["1HSword"] = { + ["min"] = 70, + ["max"] = 79, }, - ["sign"] = "", - }, - ["1895_BeltIncreasedFlaskChargesGained"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - }, ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 40, + ["2HAxe"] = { + ["min"] = 70, + ["max"] = 109, }, - }, - ["2146_PhysicalDamageTakenAsColdUberMaven"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HSword"] = { + ["min"] = 70, + ["max"] = 109, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, - ["Chest"] = { - ["min"] = 16, - ["max"] = 18, + ["Claw"] = { + ["min"] = 70, + ["max"] = 79, + }, + ["Dagger"] = { + ["min"] = 70, + ["max"] = 79, + }, + ["1HAxe"] = { + ["min"] = 70, + ["max"] = 79, + }, + ["2HWeapon"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HWeapon"] = { + ["min"] = 70, + ["max"] = 79, + }, + ["Bow"] = { + ["min"] = 70, + ["max"] = 109, }, - ["sign"] = "", }, - ["1528_MaximumFrenzyChargesMaven"] = { + ["1266_LocalBaseWardAndLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "explicit.stat_774059442", + ["text"] = "# to Ward", }, ["sign"] = "+", }, - ["1522_MinimumEnduranceCharges"] = { + ["1548_IncreasedMaximumPowerChargesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", }, - ["sign"] = "+", - ["Shield"] = { + ["Helmet"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 1, }, + ["sign"] = "+", }, - ["328_IncreasedCastSpeedSupported"] = { + ["7989_PrideReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["id"] = "explicit.stat_3993865658", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, ["sign"] = "", }, - ["1112_ChaosDamageAndChaosSkillDuration"] = { + ["1295_EnergyShield"] = { + ["BaseJewel"] = { + ["min"] = 21, + ["max"] = 40, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 1, + ["max"] = 51, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 21, + ["max"] = 40, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["Ring"] = { + ["min"] = 1, + ["max"] = 47, }, - ["2HWeapon"] = { - ["min"] = 60, - ["max"] = 99, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 51, + }, + ["AnyJewel"] = { + ["min"] = 21, + ["max"] = 40, }, }, - ["1956_IncreasedShieldBlockPercentage"] = { + ["1583_AvoidBleedAndPoison"] = { ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4253454700", - ["text"] = "#% Chance to Block (Shields)", + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 15, + ["sign"] = "", + ["Boots"] = { + ["min"] = 41, + ["max"] = 70, }, }, - ["3116_MinionAttacksTauntOnHitChance"] = { + ["1280_LocalIncreasedArmourAndLife"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 28, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2911442053", - ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["Helmet"] = { + ["min"] = 24, + ["max"] = 28, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 3, - ["max"] = 8, + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["Boots"] = { + ["min"] = 24, + ["max"] = 28, }, }, - ["1272_GlobalEvasionRatingPercent"] = { + ["8028_PurityOfFireReservation"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, + ["sign"] = "", + }, + ["1530_SupportedByVolleySpeed"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 36, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 25, }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 15, + ["Wand"] = { + ["min"] = 15, + ["max"] = 25, }, }, - ["4439_FasterBleedDamageMaven"] = { + ["2160_PhysicalDamageTakenAsFireAndLightningPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 20, + ["Chest"] = { + ["min"] = 8, + ["max"] = 9, }, + ["sign"] = "", }, - ["1527_MinimumFrenzyCharges"] = { + ["1468_DisplaySupportedByManaLeechMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, + ["id"] = "explicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", }, - }, - ["1419_ManaLeechPermyriad"] = { ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["min"] = 20, + ["max"] = 30, }, + ["sign"] = "", + }, + ["2698_ChanceToGainOnslaughtOnKillMaven"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["min"] = 8, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.8, - }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Boots"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["4948_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { + ["2241_CurseOnHitDespairMod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_887556907", - ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + }, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1741_FreezeChanceAndDuration"] = { + ["356_DisplaySupportedByManaLeechMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 20, }, ["sign"] = "", }, - ["1478_GainManaOnBlock"] = { + ["1756_FreezeChanceAndDurationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", }, - ["4139_AdditionalBlockWith5NearbyEnemies"] = { - ["specialCaseData"] = { - }, + ["1245_FireCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1214532298", - ["text"] = "#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", + ["id"] = "explicit.stat_2307547323", + ["text"] = "#% to Critical Strike Multiplier with Fire Skills", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 2, - ["max"] = 5, + ["AbyssJewel"] = { + ["min"] = 15, + ["max"] = 18, }, - }, - ["5257_DamageRemovedFromManaBeforeLifeWhileFocused"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1588539856", - ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 18, }, - ["Chest"] = { - ["min"] = 18, - ["max"] = 22, + ["AnyJewel"] = { + ["min"] = 15, + ["max"] = 18, }, - ["sign"] = "", }, - ["1648_SelfPhysAsExtraFireTaken"] = { + ["7818_NonChaosAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_248982637", - ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + }, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 5, }, ["sign"] = "", }, - ["5287_DecayOnHit"] = { - ["specialCaseData"] = { - }, + ["1147_SpellAddedLightningDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3322709337", - ["text"] = "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + }, + ["1HWeapon"] = { + ["min"] = 2.5, + ["max"] = 96.5, + }, + ["Wand"] = { + ["min"] = 2.5, + ["max"] = 96.5, }, - }, - ["4490_DesecratedGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1953432004", - ["text"] = "Unaffected by Poison", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 2.5, + ["max"] = 96.5, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["min"] = 2.5, + ["max"] = 96.5, }, }, - ["1747_SupportedByIncreasedAreaOfEffectDamage"] = { - ["specialCaseData"] = { + ["1318_BaseManaRegeneration"] = { + ["Wand"] = { + ["min"] = 0.3, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 0.3, + ["max"] = 0.4, }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 37, + ["Staff"] = { + ["min"] = 0.7, + ["max"] = 0.8, }, - ["sign"] = "", - }, - ["5594_FasterBleedDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "explicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", }, - ["sign"] = "", ["specialCaseData"] = { }, + ["Helmet"] = { + ["min"] = 0.5, + ["max"] = 0.5, + }, ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 25, + ["min"] = 0.7, + ["max"] = 0.8, }, ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 15, + ["min"] = 0.3, + ["max"] = 0.4, }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["1HMace"] = { + ["min"] = 0.3, + ["max"] = 0.4, }, }, - ["1557_CannotBeFrozen"] = { + ["4226_AngerReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_876831634", - ["text"] = "Cannot be Frozen", - }, - }, - ["1264_GlobalPhysicalDamageReductionRatingPercent"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 4, - ["max"] = 36, - }, - ["Belt"] = { - ["min"] = 7, - ["max"] = 15, + ["min"] = 40, + ["max"] = 50, }, + ["sign"] = "", }, - ["883_PowerChargeOnBlockUber"] = { + ["4952_ChanceToIntimidateOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1778298516", - ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 10, }, - ["sign"] = "+", + ["sign"] = "", }, - ["1523_MaximumEnduranceCharges"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - }, + ["3965_AddedFireDamageIfBlockedRecently"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", }, + ["sign"] = "", }, - ["174_SupportedByEnhance"] = { + ["2277_IgniteChanceAndDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2556436882", - ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", }, - ["5235_IncreasedDamagePerPowerCharge"] = { + ["975_PhysicalDamagePercentPrefix"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["Amulet"] = { + ["min"] = 20, + ["max"] = 30, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 17, + ["Belt"] = { + ["min"] = 16, + ["max"] = 30, }, }, - ["1819_SpellAddedChaosDamageWhileDualWielding"] = { + ["888_BlockShieldForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1865428306", - ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["id"] = "explicit.stat_4061558269", + ["text"] = "#% Chance to Block Attack Damage while holding a Shield", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 20.5, + ["min"] = 1, + ["max"] = 1, }, }, - ["325_DisplaySocketedGemsSupportedByFortify"] = { - ["specialCaseData"] = { + ["1203_CriticalStrikeChanceSupported"] = { + ["2HMace"] = { + ["min"] = 22, + ["max"] = 29, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["1HSword"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["1HMace"] = { + ["min"] = 22, + ["max"] = 29, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 22, + ["max"] = 29, }, - }, - ["5439_ReducedElementalReflectTakenMaven"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["2HSword"] = { + ["min"] = 22, + ["max"] = 29, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + ["Wand"] = { + ["min"] = 22, + ["max"] = 29, }, - ["sign"] = "", - }, - ["1332_GlobalIncreaseFireSpellSkillGemLevel"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skill Gems", + ["2HAxe"] = { + ["min"] = 22, + ["max"] = 29, }, - ["sign"] = "+", - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 22, + ["max"] = 29, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["min"] = 22, + ["max"] = 29, }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 22, + ["max"] = 29, }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, }, - ["3245_ChanceForDoubleStunDuration"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", + ["324_SupportedByMeleeSplashDamage"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 25, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Claw"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - }, - ["2188_AbyssMinionAttacksBleedOnHitChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3998967779", - ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", }, - ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 15, + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["7942_ReducedPhysicalReflectTaken"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Ring"] = { - ["min"] = 31, - ["max"] = 55, + }, + ["1099_LocalFireDamageHybrid"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 100, - ["max"] = 100, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, + ["sign"] = "", }, - ["1674_ConvertPhysicalToColdMaven"] = { - ["Gloves"] = { - ["min"] = 22, - ["max"] = 25, + ["1500_MinionLifeMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - }, - ["Quiver"] = { - ["min"] = 22, - ["max"] = 25, + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 36, + ["max"] = 40, }, ["sign"] = "", }, - ["906_AllAttributes"] = { + ["2162_PhysicalDamageTakenAsLightningUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 35, + ["sign"] = "", + ["Helmet"] = { + ["min"] = 4, + ["max"] = 13, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 16, + ["Chest"] = { + ["min"] = 5, + ["max"] = 15, }, }, - ["2878_NoExtraDamageFromBleedMoving"] = { + ["120_LocalIncreaseSocketedAuraLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_935326447", - ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["id"] = "explicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", }, + ["sign"] = "+", }, - ["1517_MovementVelocity"] = { + ["7608_MovementSkillsFortifyOnHitChance"] = { + ["2HSword"] = { + ["min"] = 30, + ["max"] = 50, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 3, - ["max"] = 10, + ["id"] = "explicit.stat_59547568", + ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", }, ["specialCaseData"] = { }, + ["sign"] = "", ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 10, - }, - ["Boots"] = { - ["min"] = 10, - ["max"] = 35, + ["min"] = 30, + ["max"] = 50, }, }, - ["5760_MaximumFrenzyChargesMaven"] = { + ["8112_ReflectDamageTaken"] = { ["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", - }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "explicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", }, ["sign"] = "", }, - ["332_SupportedByLesserMultipleProjectilesDamage"] = { + ["1250_ReducedCriticalStrikeDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_584144941", - ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", }, ["sign"] = "", }, - ["1386_PhysicalDamageLifeLeechPermyriad"] = { + ["1865_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["id"] = "explicit.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 18, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 18, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 18, }, }, - ["8199_ShockNearbyEnemiesOnFocusCDR"] = { + ["6035_ShockChanceAndEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3031766858", - ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 4, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 50, }, ["sign"] = "", }, - ["2749_RecoverLifePercentOnBlock"] = { - ["specialCaseData"] = { + ["1314_LifeRegenerationRate"] = { + ["Gloves"] = { + ["min"] = 9, + ["max"] = 21, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 3, - ["max"] = 5, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 21, }, - }, - ["6173_GlobalIntelligenceGemLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_493812998", - ["text"] = "# to Level of all Intelligence Skill Gems", + ["sign"] = "", + ["Chest"] = { + ["min"] = 9, + ["max"] = 21, + }, + ["Boots"] = { + ["min"] = 9, + ["max"] = 21, }, - ["sign"] = "+", }, - ["2903_ChanceToBlockIfDamagedRecently"] = { + ["1246_LightningCritMultiplierForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_852195286", - ["text"] = "#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + ["id"] = "explicit.stat_2441475928", + ["text"] = "#% to Critical Strike Multiplier with Lightning Skills", }, ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 15, + ["max"] = 18, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, - }, ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 18, + }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 15, + ["max"] = 18, }, }, - ["5265_DamageTakenGainedAsLife"] = { - ["specialCaseData"] = { + ["1306_LocalBaseEnergyShieldAndLife"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 38, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 15, + ["Helmet"] = { + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "", - }, - ["923_TotemDamageAttackSupported"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 18, + ["max"] = 38, }, }, - ["1399_LightningResistanceLeech"] = { - ["specialCaseData"] = { + ["6689_LocalChanceToIntimidateOnHit"] = { + ["1HSword"] = { + ["min"] = 7, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["Wand"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["2HMace"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["Staff"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 7, + ["max"] = 15, }, ["sign"] = "", - }, - ["1361_ChaosResistance"] = { - ["Quiver"] = { - ["min"] = 5, - ["max"] = 35, + ["Dagger"] = { + ["min"] = 7, + ["max"] = 15, }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 7, + ["max"] = 15, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 5, - ["max"] = 35, + ["2HSword"] = { + ["min"] = 7, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 35, + ["Bow"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 15, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 35, + ["min"] = 7, + ["max"] = 15, }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 35, + ["min"] = 7, + ["max"] = 15, }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 35, + ["specialCaseData"] = { }, }, - ["2980_CriticalStrikeChanceAgainstPoisonedEnemies"] = { - ["specialCaseData"] = { + ["322_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1345659139", - ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 80, - ["max"] = 100, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - }, - ["2855_BleedingDamageSupported"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1594_ReducedBurnDuration"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 51, - ["max"] = 60, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["989_ChaosDamageOverTimeMultiplierWithAttacks"] = { + ["1361_FireResistancePrefix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3913282911", - ["text"] = "#% to Chaos Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, ["sign"] = "+", - ["Quiver"] = { - ["min"] = 16, - ["max"] = 25, - }, }, - ["1582_StunDurationForJewel"] = { + ["1198_SpellCriticalStrikeChance"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 109, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 109, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 109, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", }, - ["AbyssJewel"] = { + ["Wand"] = { ["min"] = 10, - ["max"] = 14, + ["max"] = 109, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { + ["2HWeapon"] = { ["min"] = 10, - ["max"] = 14, + ["max"] = 109, }, - ["AnyJewel"] = { + ["1HWeapon"] = { ["min"] = 10, - ["max"] = 14, + ["max"] = 109, }, - }, - ["113_LocalIncreaseSocketedSupportGemLevel"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["min"] = 10, + ["max"] = 109, }, + }, + ["3997_IncreaseProjectileAttackDamagePerAccuracy"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", + ["id"] = "explicit.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", }, - ["Chest"] = { + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["349_WeaponSpellDamageControlledDestruction"] = { + ["7891_EnemiesBlockedAreIntimidated"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3718597497", - ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", }, - ["sign"] = "", }, - ["909_IntelligenceAndAvoidShock"] = { + ["1547_MinimumPowerChargesAndOnKillChance"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "explicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Chest"] = { - ["min"] = 31, - ["max"] = 35, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Shield"] = { - ["min"] = 31, - ["max"] = 35, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["5743_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["1367_ColdResistanceLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3032585258", - ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 6, - ["max"] = 7, + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, + ["sign"] = "+", }, - ["1367_LifeLeech"] = { - ["specialCaseData"] = { + ["4931_AccuracyRatingPerFrenzyChargeUber"] = { + ["2HSword"] = { + ["min"] = 20, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["id"] = "explicit.stat_3769211656", + ["text"] = "#% chance to gain a Frenzy Charge when you Block", }, - ["sign"] = "", - }, - ["7622_MeleeWeaponRangeIfKilledRecently"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3255961830", - ["text"] = "# to Melee Strike Range if you have Killed Recently", + ["1HSword"] = { + ["min"] = 20, + ["max"] = 25, }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 3, + ["min"] = 20, + ["max"] = 25, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 3, + ["min"] = 20, + ["max"] = 25, }, }, - ["993_GlobalAddedPhysicalDamage"] = { - ["specialCaseData"] = { + ["1290_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 42, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", }, - ["Gloves"] = { - ["min"] = 7.5, - ["max"] = 9.5, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 42, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, + }, }, - ["233_SupportedBySpellCascadeArea"] = { + ["1947_CurseAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_503990161", - ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", - }, - ["1HWeapon"] = { - ["min"] = 16, - ["max"] = 20, + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", }, ["sign"] = "", }, - ["1357_LightningResistanceEnemyLeech"] = { + ["1486_MaximumManaOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", }, - ["sign"] = "+", + ["Chest"] = { + ["min"] = 5, + ["max"] = 6, + }, + ["sign"] = "", }, - ["7924_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { + ["1542_MinimumFrenzyCharges"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2368149582", - ["text"] = "# to Armour if you've Hit an Enemy Recently", - }, - ["2HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, - }, - ["AbyssJewel"] = { - ["min"] = 250, - ["max"] = 300, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 500, - ["max"] = 1000, - }, - ["AnyJewel"] = { - ["min"] = 250, - ["max"] = 300, + ["Shield"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["8771_LetheShade"] = { + ["5858_GraceReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1678358883", - ["text"] = "Lethe Shade", + ["id"] = "explicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + }, + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, + ["sign"] = "", }, - ["1599_AreaOfEffect"] = { - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 20, + ["1316_BaseManaAndLifeDegenGracePeriod"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - }, - ["Ring"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 15, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, + ["sign"] = "+", + }, + ["4002_PhysicalDamageReductionWhileNotMoving"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["Shield"] = { - ["min"] = 7, - ["max"] = 15, - }, - }, - ["1485_MinionDamageAndMinionMaximumLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 34, - ["max"] = 59, - }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 59, - }, }, - ["5502_EnchantmentMaim"] = { + ["4186_AdditionalPhysicalDamageReductionWhileMoving"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2745149002", - ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", - }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_2713357573", + ["text"] = "#% additional Physical Damage Reduction while moving", }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, + ["Boots"] = { + ["min"] = 3, ["max"] = 5, }, }, - ["2714_MinionAreaOfEffect"] = { + ["1418_EnemyChaosDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", }, ["sign"] = "", }, - ["2296_MarkEffect"] = { + ["1121_GlobalAddedLightningDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_803185500", - ["text"] = "#% increased Effect of your Marks", + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + }, + ["Gloves"] = { + ["min"] = 24.5, + ["max"] = 30.5, }, ["sign"] = "", }, - ["248_SocketedTriggeredSkillsDoubleDamage"] = { + ["1774_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4021083819", - ["text"] = "Socketed Triggered Skills deal Double Damage", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["Gloves"] = { + ["min"] = 13, + ["max"] = 14, }, + ["sign"] = "", }, - ["1133_IncreasedCastSpeedAddedChaos"] = { + ["1104_LocalFireDamageTwoHandAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, ["sign"] = "", }, - ["2629_PhysicalDamageAddedAsRandomElement"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["994_FireDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 25, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["2HMace"] = { + ["min"] = 24, + ["max"] = 48, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["1HMace"] = { + ["min"] = 14, + ["max"] = 38, }, - }, - ["8658_WrathReservationEfficiency"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 24, + ["max"] = 28, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3444518809", - ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["1HAxe"] = { + ["min"] = 24, + ["max"] = 28, }, ["Amulet"] = { - ["min"] = 40, - ["max"] = 50, + ["min"] = 11, + ["max"] = 25, }, - ["sign"] = "", - }, - ["7645_AddedColdDamageIfCritRecently"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 24, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3370223014", - ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["Wand"] = { + ["min"] = 14, + ["max"] = 38, }, - ["Gloves"] = { - ["min"] = 19, - ["max"] = 37.5, + ["Staff"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["2HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 24, + ["max"] = 48, }, - ["sign"] = "", - }, - ["2206_ManaRegenerationWhileShocked"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2076519255", - ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["2HWeapon"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 38, + }, + ["Dagger"] = { + ["min"] = 24, + ["max"] = 28, }, - ["sign"] = "", }, - ["372_SocketedAttacksManaCost"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have # to Total Mana Cost", + ["3456_LocalFirePenetration"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 15, }, - ["Shield"] = { - ["min"] = 15, + ["Wand"] = { + ["min"] = 9, ["max"] = 15, }, - ["Chest"] = { - ["min"] = 15, + ["2HMace"] = { + ["min"] = 9, ["max"] = 15, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "-", - ["Helmet"] = { - ["min"] = 15, + ["1HMace"] = { + ["min"] = 9, ["max"] = 15, }, - ["Boots"] = { - ["min"] = 15, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 9, ["max"] = 15, }, - }, - ["5024_PhysicalDamageTakenAsColdUberMaven"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 9, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 9, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 10, + ["Bow"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "", - }, - ["156_SupportedByCastWhileChannellingWeapon"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["min"] = 9, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 15, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["924_TrapDamageCooldownSupported"] = { + ["1306_IncreasedLifeForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Gloves"] = { + ["sign"] = "+", + }, + ["1753_ChanceToIgnite"] = { + ["2HWeapon"] = { ["min"] = 20, - ["max"] = 35, + ["max"] = 30, }, - ["sign"] = "", - }, - ["2181_ChanceToBleedSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { ["min"] = 10, - ["max"] = 15, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Staff"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["916_PercentageIntelligence"] = { + ["1994_ReducedPhysicalDamageTaken"] = { + ["Gloves"] = { + ["min"] = 4, + ["max"] = 8, + }, + ["Quiver"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 4, + ["max"] = 8, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", }, ["Helmet"] = { - ["min"] = 6, - ["max"] = 12, + ["min"] = 4, + ["max"] = 8, + }, + ["Chest"] = { + ["min"] = 4, + ["max"] = 8, + }, + ["Shield"] = { + ["min"] = 3, + ["max"] = 5, }, + }, + ["3960_PowerChargeOnBlock"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 12, + }, + ["2236_CurseOnHitLevelVulnerabilityMod"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + }, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1395_ColdResistanceLeech"] = { + ["7649_ColdDamageToAttacksPerDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "explicit.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", }, ["sign"] = "", }, - ["1395_ColdDamageLifeLeechPermyriad"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["Wand"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.3, - ["max"] = 0.5, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["Bow"] = { + ["min"] = 25, + ["max"] = 69, }, }, - ["8724_SpellsAdditionalUnleashSealMaven"] = { + ["1306_LocalBaseEvasionRatingEnergyShieldAndLife"] = { ["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"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, ["sign"] = "+", }, - ["909_IntelligenceForJewel"] = { + ["3467_MinionAddedPhysicalDamage"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "explicit.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", }, ["AbyssJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 3.5, + ["max"] = 32.5, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 12, - ["max"] = 16, - }, + ["sign"] = "", ["AnyJewel"] = { - ["min"] = 12, - ["max"] = 16, + ["min"] = 3.5, + ["max"] = 32.5, }, }, - ["5466_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["1316_IncreasedManaAndReservation"] = { ["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"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", + ["sign"] = "+", }, - ["383_DisplayMovementSkillsCostNoMana"] = { - ["specialCaseData"] = { - }, + ["976_CullingStrikeOnBleedingEnemiesUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3263216405", - ["text"] = "Socketed Movement Skills Cost no Mana", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 30, + ["max"] = 49, }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 30, + ["max"] = 49, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 30, + ["max"] = 49, + }, + ["1HAxe"] = { + ["min"] = 30, + ["max"] = 49, }, }, - ["2683_MovementVelocityAndOnslaughtOnKill"] = { + ["1583_MovementVelocitySpellDodge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, - }, }, - ["1619_StunRecoveryForJewel"] = { + ["1822_AddedColdDamageWithWands"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["id"] = "explicit.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + }, + ["Wand"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["AbyssJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["min"] = 6.5, + ["max"] = 21.5, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, }, ["AnyJewel"] = { - ["min"] = 25, - ["max"] = 35, + ["min"] = 6.5, + ["max"] = 21.5, }, }, - ["518_CurseOnHitPoachersMark"] = { + ["1673_ChaosDamageAsPortionOfFireDamage"] = { ["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"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", }, ["sign"] = "", }, - ["7658_LightningDamageToAttacksPerIntelligence"] = { - ["specialCaseData"] = { - }, + ["1316_WeaponSpellDamageAndMana"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3168149399", - ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", - }, - ["975_PhysicalDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 45, }, - ["BaseJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 17, + ["max"] = 45, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Dagger"] = { + ["min"] = 17, + ["max"] = 45, + }, + ["1HMace"] = { + ["min"] = 17, + ["max"] = 45, + }, + }, + ["1113_LocalColdDamage"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["1HSword"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 150, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, - ["AbyssJewel"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 150, + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 150, }, ["2HWeapon"] = { - ["min"] = 24, - ["max"] = 75, + ["min"] = 2, + ["max"] = 150, }, ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 48, + ["min"] = 2, + ["max"] = 150, }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, }, - ["8599_VaalSoulCost"] = { + ["2806_VaalSkillDuration"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_678245679", - ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", + ["id"] = "explicit.stat_547412107", + ["text"] = "#% increased Vaal Skill Effect Duration", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 40, - ["max"] = 40, - }, }, - ["1108_SelfLightningDamageTaken"] = { + ["2341_MinimumPowerChargesAndOnKillLose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2491363440", - ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["id"] = "explicit.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", }, ["sign"] = "", }, - ["4310_AdditionalChanceToEvadeMaven"] = { - ["specialCaseData"] = { - }, + ["2213_LightRadiusAndAccuracyPercent"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_223937937", - ["text"] = "#% increased Attack and Cast Speed if you haven't been Hit Recently", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["specialCaseData"] = { }, ["sign"] = "", + ["Helmet"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["Ring"] = { + ["min"] = 5, + ["max"] = 15, + }, }, - ["4227_ArcticArmourReservationCost"] = { + ["7927_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { + ["BaseJewel"] = { + ["min"] = 250, + ["max"] = 300, + }, + ["2HMace"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["AnyJewel"] = { + ["min"] = 250, + ["max"] = 300, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 500, + ["max"] = 1000, + }, + ["Staff"] = { + ["min"] = 1000, + ["max"] = 1000, + }, + ["2HSword"] = { + ["min"] = 500, + ["max"] = 1000, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["id"] = "explicit.stat_2368149582", + ["text"] = "# to Armour if you've Hit an Enemy Recently", + }, + ["1HMace"] = { + ["min"] = 500, + ["max"] = 1000, }, - ["sign"] = "", - }, - ["1565_AvoidIgnite"] = { ["AbyssJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["min"] = 250, + ["max"] = 300, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["1HAxe"] = { + ["min"] = 500, + ["max"] = 1000, }, - ["AnyJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["2HWeapon"] = { + ["min"] = 500, + ["max"] = 1000, }, - ["Quiver"] = { - ["min"] = 51, - ["max"] = 80, + ["1HWeapon"] = { + ["min"] = 500, + ["max"] = 1000, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 500, + ["max"] = 1000, + }, + }, + ["2684_ArmourPenetration"] = { + ["1HMace"] = { + ["min"] = 7, + ["max"] = 10, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 31, - ["max"] = 50, + ["Dagger"] = { + ["min"] = 7, + ["max"] = 10, }, - ["Boots"] = { - ["min"] = 51, - ["max"] = 80, + ["Staff"] = { + ["min"] = 13, + ["max"] = 20, }, - }, - ["158_ChanceToBleedSupported"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["id"] = "explicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", }, - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 8, + ["max"] = 15, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["Wand"] = { + ["min"] = 7, + ["max"] = 10, }, ["2HWeapon"] = { - ["min"] = 18, + ["min"] = 13, ["max"] = 20, }, - }, - ["1368_EnemyLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2693705594", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["4454_ColdDamageESLeech"] = { + ["1885_IncreasedLifeLeechRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1939452467", - ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.4, + ["Ring"] = { + ["min"] = 35, + ["max"] = 50, }, ["sign"] = "", }, - ["96_LocalIncreaseSocketedChaosGemLevel"] = { + ["7682_MinionAttackSpeedAndCastSpeed"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + }, + ["Ring"] = { + ["min"] = 5, + ["max"] = 16, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 25, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 2, + ["Wand"] = { + ["min"] = 5, + ["max"] = 25, }, }, - ["3449_MinionAddedColdDamage"] = { + ["6897_MalevolenceReservationEfficiency"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3152982863", - ["text"] = "Minions deal # to # additional Cold Damage", - }, - ["AbyssJewel"] = { - ["min"] = 5.5, - ["max"] = 43, + ["id"] = "explicit.stat_3383226338", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", }, - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 40, + ["max"] = 50, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 5.5, - ["max"] = 43, - }, }, - ["321_IncreasedWeaponElementalDamagePercentSupported"] = { + ["624_FlaskIncreasedRecoveryOnLowLife"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + }, + ["AbyssJewel"] = { + ["min"] = 101, + ["max"] = 130, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 101, + ["max"] = 130, }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 101, + ["max"] = 130, }, }, - ["1111_LightningGemCastSpeedForJewel"] = { + ["898_PowerChargeOnBlockUber"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1788635023", - ["text"] = "#% increased Cast Speed with Lightning Skills", - }, - ["AbyssJewel"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "explicit.stat_1778298516", + ["text"] = "#% Chance to Block Attack Damage while wielding a Staff", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 3, + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 5, ["max"] = 5, }, - ["AnyJewel"] = { - ["min"] = 3, + ["Staff"] = { + ["min"] = 5, ["max"] = 5, }, }, - ["1291_BaseLifeAndManaDegenGracePeriod"] = { + ["125_LocalIncreaseSocketedTrapGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_407139870", + ["text"] = "# to Level of Socketed Trap Gems", }, ["sign"] = "+", }, - ["8143_RestoreManaAndEnergyShieldOnFocus"] = { + ["1485_MaximumEnergyShieldOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2992263716", - ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", }, ["Chest"] = { - ["min"] = 37, - ["max"] = 40, + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", }, - ["1578_IgnitingConfluxMaven"] = { - ["specialCaseData"] = { + ["334_CriticalStrikeMultiplierSupported"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 30, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - }, - ["1171_IncreasedCastSpeedFasterCasting"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - ["1HWeapon"] = { - ["min"] = 15, + ["Claw"] = { + ["min"] = 18, ["max"] = 20, }, - ["sign"] = "", - }, - ["8634_WarcryAreaOfEffectMaven"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 15, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1093_ColdDamagePercentagePrefix"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Belt"] = { - ["min"] = 16, - ["max"] = 30, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["102_LocalIncreaseSocketedBowGemLevel"] = { ["specialCaseData"] = { }, + }, + ["4257_AreaOfEffectPerEnduranceCharge"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2027269580", - ["text"] = "# to Level of Socketed Bow Gems", + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + }, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["specialCaseData"] = { }, + ["sign"] = "", ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 5, + ["max"] = 5, }, - ["sign"] = "+", }, - ["5097_LightningResistanceAilments"] = { + ["1109_SelfFireAndColdDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", }, ["sign"] = "", }, - ["4269_FortifyEffectMaven"] = { + ["1154_LocalIncreasedAttackSpeedAddedChaos"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_153004860", - ["text"] = "# to Armour while Fortified", - }, - ["Helmet"] = { - ["min"] = 500, - ["max"] = 500, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, - ["sign"] = "+", + ["sign"] = "", }, - ["8563_BurningGroundEffectEffectivenessMaven"] = { + ["1719_SpellBlockPercentageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2635869389", - ["text"] = "Unaffected by Ignite", + ["id"] = "explicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", }, - ["Boots"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["2321_EnduranceChargeOnKillChanceMaven"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["1762_SupportedByMeleeSplashDamage"] = { + ["2HMace"] = { + ["min"] = 23, + ["max"] = 37, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 23, + ["max"] = 37, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 37, }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 10, + ["Claw"] = { + ["min"] = 23, + ["max"] = 37, }, - }, - ["8704_ConsecratedGroundStationaryMaven"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 23, + ["max"] = 37, }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4113372195", - ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 23, + ["max"] = 37, }, - }, - ["2607_MinionChaosResistance"] = { - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["2HAxe"] = { + ["min"] = 23, + ["max"] = 37, }, - ["AbyssJewel"] = { - ["min"] = 7, - ["max"] = 11, + ["1HAxe"] = { + ["min"] = 23, + ["max"] = 37, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 23, + ["max"] = 37, }, - ["sign"] = "+", - ["AnyJewel"] = { - ["min"] = 7, - ["max"] = 11, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 37, }, - }, - ["1087_FireDamagePhysConvertedToFire"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - }, - ["sign"] = "", }, - ["226_SupportedByLessDuration"] = { - ["specialCaseData"] = { + ["1099_FireDamageAndChanceToIgnite"] = { + ["1HSword"] = { + ["min"] = 70, + ["max"] = 109, }, - ["tradeMod"] = { - ["type"] = "explicit", - ["id"] = "explicit.stat_2487643588", - ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["Wand"] = { + ["min"] = 70, + ["max"] = 109, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 25, + ["2HMace"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Staff"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HMace"] = { + ["min"] = 70, + ["max"] = 109, }, ["sign"] = "", - }, - ["5137_CriticalStrikeMultiplierIfEnemySlainRecently"] = { + ["Dagger"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["Claw"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HSword"] = { + ["min"] = 70, + ["max"] = 109, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2937483991", - ["text"] = "#% to Critical Strike Multiplier if you've Killed Recently", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, - ["AbyssJewel"] = { - ["min"] = 8, - ["max"] = 14, + ["Bow"] = { + ["min"] = 70, + ["max"] = 109, }, - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["1HAxe"] = { + ["min"] = 70, + ["max"] = 109, + }, + ["2HWeapon"] = { + ["min"] = 70, + ["max"] = 109, }, - ["sign"] = "+", ["1HWeapon"] = { - ["min"] = 26, - ["max"] = 35, + ["min"] = 70, + ["max"] = 109, }, - ["AnyJewel"] = { - ["min"] = 8, - ["max"] = 14, + ["specialCaseData"] = { }, }, - ["1302_MaximumManaIncreasePercent"] = { + ["8448_AddedFireBurningEnemies"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 30, - }, - ["specialCaseData"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", }, ["sign"] = "", - ["Chest"] = { - ["min"] = 9, - ["max"] = 18, - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 18, + ["Belt"] = { + ["min"] = 31.5, + ["max"] = 47, }, }, - ["1745_ChanceToShock"] = { + ["1296_LocalBaseArmourAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 80, + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 80, }, ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 3, + ["max"] = 80, }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 30, + ["Boots"] = { + ["min"] = 3, + ["max"] = 80, }, }, - ["1538_GainEnduranceChargeOnCritUber"] = { + ["1319_AddedManaRegenerationMaven"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2542650946", - ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, - ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 10, - }, }, - ["6079_HitAndAilmentDamageCursedEnemies"] = { + ["391_SocketedGemsDealMoreElementalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_539970476", - ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", }, ["sign"] = "", }, - ["1104_LightningDamageWeaponPrefixAndFlat"] = { + ["4766_CastSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 8, + ["max"] = 14, + }, }, - ["1848_DamageOverTimeWhileDualWielding"] = { + ["1500_MinionLifeForJewel"] = { ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_214001793", - ["text"] = "#% increased Damage over Time while Dual Wielding", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, ["AbyssJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 8, + ["max"] = 12, }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 8, + ["max"] = 12, }, ["AnyJewel"] = { - ["min"] = 10, - ["max"] = 18, + ["min"] = 8, + ["max"] = 12, }, }, - ["4372_AttackSpeedHitRecently"] = { + ["1663_SelfPhysAsExtraFireTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_4137521191", - ["text"] = "#% increased Attack Speed if you've been Hit Recently", - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 12, + ["id"] = "explicit.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", }, ["sign"] = "", }, - ["1280_ArmourAndEnergyShield"] = { + ["217_SupportedByMaim"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "explicit", - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 31, - ["max"] = 35, + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", }, + ["sign"] = "", }, - }, - ["Synthesis"] = { - ["6932_AddedManaRegenWithStaff"] = { - ["specialCaseData"] = { + ["1154_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1388668644", - ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["Staff"] = { + ["min"] = 18, + ["max"] = 22, }, - ["sign"] = "", - }, - ["1710_ProjectileDamage"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["Wand"] = { + ["min"] = 12, + ["max"] = 22, }, ["sign"] = "", - }, - ["2145_PhysicalDamageTakenAsFirePercent"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["Bow"] = { + ["min"] = 12, + ["max"] = 22, }, - ["sign"] = "", - }, - ["1488_MinionMovementSpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 22, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, - ["sign"] = "", - }, - ["1304_AddedManaRegeneration"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", + ["1HMace"] = { + ["min"] = 18, + ["max"] = 22, }, - ["sign"] = "", - }, - ["1509_AdditionalPierce"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["2HWeapon"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, - ["sign"] = "", }, - ["5611_FireDamagePerStrength"] = { + ["3255_ElementalDamagePercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2241902512", - ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + }, + ["Helmet"] = { + ["min"] = 2, + ["max"] = 3, }, ["sign"] = "", }, - ["8309_SpellDamagePer16Strength"] = { + ["1467_MaximumLifeLeechRateOldFix"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", }, ["sign"] = "", }, - ["1318_ItemFoundRarityIncrease"] = { + ["1278_LocalBaseArmourEnergyShieldAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2867_PoisonDamage"] = { + ["976_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["8308_SpellDamagePer16Intelligence"] = { + ["2354_EnergyShieldAndDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", + ["type"] = "explicit", + ["id"] = "explicit.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", }, ["sign"] = "", }, - ["876_ChanceToSuppressSpellsOld"] = { + ["1295_EnergyShieldAndDegenGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", }, ["sign"] = "+", }, - ["1183_SpellCriticalStrikeChance"] = { + ["1291_LocalArmourAndEvasionSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", }, ["sign"] = "", }, - ["1212_CriticalStrikeMultiplier"] = { + ["8114_ReflectsShocks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", }, - ["sign"] = "+", }, - ["4166_DeterminationPhysicalDamageReduction"] = { + ["1306_IncreasedLifeAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "explicit", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["sign"] = "", + ["sign"] = "+", }, - ["7821_IncreasedAilmentEffectOnEnemies"] = { + ["1762_AreaDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", }, - ["1651_PhysicalAddedAsLightning"] = { - ["specialCaseData"] = { - }, + ["8311_SpellDamagePer16Intelligence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", }, - ["sign"] = "", - }, - ["4903_ChanceWhenHitForArmourToBeDoubled"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["1871_IncreasedManaLeechRate"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_690135178", - ["text"] = "#% increased total Recovery per second from Mana Leech", - }, ["sign"] = "", - }, - ["1130_SpellAddedFireDamageTwoHand"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["3052_IncreasedAuraEffectDeterminationCorrupted"] = { + ["8795_VersatileCombatant"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", }, - ["sign"] = "", }, - ["1619_StunRecovery"] = { + ["6705_PowerChargeOnManaSpent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + ["id"] = "explicit.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", }, - ["sign"] = "", - }, - ["127_SocketedAoEGemQuality"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_768982451", - ["text"] = "#% to Quality of Socketed AoE Gems", + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["1870_IncreasedLifeLeechRate"] = { - ["specialCaseData"] = { - }, + ["1479_ManaGainPerTargetForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", }, - ["sign"] = "", - }, - ["4392_AttacksTauntOnHitChance"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1704_MaximumSpellBlockChance"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2388574377", - ["text"] = "#% to maximum Chance to Block Spell Damage", + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 2, }, - ["sign"] = "+", }, - ["1168_BowIncreasedAccuracyRating"] = { + ["2882_PoisonDamageAddedChaosToSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, ["sign"] = "", }, - ["1290_EnergyShieldRecoveryRate"] = { - ["specialCaseData"] = { + ["891_ChanceToDodgeAndSpellDodge"] = { + ["Gloves"] = { + ["min"] = 4, + ["max"] = 6, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - }, - ["sign"] = "", - }, - ["4263_ArmourEvasionWithFortify"] = { - ["specialCaseData"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2962782530", - ["text"] = "# to Armour and Evasion Rating while Fortified", + ["Helmet"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "+", - }, - ["1280_EnergyShield"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - }, ["sign"] = "+", - }, - ["3844_PhysicalDamageRemovedFromManaBeforeLife"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 4, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3743438423", - ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["1661_LifeRegenerationRatePercentage"] = { + ["2882_PoisonDamageAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + }, + ["Ring"] = { + ["min"] = 8, + ["max"] = 22, }, ["sign"] = "", }, - ["5624_FireDamageSpellSkills"] = { - ["specialCaseData"] = { - }, + ["171_SupportedByCastWhileChannellingWeapon"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_361162316", - ["text"] = "#% increased Fire Damage with Spell Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", }, - ["sign"] = "", - }, - ["1464_ManaGainPerTarget"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - }, ["sign"] = "", - }, - ["2228_FlammabilityOnHitLevel"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, }, }, - ["1344_MaximumFireResistanceImplicit"] = { + ["1306_LifeAndPercentLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, ["sign"] = "+", }, - ["1510_ArrowAdditionalPierce"] = { - ["specialCaseData"] = { + ["2196_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["Wand"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["Bow"] = { + ["min"] = 40, + ["max"] = 40, }, - }, - ["2294_CurseEffectiveness"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", + ["Staff"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["1HMace"] = { + ["min"] = 40, + ["max"] = 40, }, ["sign"] = "", - }, - ["8029_PurityOfIceReservationEfficiency"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["Claw"] = { + ["min"] = 40, + ["max"] = 40, }, - ["sign"] = "", - }, - ["5466_EnemiesExplodeOnDeathPhysical"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 40, + ["max"] = 40, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1220361974", - ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, - ["sign"] = "", - }, - ["1130_SpellAddedFireDamage"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["2HMace"] = { + ["min"] = 40, + ["max"] = 40, }, - ["sign"] = "", - }, - ["1303_BaseManaRegeneration"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", + ["2HWeapon"] = { + ["min"] = 40, + ["max"] = 40, }, - ["sign"] = "", - }, - ["7677_MinionAccuracyRating"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 40, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["124_SocketedGemQuality"] = { - ["specialCaseData"] = { + ["1296_LocalBaseEnergyShieldAndMana"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3828613551", - ["text"] = "#% to Quality of Socketed Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 30, }, - ["sign"] = "+", - }, - ["3689_CurseEffectFlammability"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 8, + ["max"] = 30, }, - ["sign"] = "", - }, - ["1132_SpellAddedLightningDamage"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 8, + ["max"] = 30, }, + }, + ["4929_GainEnduranceChargeOnTauntingEnemies"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_1657549833", + ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", }, - ["sign"] = "", - }, - ["1941_PhysicalAttackDamageTaken"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 30, }, - ["sign"] = "-", }, - ["1152_SwordIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["1632_AvoidInterruptionWhileCasting"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 60, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "explicit", + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Avoid interruption from Stuns while Casting", }, - ["sign"] = "", - }, - ["2974_DamagePerFrenzyCharge"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1287_EnergyShieldRegeneration"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["AnyJewel"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", }, - ["6791_SpellDamageCorruptedItem"] = { - ["specialCaseData"] = { + ["4150_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_374116820", - ["text"] = "#% increased Spell Damage if Corrupted", + ["type"] = "explicit", + ["id"] = "explicit.stat_3039589351", + ["text"] = "#% Chance to Block Attack Damage per Endurance Charge", + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["1552_FrenzyChargeOnHitChance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["sign"] = "+", + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1570_AvoidStun"] = { - ["specialCaseData"] = { + ["1852_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["2HSword"] = { + ["min"] = 20, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + ["id"] = "explicit.stat_417188801", + ["text"] = "#% chance to gain an Endurance Charge when you Block", + }, + ["1HSword"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", - }, - ["2232_MeleeWeaponAndUnarmedRange"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2264295449", - ["text"] = "# to Melee Strike Range", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 25, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "+", }, - ["4391_AttacksBlindOnHitChance"] = { - ["specialCaseData"] = { + ["6929_ManaRegeneratedIfYouveHitRecently"] = { + ["2HMace"] = { + ["min"] = 0.8, + ["max"] = 0.8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["1HMace"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, ["sign"] = "", - }, - ["1759_AttackAndCastSpeed"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 0.8, + ["max"] = 0.8, + }, + ["Bow"] = { + ["min"] = 0.8, + ["max"] = 0.8, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2602865453", + ["text"] = "Regenerate #% of Mana per second if you've Hit an Enemy Recently", }, - ["sign"] = "", - }, - ["2601_MinionAttackSpeed"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["1HSword"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["sign"] = "", - }, - ["5127_SpellCriticalChanceWithStaff"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_140429540", - ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + ["Staff"] = { + ["min"] = 0.8, + ["max"] = 0.8, + }, + ["2HSword"] = { + ["min"] = 0.8, + ["max"] = 0.8, }, - ["sign"] = "", - }, - ["132_SocketedDexterityGemQuality"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2877754099", - ["text"] = "#% to Quality of Socketed Dexterity Gems", + ["Dagger"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["sign"] = "+", - }, - ["1533_IncreasedMaximumPowerCharges"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["2HWeapon"] = { + ["min"] = 0.8, + ["max"] = 0.8, }, - ["sign"] = "+", - }, - ["129_SocketedBowGemQuality"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3280600715", - ["text"] = "#% to Quality of Socketed Bow Gems", + ["Shield"] = { + ["min"] = 0.4, + ["max"] = 0.4, }, - ["sign"] = "+", }, - ["8109_ReflectDamageTaken"] = { - ["specialCaseData"] = { - }, + ["1255_StunDurationAndThresholdUber"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3577248251", - ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", }, - ["sign"] = "", - }, - ["5329_DisciplineReservationEfficiency"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 11, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 30, }, - ["sign"] = "", - }, - ["2380_VaalSkillDamageAffectsSkillDamage"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3871212304", - ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 20, }, }, - ["1979_ReducedPhysicalDamageTaken"] = { - ["specialCaseData"] = { + ["1384_LifeLeechPermyriad"] = { + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", }, - ["sign"] = "", - }, - ["1136_IncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 1.2, + }, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.4, + }, }, - ["354_SocketedSkillsManaMultiplier"] = { + ["5018_ColdAilmentDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", }, ["sign"] = "", }, - ["3690_CurseEffectFrostbite"] = { - ["specialCaseData"] = { - }, + ["1119_LightningDamagePercentagePrefix"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 20, + ["max"] = 30, + }, + ["Belt"] = { + ["min"] = 16, + ["max"] = 30, + }, }, - ["1672_ConvertPhysicalToFireImplicit"] = { + ["1367_ColdResistanceEnemyLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1146_AxeIncreasedAttackSpeed"] = { + ["4486_MinionDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "explicit", + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", }, ["sign"] = "", }, - ["1517_MovementVelocity"] = { - ["specialCaseData"] = { - }, + ["1298_GlobalEnergyShieldPercent"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, - ["sign"] = "", - }, - ["1515_ProjectileSpeed"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 7, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1602_ManaCostReduction"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 2, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", + ["Belt"] = { + ["min"] = 7, + ["max"] = 15, }, - ["sign"] = "", }, - ["984_ColdDamageOverTimeMultiplier"] = { - ["specialCaseData"] = { - }, + ["1119_LightningDamagePrefixLightningPenetration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - ["sign"] = "+", - }, - ["1674_ConvertPhysicalToColdImplicit"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 45, + ["max"] = 60, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["Wand"] = { + ["min"] = 45, + ["max"] = 60, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 45, + ["max"] = 60, + }, + ["1HMace"] = { + ["min"] = 45, + ["max"] = 60, + }, }, - ["2672_FireResistancePenetration"] = { + ["5469_ExertedAttackDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + }, + ["Ring"] = { + ["min"] = 25, + ["max"] = 35, }, ["sign"] = "", }, - ["2146_PhysicalDamageTakenAsCold"] = { + ["1111_ColdDamagePhysConvertedToCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", }, ["sign"] = "", }, - ["137_SocketedMeleeGemQuality"] = { + ["8129_RemoveFreezeOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1396421504", - ["text"] = "#% to Quality of Socketed Melee Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + }, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["1222_ClawCriticalStrikeMultiplier"] = { + ["1583_ChanceToAvoidPoison"] = { + ["BaseJewel"] = { + ["min"] = 31, + ["max"] = 50, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 50, + ["max"] = 50, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2811834828", - ["text"] = "#% to Critical Strike Multiplier with Claws", + ["type"] = "explicit", + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, - ["sign"] = "+", - }, - ["906_AllAttributes"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 31, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["Helmet"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "+", - }, - ["2992_EnemiesExplodeOnDeathPhysicalChance"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 31, + ["max"] = 50, }, - ["tradeMod"] = { - ["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", + ["Chest"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Shield"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", }, - ["1279_IncreasedEvasionRatingPerFrenzyCharge"] = { + ["1147_SpellAddedLightningDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_660404777", - ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 64.5, }, ["sign"] = "", }, - ["1657_ColdAddedAsChaos"] = { - ["specialCaseData"] = { + ["1122_LightningDamage"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 23.5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", }, - ["sign"] = "", - }, - ["1840_FrenzyChargeDuration"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 2, + ["max"] = 75.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["93_LocalIncreaseSocketedFireGemLevel"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 3, + ["max"] = 39.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["Ring"] = { + ["min"] = 3, + ["max"] = 39.5, }, - ["sign"] = "+", }, - ["1030_AxeIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["1286_LocalBaseArmourAndEvasionRating"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 375, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2008219439", - ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "explicit", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, - ["sign"] = "", - }, - ["8288_AdditionalCriticalStrikeChanceWithSpells"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 5, + ["max"] = 375, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", + ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["sign"] = "+", - }, - ["5006_ChillEffect"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 5, + ["max"] = 375, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["Boots"] = { + ["min"] = 5, + ["max"] = 375, }, - ["sign"] = "", }, - ["1458_LifeGainPerTargetLocal"] = { + ["8750_AncestralBond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_2648570028", + ["text"] = "Ancestral Bond", }, - ["sign"] = "", }, - ["1159_LocalAccuracyRatingIncrease"] = { - ["specialCaseData"] = { - }, + ["1316_MinionDamageOnWeaponAndMana"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, - ["sign"] = "", - }, - ["914_PercentageStrength"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["sign"] = "+", + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 45, + }, + ["Wand"] = { + ["min"] = 17, + ["max"] = 45, }, - ["sign"] = "", }, - ["913_PercentageAllAttributes"] = { + ["3069_CannotBePoisoned"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["type"] = "explicit", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", }, - ["sign"] = "", }, - ["1306_ManaRegeneration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["3063_WrathAuraEffect"] = { + ["1HMace"] = { + ["min"] = 28, + ["max"] = 40, }, ["sign"] = "", - }, - ["1467_EnergyShieldGainPerTarget"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 48, + ["max"] = 60, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", }, - ["sign"] = "", - }, - ["4357_AddedLightningDamagePerIntelligence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["2HWeapon"] = { + ["min"] = 48, + ["max"] = 60, }, - ["sign"] = "", - }, - ["1219_BowCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", + ["Wand"] = { + ["min"] = 28, + ["max"] = 40, }, - ["sign"] = "+", }, - ["8790_UnwaveringStance"] = { + ["2585_AllFireDamageCanShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1683578560", - ["text"] = "Unwavering Stance", + ["type"] = "explicit", + ["id"] = "explicit.stat_932096321", + ["text"] = "Your Fire Damage can Shock", }, }, - ["2859_PoisonOnHit"] = { - ["specialCaseData"] = { + ["2688_ColdResistancePenetration"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["2HMace"] = { + ["min"] = 12, + ["max"] = 15, }, - ["sign"] = "", - }, - ["5768_OnslaughtOnHit"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2514424018", - ["text"] = "You gain Onslaught for # seconds on Hit", - }, ["sign"] = "", - }, - ["1645_MineLayingSpeed"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", }, - ["sign"] = "", - }, - ["2149_PhysicalDamageTakenAsChaos"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", - }, - ["1709_GlobalKnockbackChance"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 4, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", - }, - ["4237_AreaOfEffectIfStunnedEnemyRecently"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 15, }, + }, + ["2338_MinimumFrenzyChargesAndOnKillChance"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "explicit", + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 3, + ["max"] = 4, + }, + ["Ring"] = { + ["min"] = 3, + ["max"] = 4, + }, }, - ["1264_GlobalPhysicalDamageReductionRatingPercent"] = { + ["3172_ChanceToRecoverManaOnSkillUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["type"] = "explicit", + ["id"] = "explicit.stat_308309328", + ["text"] = "#% chance to Recover 10% of Mana when you use a Skill", }, ["sign"] = "", }, - ["7937_PhysicalDamageSpellSkills"] = { - ["specialCaseData"] = { + ["1154_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["2HMace"] = { + ["min"] = 17, + ["max"] = 21, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1430255627", - ["text"] = "#% increased Physical Damage with Spell Skills", + ["Wand"] = { + ["min"] = 8, + ["max"] = 12, + }, + ["1HMace"] = { + ["min"] = 17, + ["max"] = 21, }, ["sign"] = "", - }, - ["1166_DaggerIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["Claw"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["2HSword"] = { + ["min"] = 17, + ["max"] = 21, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2054715690", - ["text"] = "#% increased Accuracy Rating with Daggers", + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + }, + ["1HSword"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["1HAxe"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["2HWeapon"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 21, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, - ["sign"] = "", }, - ["1617_AvoidInterruptionWhileCasting"] = { + ["8733_ZeroChaosResistanceDelve"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1916706958", - ["text"] = "#% chance to Avoid interruption from Stuns while Casting", + ["type"] = "explicit", + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", }, - ["sign"] = "", }, - ["1369_LifeLeechPermyriad"] = { + ["1718_BlockPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", }, - ["sign"] = "", + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", }, - ["1512_AdditionalArrows"] = { + ["1405_FireResistanceLeech"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", }, ["sign"] = "", }, - ["1469_MaximumLifeOnKillPercent"] = { + ["3458_LocalLightningDamageTwoHandAndPen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", }, ["sign"] = "", }, - ["101_LocalIncreaseSocketedProjectileGemLevel"] = { + ["8310_SpellDamagePer16Dexterity"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["86_LocalIncreaseSocketedDexterityGemLevel"] = { + ["8291_AdditionalCriticalStrikeChanceWithSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", + }, + ["Chest"] = { + ["min"] = 0.5, + ["max"] = 2, }, ["sign"] = "+", }, - ["891_SpellBlockPercentage"] = { + ["338_WeaponSpellDamageReducedMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", }, ["sign"] = "", }, - ["2673_ColdResistancePenetration"] = { + ["622_FlaskUtilityIncreasedDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + }, + ["Flask"] = { + ["min"] = 16, + ["max"] = 40, }, ["sign"] = "", }, - ["8307_SpellDamagePer16Dexterity"] = { + ["1099_FireDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "explicit", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["sign"] = "", }, - ["1283_GlobalEnergyShieldPercent"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["2805_AdditionalVaalSoulOnKill"] = { + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "", - }, - ["2432_SpellDamagePer10Intelligence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", - }, ["sign"] = "", - }, - ["3665_AnimateGuardianResistances"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 5, + ["max"] = 8, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2094281311", - ["text"] = "#% to Animated Guardian Elemental Resistances", + ["type"] = "explicit", + ["id"] = "explicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", }, - ["sign"] = "+", - }, - ["8126_RemoveFreezeOnFlaskUse"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3296873305", - ["text"] = "Remove Chill and Freeze when you use a Flask", + ["Helmet"] = { + ["min"] = 5, + ["max"] = 8, }, - }, - ["103_LocalIncreaseSocketedMeleeGemLevel"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", + ["Chest"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Shield"] = { + ["min"] = 5, + ["max"] = 8, }, - ["sign"] = "+", }, - ["2649_GlobalChanceToBlindOnHit"] = { + ["329_IncreasedAccuracyPercentSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + }, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["105_LocalIncreaseSocketedAuraLevel"] = { + ["736_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", - }, - ["sign"] = "+", - }, - ["3324_ZombieIncreasedDamage"] = { - ["specialCaseData"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2228518621", - ["text"] = "Raised Zombies deal #% increased Damage", + ["Flask"] = { + ["min"] = 40, + ["max"] = 60, }, ["sign"] = "", }, - ["1149_DaggerIncreasedAttackSpeed"] = { + ["1687_FireDamagePhysConvertedToFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "explicit", + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", }, ["sign"] = "", }, - ["2791_VaalSkillDuration"] = { + ["4283_FortifyEffectMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_547412107", - ["text"] = "#% increased Vaal Skill Effect Duration", + ["type"] = "explicit", + ["id"] = "explicit.stat_153004860", + ["text"] = "# to Armour while Fortified", }, - ["sign"] = "", + ["Helmet"] = { + ["min"] = 500, + ["max"] = 500, + }, + ["sign"] = "+", }, - ["1528_MaximumFrenzyCharges"] = { + ["123_IncreaseSocketedCurseGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "explicit", + ["id"] = "explicit.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", }, ["sign"] = "+", }, - ["1034_StaffIncreasedPhysicalDamage"] = { + ["1305_EnergyShieldRecoveryRateMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3150705301", - ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "explicit", + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + }, + ["Chest"] = { + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", }, - ["909_IntelligenceImplicit"] = { + ["5337_GlobalDexterityGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", + ["type"] = "explicit", + ["id"] = "explicit.stat_146924886", + ["text"] = "# to Level of all Dexterity Skill Gems", }, ["sign"] = "+", }, - ["1293_MaximumLifeIncreasePercent"] = { + ["340_DisplaySocketedGemsSupportedByFortify"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 25, + }, }, - ["8137_RemoveShockOnFlaskUse"] = { + ["2161_PhysicalDamageTakenAsColdUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_561861132", - ["text"] = "Remove Shock when you use a Flask", + ["type"] = "explicit", + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + }, + ["Chest"] = { + ["min"] = 16, + ["max"] = 18, }, + ["sign"] = "", }, - ["6779_MovementVelocityCorruptedItem"] = { + ["660_FlaskCurseImmunity"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2880601380", - ["text"] = "#% increased Movement Speed if Corrupted", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["953_SpellDamage"] = { + ["968_WeaponSpellDamagePowerChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", ["text"] = "#% increased Spell Damage", }, ["sign"] = "", }, - ["2605_MinionLifeRegeneration"] = { - ["specialCaseData"] = { + ["1466_MaximumLifeLeechRate"] = { + ["Gloves"] = { + ["min"] = 10, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + ["id"] = "explicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 25, + }, }, - ["1582_StunDurationIncreasePercent"] = { + ["3245_AdditionalMinesPlacedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + ["id"] = "explicit.stat_2395088636", + ["text"] = "Throw an additional Mine", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1425_AttackDamageManaLeech"] = { + ["1312_LifeDegenerationGracePeriod"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_350069479", - ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", }, ["sign"] = "", }, - ["2602_MinionCastSpeed"] = { + ["2221_ManaRegenerationWhileShocked"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", }, ["sign"] = "", }, - ["1240_StunThresholdReduction"] = { + ["341_AdditionalMinesPlacedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + }, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 25, }, ["sign"] = "", }, - ["104_LocalIncreaseSocketedMinionGemLevel"] = { + ["4208_GlobalSkillGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skill Gems", + }, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", }, - ["3686_CurseEffectConductivity"] = { + ["1148_PoisonDamageAddedChaosToSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", }, ["sign"] = "", }, - ["1695_ElementalDamagePercent"] = { - ["specialCaseData"] = { - }, + ["3106_CriticalChanceAgainstBlindedEnemies"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1939202111", + ["text"] = "#% increased Critical Strike Chance against Blinded Enemies", }, - ["sign"] = "", - }, - ["8334_SpellsHinderOnHitChance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - }, ["sign"] = "", - }, - ["3054_CannotBePoisoned"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 80, + ["max"] = 100, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["Claw"] = { + ["min"] = 80, + ["max"] = 100, }, }, - ["1272_GlobalEvasionRatingPercent"] = { + ["2291_TotemSpeedSpellSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", }, ["sign"] = "", - }, - ["1451_MaximumLifeLeechRate"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 8, + ["max"] = 20, }, + }, + ["928_PercentageAllAttributes"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", }, - ["sign"] = "", - }, - ["5429_IncreasedWeaponElementalDamagePercent"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 7, + ["max"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["4355_AddedFireDamagePerStrength"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 6, + ["max"] = 9, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["Belt"] = { + ["min"] = 6, + ["max"] = 12, }, - ["sign"] = "", }, - ["2856_PoisonDuration"] = { + ["3957_ElementalPenetrationDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + ["id"] = "explicit.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", }, ["sign"] = "", }, - ["1164_StaffIncreasedAccuracyRating"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1617235962", - ["text"] = "#% increased Accuracy Rating with Staves", + ["3058_AngerAuraEffect"] = { + ["Wand"] = { + ["min"] = 28, + ["max"] = 40, }, ["sign"] = "", - }, - ["1421_ManaLeechLocalPermyriad"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Staff"] = { + ["min"] = 48, + ["max"] = 60, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", }, - ["sign"] = "", - }, - ["1453_MaximumManaLeechRate"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["2HWeapon"] = { + ["min"] = 48, + ["max"] = 60, }, - ["sign"] = "", - }, - ["2885_DamagePerEnduranceCharge"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", + ["1HMace"] = { + ["min"] = 28, + ["max"] = 40, }, - ["sign"] = "", }, - ["95_LocalIncreaseSocketedLightningGemLevel"] = { - ["specialCaseData"] = { - }, + ["2644_PhysicalDamageAddedAsRandomElement"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", }, - ["sign"] = "+", - }, - ["1577_ChillAndFreezeDuration"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", + ["1HMace"] = { + ["min"] = 7, + ["max"] = 15, }, - ["sign"] = "", - }, - ["5227_DamagePer15Strength"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["Bow"] = { + ["min"] = 7, + ["max"] = 15, + }, + }, + ["1579_AvoidFreeze"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + }, + ["Quiver"] = { + ["min"] = 51, + ["max"] = 80, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Boots"] = { + ["min"] = 51, + ["max"] = 80, + }, }, - ["3139_SpectreDamage"] = { + ["8772_Impaler"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3645693773", - ["text"] = "Spectres have #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1441799693", + ["text"] = "The Impaler", }, - ["sign"] = "", }, - ["1174_CastSpeedWithStaff"] = { + ["1145_SpellAddedFireDamageUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "explicit", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 61, }, ["sign"] = "", }, - ["1167_MaceIncreasedAccuracyRating"] = { + ["1280_LocalPhysicalDamageReductionRatingPercentSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3208450870", - ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + ["type"] = "explicit", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", }, ["sign"] = "", }, - ["1568_ChanceToAvoidPoison"] = { + ["1594_IncreasedAilmentDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + }, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", }, - ["85_LocalIncreaseSocketedStrengthGemLevel"] = { - ["specialCaseData"] = { + ["3458_LocalLightningPenetration"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", + ["Wand"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["5238_DamageVSAbyssMonsters"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3257279374", - ["text"] = "#% increased Damage against Abyssal Monsters", + ["Staff"] = { + ["min"] = 9, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 9, + ["max"] = 15, }, ["sign"] = "", - }, - ["139_SocketedProjectileGemQuality"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2428621158", - ["text"] = "#% to Quality of Socketed Projectile Gems", + ["Claw"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["2221_CurseOnHitLevelVulnerability"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 9, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", }, - }, - ["1223_StaffCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1474913037", - ["text"] = "#% to Critical Strike Multiplier with Staves", + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["1952_DegenDamageTaken"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 15, }, - ["sign"] = "", - }, - ["102_LocalIncreaseSocketedBowGemLevel"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2027269580", - ["text"] = "# to Level of Socketed Bow Gems", + ["specialCaseData"] = { }, - ["sign"] = "+", }, - ["8609_VitalityReservation"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1HSword"] = { + ["min"] = 25, + ["max"] = 69, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", - }, ["sign"] = "", - }, - ["1895_BeltIncreasedFlaskChargesGained"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 69, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HAxe"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, }, - ["sign"] = "", }, - ["1652_PhysicalAddedAsChaos"] = { - ["specialCaseData"] = { + ["243_LocalPhysicalDamagePercentRuthless"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, ["sign"] = "", - }, - ["8552_ChilledGroundEffectEffectiveness"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3653191834", - ["text"] = "Unaffected by Chilled Ground", + ["Claw"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["1148_ClawIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "explicit", + ["id"] = "explicit.stat_3796013729", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", }, - ["sign"] = "", - }, - ["916_PercentageIntelligence"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1352_ColdResistance"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "+", - }, - ["1557_CannotBeFrozen"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_876831634", - ["text"] = "Cannot be Frozen", + ["specialCaseData"] = { }, }, - ["1586_SelfStatusAilmentDuration"] = { + ["8128_RemoveBleedingOnWarcry"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "explicit", + ["id"] = "explicit.stat_3936926420", + ["text"] = "Removes Bleeding when you use a Warcry", }, - ["sign"] = "", - }, - ["1281_LocalEnergyShield"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["2323_FrenzyChargeOnKillChance"] = { - ["specialCaseData"] = { + ["3155_IncreasedDamageFromAuras"] = { + ["Staff"] = { + ["min"] = 4, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["Bow"] = { + ["min"] = 4, + ["max"] = 4, }, - ["sign"] = "", - }, - ["1564_AvoidFreeze"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["1HSword"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 2, }, ["sign"] = "", - }, - ["1086_GlobalAddedFireDamage"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 4, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3729445224", + ["text"] = "Auras from your Skills grant #% increased Damage to you and Allies", + }, + ["Wand"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", - }, - ["2793_VaalSkillCriticalStrikeChance"] = { ["specialCaseData"] = { }, + }, + ["1725_ProjectileDamageForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 12, }, - ["sign"] = "", - }, - ["4165_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 12, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 12, + }, + }, + ["8312_SpellDamagePer16Strength"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "explicit", + ["id"] = "explicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, }, - ["1747_AreaDamage"] = { + ["5112_CritChanceShockedEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 30, + ["max"] = 45, + }, }, - ["100_IncreasedSocketedAoEGemLevel"] = { + ["385_SocketedAttackCriticalStrikeChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have #% to Critical Strike Chance", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 4, }, ["sign"] = "+", }, - ["1218_AxeCriticalStrikeMultiplier"] = { + ["2871_PoisonDamageAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4219746989", - ["text"] = "#% to Critical Strike Multiplier with Axes", + ["type"] = "explicit", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", }, - ["sign"] = "+", + ["Ring"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["sign"] = "", }, - ["1676_ConvertPhysicalToLightningImplicit"] = { + ["317_TotemSpeedSpellSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 18, + ["max"] = 25, + }, }, - ["8549_BurningGroundEffectEffectiveness"] = { + ["1110_GlobalAddedColdDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1643688236", - ["text"] = "Unaffected by Burning Ground", + ["type"] = "explicit", + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + }, + ["Gloves"] = { + ["min"] = 23, + ["max"] = 30, }, + ["sign"] = "", }, - ["7565_FortifyEffect"] = { - ["specialCaseData"] = { + ["1186_IncreasedCastSpeed"] = { + ["Wand"] = { + ["min"] = 5, + ["max"] = 32, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_335507772", - ["text"] = "# to maximum Fortification", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 32, }, - ["sign"] = "+", - }, - ["1113_GlobalAddedChaosDamage"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 8, + ["max"] = 49, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", - }, - ["1610_IncreaseManaCostFlat"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3736589033", - ["text"] = "# to Total Mana Cost of Skills", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 20, }, - ["sign"] = "-", - }, - ["141_AbyssJewelEffect"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 5, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1482572705", - ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 49, }, - ["sign"] = "", - }, - ["1084_FireDamagePercentage"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 32, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 32, }, - ["sign"] = "", }, - ["5317_DeterminationReservation"] = { + ["3007_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["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"] = "", }, - ["6674_AttackAndCastSpeedCorruptedItem"] = { + ["1995_MinionPhysicalDamageReduction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_26867112", - ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["type"] = "explicit", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 7, + ["max"] = 15, + }, }, - ["6929_AddedManaRegenWithDualWield"] = { - ["specialCaseData"] = { + ["1189_CastSpeedWithAStaffForJewel"] = { + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1361343333", - ["text"] = "Regenerate # Mana per Second while Dual Wielding", + ["type"] = "explicit", + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + }, + ["Staff"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, }, - ["8028_PurityOfIceReservation"] = { + ["1375_PhysicalDamageTakenAsChaosUberMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_139925400", - ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", }, - ["sign"] = "", + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", }, - ["3053_IncreasedAuraEffectDisciplineCorrupted"] = { + ["390_DisplaySupportedSkillsDealDamageOnLowLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", }, ["sign"] = "", }, - ["1655_LightningAddedAsChaos"] = { + ["1119_TwoHandLightningDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, ["sign"] = "", }, - ["1838_EnduranceChargeDuration"] = { - ["specialCaseData"] = { + ["1694_PhysicalDamageConvertedToChaos"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["Wand"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["2HMace"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 25, }, ["sign"] = "", - }, - ["1679_PhysicalDamageConvertToChaosImplicit"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_490098963", + ["type"] = "explicit", + ["id"] = "explicit.stat_490098963", ["text"] = "#% of Physical Damage Converted to Chaos Damage", }, - ["sign"] = "", - }, - ["7917_PhysicalDamageWithUnholyMight"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 10, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1609570656", - ["text"] = "#% increased Physical Damage while you have Unholy Might", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 25, }, - ["sign"] = "", - }, - ["1106_GlobalAddedLightningDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 25, }, - ["sign"] = "", - }, - ["8031_PurityOfLightningReservation"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1471_MaximumManaOnKillPercent"] = { + ["1718_MaximumBlockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", }, - ["sign"] = "", + ["Amulet"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["sign"] = "+", }, - ["1093_ColdDamagePercentage"] = { - ["specialCaseData"] = { + ["1290_LocalArmourAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 100, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", }, - ["sign"] = "", - }, - ["1042_ClawIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["min"] = 101, + ["max"] = 110, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_635761691", - ["text"] = "#% increased Physical Damage with Claws", + ["Helmet"] = { + ["min"] = 15, + ["max"] = 100, }, - ["sign"] = "", - }, - ["4394_AttackImpaleChance"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["sign"] = "", + ["Chest"] = { + ["min"] = 15, + ["max"] = 110, + }, + ["Boots"] = { + ["min"] = 15, + ["max"] = 100, + }, }, - ["5623_FireDamageAttackSkills"] = { + ["1124_LocalLightningDamageHybrid"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2468413380", - ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, ["sign"] = "", }, - ["8300_SpellDamagePerMana"] = { + ["1608_ReducedFreezeDurationMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3555662994", - ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + }, + ["Helmet"] = { + ["min"] = 51, + ["max"] = 60, }, ["sign"] = "", }, - ["6297_LightningDamageAttackSkills"] = { + ["1372_LightningResistance"] = { + ["2HMace"] = { + ["min"] = 6, + ["max"] = 48, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4208907162", - ["text"] = "#% increased Lightning Damage with Attack Skills", + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - }, - ["1560_CannotBeShocked"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 6, + ["max"] = 48, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_491899612", - ["text"] = "Cannot be Shocked", + ["type"] = "explicit", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, - }, - ["7587_LifeAddedAsEnergyShield"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_67280387", - ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - }, - ["4291_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", + ["Quiver"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "+", - }, - ["1578_BurnDuration"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["Staff"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", - }, - ["2855_BleedingDamage"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 6, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Ring"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 48, + }, + ["Belt"] = { + ["min"] = 6, + ["max"] = 48, }, - ["sign"] = "", }, - ["1173_CastSpeedWithShield"] = { + ["8034_PurityOfLightningReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "explicit", + ["id"] = "explicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["2307_MovementSpeedWhilePhased"] = { - ["specialCaseData"] = { + ["2688_SpellAddedColdDamagePenetrationHybrid"] = { + ["Wand"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3684879618", - ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "explicit", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", }, - ["sign"] = "", - }, - ["958_SpellDamageWithShield"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 4, }, - ["sign"] = "", }, - ["8306_SpellDamagePer10Strength"] = { - ["specialCaseData"] = { + ["7773_MovementSpeedIfHitRecently"] = { + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_3178542354", + ["text"] = "#% increased Movement Speed if you've Hit an Enemy Recently", + }, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", - }, - ["987_ChaosDamageOverTimeMultiplier"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "+", }, - ["1048_DaggerIncreasedPhysicalDamage"] = { + ["1128_GlobalAddedChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3882531569", - ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "explicit", + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + }, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 25, }, ["sign"] = "", }, - ["1284_EnergyShieldDelay"] = { + ["8774_LetheShade"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", }, - ["sign"] = "", }, - ["5535_DisciplineEnergyShieldRegen"] = { - ["specialCaseData"] = { + ["325_SupportedByCastOnCritWeapon"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_991194404", - ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "explicit", + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - }, - ["4904_AdditionalChanceToEvade"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2021058489", - ["text"] = "#% chance to Evade Attack Hits", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", }, - ["5125_SpellCriticalChanceWithDualWield"] = { + ["1916_BeltFlaskLifeRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1218939541", - ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["type"] = "explicit", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 5, + ["max"] = 40, + }, }, - ["6733_ImmuneToCursesCorruptedItem"] = { + ["2882_PoisonDamageWeaponSupported"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1954526925", - ["text"] = "Immune to Curses if Corrupted", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 19, + ["max"] = 26, + }, + ["1HWeapon"] = { + ["min"] = 19, + ["max"] = 26, }, }, - ["1163_AxeIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["2616_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 38, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2538120572", - ["text"] = "#% increased Accuracy Rating with Axes", + ["Wand"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 38, }, ["sign"] = "", - }, - ["1419_ManaLeechPermyriad"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 38, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 38, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2790_AdditionalVaalSoulOnKill"] = { + ["8729_ZealotryReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1703_MaximumBlockChance"] = { + ["1372_LightningResistanceEnemyLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, ["sign"] = "+", }, - ["5151_SpellCriticalMultiplierWithShield"] = { + ["1802_AddedPhysicalDamageWithStaves"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + }, + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AbyssJewel"] = { + ["min"] = 2.5, + ["max"] = 9, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2311200892", - ["text"] = "#% to Critical Strike Multiplier for Spells while holding a Shield", + ["sign"] = "", + ["Staff"] = { + ["min"] = 2.5, + ["max"] = 9, + }, + ["AnyJewel"] = { + ["min"] = 2.5, + ["max"] = 9, }, - ["sign"] = "+", }, - ["87_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["379_SocketedSkillsCriticalChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have #% Critical Strike Chance", }, ["sign"] = "+", }, - ["4439_BleedDuration"] = { + ["4243_ArcticArmourReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1386_PhysicalDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["5578_GlobalEvasionRatingPercentOnFullLife"] = { + ["Gloves"] = { + ["min"] = 25, + ["max"] = 50, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Global Evasion Rating when on Full Life", + }, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 50, }, - ["sign"] = "", - }, - ["5025_FlatColdDamageTaken"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_261654754", - ["text"] = "# Cold Damage taken from Hits", + ["sign"] = "", + ["Chest"] = { + ["min"] = 25, + ["max"] = 50, + }, + ["Boots"] = { + ["min"] = 25, + ["max"] = 50, }, - ["sign"] = "-", }, - ["2262_FasterIgniteDamage"] = { + ["364_WeaponSpellDamageControlledDestruction"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3718597497", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, + }, + }, + ["5454_ReducedElementalReflectTaken"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 100, + ["max"] = 100, + }, + ["Ring"] = { + ["min"] = 31, + ["max"] = 55, + }, }, - ["2481_TotemElementalResistances"] = { + ["976_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 69, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 25, + ["max"] = 69, + }, + ["Claw"] = { + ["min"] = 25, + ["max"] = 69, }, - ["sign"] = "+", }, - ["1147_StaffIncreasedAttackSpeed"] = { + ["3929_MaximumEnduranceChargesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", + ["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, + }, }, - ["1340_AllResistances"] = { - ["specialCaseData"] = { + ["1278_LocalBaseArmourAndLife"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 144, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 144, }, - ["sign"] = "+", - }, - ["8569_ShockedGroundEffectEffectiveness"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2234049899", - ["text"] = "Unaffected by Shocked Ground", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 20, + ["max"] = 144, + }, + ["Boots"] = { + ["min"] = 20, + ["max"] = 144, }, }, - ["1371_LifeLeechLocalPermyriad"] = { + ["140_LocalIncreaseSocketedSupportGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", }, - ["sign"] = "", + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["sign"] = "+", }, - ["3757_DamageDuringFlaskEffect"] = { + ["1751_LocalLightRadiusAndAccuracy"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1104_LightningDamagePercentage"] = { - ["specialCaseData"] = { - }, + ["5520_EnemiesHaveReducedEvasionIfHitRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1773891268", + ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 20, + ["max"] = 20, + }, }, - ["1442_EnergyShieldLeechPermyriad"] = { + ["8242_ManaCostBaseChannelled"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "explicit", + ["id"] = "explicit.stat_1178188780", + ["text"] = "Channelling Skills Cost # Mana", }, - ["sign"] = "", + ["sign"] = "-", }, - ["908_DexterityImplicit"] = { + ["941_MineDamageOnWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["type"] = "explicit", + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", }, - ["sign"] = "+", + ["sign"] = "", }, - ["1112_IncreasedChaosDamage"] = { + ["3753_OfferingEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + }, + ["Chest"] = { + ["min"] = 16, + ["max"] = 35, }, ["sign"] = "", }, - ["4338_AttackDamagePerMana"] = { + ["5817_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4134865890", - ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", }, - ["sign"] = "", }, - ["94_LocalIncreaseSocketedColdGemLevel"] = { - ["specialCaseData"] = { - }, + ["1146_SpellAddedColdDamage"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, - ["sign"] = "+", - }, - ["6691_GlobalCriticalStrikeChanceCorruptedItem"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 1.5, + ["max"] = 73.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4023723828", - ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["Wand"] = { + ["min"] = 1.5, + ["max"] = 73.5, }, - ["sign"] = "", - }, - ["1314_ItemFoundQuantityIncrease"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - }, ["sign"] = "", - }, - ["6773_IncreasedEnergyShieldCorruptedItem"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 1.5, + ["max"] = 73.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1025108940", - ["text"] = "#% increased maximum Energy Shield if Corrupted", + ["1HMace"] = { + ["min"] = 1.5, + ["max"] = 73.5, }, - ["sign"] = "", }, - ["1460_LifeGainPerTarget"] = { - ["specialCaseData"] = { - }, + ["922_StrengthForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + }, + ["AbyssJewel"] = { + ["min"] = 12, + ["max"] = 16, }, - ["sign"] = "", - }, - ["1131_SpellAddedColdDamage"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 16, }, - ["sign"] = "", }, - ["8610_VitalityReservationEfficiency"] = { + ["2975_IncreasedStunThreshold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3972739758", - ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", }, ["sign"] = "", }, - ["5225_DamagePer15Dexterity"] = { + ["5123_CriticalStrikeChanceIfKilledRecently"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", - }, ["sign"] = "", - }, - ["134_SocketedFireGemQuality"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 80, + ["max"] = 100, + }, + ["Claw"] = { + ["min"] = 31, + ["max"] = 50, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3422008440", - ["text"] = "#% to Quality of Socketed Fire Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + }, + ["1HAxe"] = { + ["min"] = 80, + ["max"] = 100, + }, + ["2HWeapon"] = { + ["min"] = 80, + ["max"] = 100, + }, + ["1HWeapon"] = { + ["min"] = 31, + ["max"] = 100, + }, + ["Dagger"] = { + ["min"] = 31, + ["max"] = 50, }, - ["sign"] = "+", }, - ["1944_FlatFireDamageTaken"] = { + ["160_SupportedByArcaneSurgeWeapon"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_614758785", - ["text"] = "# Fire Damage taken from Hits", + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "-", }, - ["963_MeleeDamage"] = { - ["specialCaseData"] = { + ["1457_EnergyShieldLeechPermyriad"] = { + ["Gloves"] = { + ["min"] = 0.3, + ["max"] = 0.3, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + }, + ["Helmet"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, + ["Boots"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, }, - ["3271_FirePenetrationWeapon"] = { + ["5542_MaximumEnergyShieldOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1123291426", - ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_2698606393", + ["text"] = "#% increased Energy Shield Recovery Rate if you haven't Killed Recently", + }, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["5152_SpellCriticalMultiplierWithStaff"] = { - ["specialCaseData"] = { + ["1154_LocalIncreasedAttackSpeed"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 27, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3629080637", - ["text"] = "#% to Critical Strike Multiplier for Spells while wielding a Staff", + ["Wand"] = { + ["min"] = 5, + ["max"] = 27, }, - ["sign"] = "+", - }, - ["960_PhysicalDamagePercent"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 27, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["Staff"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 27, }, ["sign"] = "", - }, - ["8528_DamageWithTriggeredSpells"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 27, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 27, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, - ["sign"] = "", }, - ["8225_BrandAttachmentRange"] = { + ["1280_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", }, ["sign"] = "", }, - ["1308_ManaRecoveryRate"] = { + ["941_MineDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["3049_IncreasedAuraEffectGraceCorrupted"] = { + ["2552_FishingLineStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + }, + ["FishingRod"] = { + ["min"] = 20, + ["max"] = 40, }, ["sign"] = "", }, - ["1346_FireResistance"] = { + ["1766_CullingStrike"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, ["specialCaseData"] = { }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["128_SocketedAuraGemQuality"] = { + ["1367_ColdResistanceAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2276941637", - ["text"] = "#% to Quality of Socketed Aura Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", }, ["sign"] = "+", }, - ["1565_AvoidIgnite"] = { + ["234_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", }, ["sign"] = "", }, - ["5318_DeterminationReservationEfficiency"] = { - ["specialCaseData"] = { + ["1104_LocalFireDamagePenetrationHybrid"] = { + ["Dagger"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["Bow"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["sign"] = "", - }, - ["7936_PhysicalDamageAttackSkills"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 11.5, + ["max"] = 89.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2266750692", - ["text"] = "#% increased Physical Damage with Attack Skills", + ["Wand"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["sign"] = "", - }, - ["3058_FireDamageAvoidance"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["sign"] = "", - }, - ["2629_PhysicalDamageAddedAsRandomElement"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 11.5, + ["max"] = 89.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["Staff"] = { + ["min"] = 21.5, + ["max"] = 89.5, }, - ["sign"] = "", - }, - ["5842_GraceReservation"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 11.5, + ["max"] = 89.5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, - ["sign"] = "", - }, - ["2671_ElementalPenetration"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["Claw"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["sign"] = "", - }, - ["1855_IncreasedPowerChargeDuration"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["2HWeapon"] = { + ["min"] = 11.5, + ["max"] = 89.5, }, - ["sign"] = "", - }, - ["1562_AvoidElementalStatusAilments"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["1HMace"] = { + ["min"] = 11.5, + ["max"] = 48, }, - ["sign"] = "", }, - ["1325_ExperienceIncrease"] = { + ["2882_PoisonDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3666934677", - ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", }, ["sign"] = "", }, - ["1549_PowerChargeOnCriticalStrikeChance"] = { - ["specialCaseData"] = { - }, + ["1399_LifeLeechFromAttacksPermyriad"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + ["id"] = "explicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + }, + ["AbyssJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, + ["AnyJewel"] = { + ["min"] = 0.3, + ["max"] = 0.3, + }, }, - ["352_DisplaySocketedGemsGetReducedReservation"] = { + ["3088_LightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", }, ["sign"] = "", }, - ["1896_BeltReducedFlaskChargesUsed"] = { - ["specialCaseData"] = { - }, + ["1174_LightRadiusAndAccuracyPercent"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Helmet"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["Ring"] = { + ["min"] = 9, + ["max"] = 20, + }, }, - ["1150_MaceIncreasedAttackSpeed"] = { + ["5569_LifeRegenerationPerEvasionDuringFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "explicit", + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + }, + ["Chest"] = { + ["min"] = 1.5, + ["max"] = 1.5, }, ["sign"] = "", }, - ["1406_ElementalDamageLeechedAsLifePermyriad"] = { - ["specialCaseData"] = { - }, + ["1820_AddedColdDamageWithStaves"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_720395808", - ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + }, + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["AbyssJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Staff"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["AnyJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, }, - ["3060_LightningDamageAvoidance"] = { + ["1115_AddedFireDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", }, ["sign"] = "", }, - ["1153_WandIncreasedAttackSpeed"] = { + ["955_DegenerationDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "explicit", + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + }, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 38, }, ["sign"] = "", }, - ["1644_TrapThrowSpeed"] = { + ["6310_GlobalLightningGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1147690586", + ["text"] = "# to Level of all Lightning Skill Gems", }, - ["sign"] = "", - }, - ["8194_ShockEffect"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", + }, + ["343_IncreasedCastSpeedFasterCasting"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", + ["type"] = "explicit", + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, + }, }, - ["5028_ColdDamageSpellSkills"] = { + ["323_BlindOnHitSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2186994986", - ["text"] = "#% increased Cold Damage with Spell Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + }, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["921_AllDamage"] = { + ["6717_NearbyEnemyChaosDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1902595112", + ["text"] = "Nearby Enemies have #% to Chaos Resistance", }, - ["sign"] = "", + ["Helmet"] = { + ["min"] = 9, + ["max"] = 12, + }, + ["sign"] = "-", }, - ["1853_IncreasedSpellDamagePerPowerCharge"] = { + ["2875_MinionsPoisonEnemiesOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_827329571", - ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", }, ["sign"] = "", }, - ["2147_PhysicalDamageTakenAsLightningPercent"] = { + ["4923_FortifyOnMeleeStun"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 8, + ["max"] = 12, + }, }, - ["1477_GainLifeOnBlock"] = { - ["specialCaseData"] = { + ["100_DelveStrengthGemLevel"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_762600725", - ["text"] = "# Life gained when you Block", + ["type"] = "explicit", + ["id"] = "explicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", + }, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["2257_ItemDropsOnGuardianDeath"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3909846940", - ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1171_IncreasedCastSpeed"] = { + ["226_LocalPhysicalDamagePercentOnslaught"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Onslaught", }, ["sign"] = "", }, - ["3687_CurseEffectElementalWeakness"] = { - ["specialCaseData"] = { + ["978_MeleeDamageAndMeleeRange"] = { + ["Gloves"] = { + ["min"] = 13, + ["max"] = 16, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 17, + ["max"] = 20, + }, }, - ["1384_LifeLeechFromAttacksPermyriad"] = { - ["specialCaseData"] = { + ["168_LocalPhysicalDamagePercentBrutality"] = { + ["2HMace"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", + ["1HMace"] = { + ["min"] = 16, + ["max"] = 20, }, ["sign"] = "", - }, - ["2226_CurseOnHitDespair"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", + ["Claw"] = { + ["min"] = 16, + ["max"] = 20, }, - }, - ["1532_MinimumPowerCharges"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 16, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1999711879", - ["text"] = "# to Minimum Power Charges", + ["type"] = "explicit", + ["id"] = "explicit.stat_715256302", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + }, + ["1HSword"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, + }, + ["specialCaseData"] = { }, - ["sign"] = "+", }, - ["1216_DaggerCriticalStrikeMultiplier"] = { + ["1286_LocalBaseEvasionRatingEnergyShieldAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3998601568", - ["text"] = "#% to Critical Strike Multiplier with Daggers", + ["type"] = "explicit", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, ["sign"] = "+", }, - ["2225_ConductivityOnHitLevel"] = { - ["specialCaseData"] = { + ["1119_LightningDamagePercentage"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["sign"] = "", + ["Staff"] = { + ["min"] = 3, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, - }, - ["5328_DisciplineReservation"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2081344089", - ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 30, }, - ["sign"] = "", - }, - ["1772_GlobalFlaskLifeRecovery"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 3, + ["max"] = 22, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 30, + }, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 26, + }, + ["Wand"] = { + ["min"] = 3, + ["max"] = 30, }, - ["sign"] = "", }, - ["1235_ReducedExtraDamageFromCrits"] = { + ["2554_FishingLureType"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + }, + ["FishingRod"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2674_LightningResistancePenetration"] = { + ["2841_ChillEnemiesWhenHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", }, ["sign"] = "", }, - ["4906_GraceAdditionalChanceToEvade"] = { + ["1751_LocalAccuracyRatingAndLocalItemQuality"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Accuracy Rating", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_969576725", - ["text"] = "#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "explicit", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", }, ["sign"] = "+", }, - ["3948_AddedColdDamagePerFrenzyCharge"] = { + ["187_SupportedByEmpower"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", }, ["sign"] = "", }, - ["1482_ManaGainedFromEnemyDeath"] = { + ["5020_ChillEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 20, }, ["sign"] = "", }, - ["1273_LocalEvasionRatingIncreasePercent"] = { + ["8552_BurningGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + ["id"] = "explicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2325_PowerChargeOnKillChance"] = { + ["353_ChillEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_13669281", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + }, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["3059_ColdDamageAvoidance"] = { - ["specialCaseData"] = { - }, + ["1186_IncreasedCastSpeedSpellEcho"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", - }, - ["2752_DamageWhileLeeching"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", + ["Wand"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - }, - ["3692_CurseEffectVulnerability"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - }, ["sign"] = "", - }, - ["131_SocketedColdGemQuality"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1164882313", - ["text"] = "#% to Quality of Socketed Cold Gems", + ["1HMace"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "+", }, - ["1165_ClawIncreasedAccuracyRating"] = { - ["specialCaseData"] = { - }, + ["224_IncreasedCastSpeedSpellEcho"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1297965523", - ["text"] = "#% increased Accuracy Rating with Claws", + ["type"] = "explicit", + ["id"] = "explicit.stat_725896422", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["6675_AttackDamageCorruptedItem"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2347923784", - ["text"] = "#% increased Attack Damage if Corrupted", + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["1690_MinionDamage"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["872_BlockPercent"] = { + ["1567_FrenzyChargeOnHitChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 10, }, ["sign"] = "", }, - ["1522_MinimumEnduranceCharges"] = { + ["1664_PhysicalAddedAsFire"] = { + ["Boots"] = { + ["min"] = 3, + ["max"] = 11, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["2HMace"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 15, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["Staff"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 7, + ["max"] = 30, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["type"] = "explicit", + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + }, + ["Wand"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 7, + ["max"] = 20, }, - ["sign"] = "+", }, - ["136_SocketedLightningGemQuality"] = { + ["996_FireDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1065580342", - ["text"] = "#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2139660169", + ["text"] = "#% to Fire Damage over Time Multiplier with Attack Skills", }, ["sign"] = "+", + ["Quiver"] = { + ["min"] = 16, + ["max"] = 25, + }, }, - ["1567_AvoidShock"] = { + ["2194_CausesBleeding25PercentChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, ["sign"] = "", }, - ["3744_DamageAffectedByAuras"] = { + ["5250_PowerChargeOnCriticalStrikeChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1419713278", - ["text"] = "You and nearby Allies deal #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + }, + ["Chest"] = { + ["min"] = 3, + ["max"] = 3, }, ["sign"] = "", }, - ["1172_CastSpeedWithDualWield"] = { + ["113_LocalIncreaseSocketedSpellGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "explicit", + ["id"] = "explicit.stat_446733281", + ["text"] = "# to Level of Socketed Spell Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1054_MaceIncreasedPhysicalDamage"] = { + ["5467_ElusiveOnCriticalStrikeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3774831856", - ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "explicit", + ["id"] = "explicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, }, - ["8026_PurityOfFireReservationEfficiency"] = { + ["697_FlaskEffectReducedDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + }, + ["Flask"] = { + ["min"] = 25, + ["max"] = 25, }, ["sign"] = "", }, - ["1527_MinimumFrenzyCharges"] = { + ["1316_IncreasedManaAndCost"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["type"] = "explicit", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["sign"] = "+", }, - ["2321_EnduranceChargeOnKillChance"] = { + ["887_BlockPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + }, + ["Gloves"] = { + ["min"] = 4, + ["max"] = 5, }, ["sign"] = "", }, - ["4963_ChaosDamageAttackSkills"] = { + ["7344_MapMonsterPacksVaalMapWorlds"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1959092146", - ["text"] = "#% increased Chaos Damage with Attack Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", }, - ["sign"] = "", }, - ["140_SocketedStrengthGemQuality"] = { + ["1008_GlobalAddedPhysicalDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_122841557", - ["text"] = "#% to Quality of Socketed Strength Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", }, - ["sign"] = "+", + ["Gloves"] = { + ["min"] = 7.5, + ["max"] = 9.5, + }, + ["sign"] = "", }, - ["8032_PurityOfLightningReservationEfficiency"] = { + ["4471_LightningDamageESLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3411256933", - ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_308127151", + ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + }, + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, ["sign"] = "", }, - ["1217_MaceCriticalStrikeMultiplier"] = { + ["1564_PowerChargeOnCriticalStrikeChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_458899422", - ["text"] = "#% to Critical Strike Multiplier with Maces or Sceptres", + ["type"] = "explicit", + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", }, - ["sign"] = "+", + ["Chest"] = { + ["min"] = 15, + ["max"] = 15, + }, + ["sign"] = "", }, - ["1523_MaximumEnduranceCharges"] = { + ["149_LocalIncreaseSocketedFireGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["type"] = "explicit", + ["id"] = "explicit.stat_3422008440", + ["text"] = "#% to Quality of Socketed Fire Gems", }, ["sign"] = "+", + ["Boots"] = { + ["min"] = 3, + ["max"] = 7, + }, }, - ["5177_CurseDuration"] = { + ["7591_MaximumLifeConvertedToEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", }, ["sign"] = "", }, - ["2606_MinionElementalResistancesForJewel"] = { + ["921_AllAttributes"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - }, ["sign"] = "+", - }, - ["947_DamageWhileLeechingLife"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 1, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3591306273", - ["text"] = "#% increased Damage while Leeching Life", + ["Ring"] = { + ["min"] = 1, + ["max"] = 16, }, - ["sign"] = "", }, - ["1151_BowIncreasedAttackSpeed"] = { - ["specialCaseData"] = { + ["1203_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HSword"] = { + ["min"] = 28, + ["max"] = 32, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["Wand"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["2HMace"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["Staff"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["1HMace"] = { + ["min"] = 28, + ["max"] = 32, }, ["sign"] = "", - }, - ["5594_FasterBleedDamage"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["Claw"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["2HSword"] = { + ["min"] = 28, + ["max"] = 32, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + }, + ["Bow"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["2HAxe"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["1HAxe"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["2HWeapon"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 32, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["2338_EnergyShieldRegenerationPerMinute"] = { + ["1567_FrenzyChargeOnHitChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 10, }, ["sign"] = "", }, - ["5734_EnduranceChargeIfHitRecently"] = { + ["5242_DamagePer15Strength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2894476716", - ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "explicit", + ["id"] = "explicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + }, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["6687_LocalChanceToIntimidateOnHit"] = { + ["8644_WarcryAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + }, + ["Helmet"] = { + ["min"] = 21, + ["max"] = 30, }, ["sign"] = "", }, - ["2198_LightRadius"] = { + ["1564_PowerChargeOnCriticalStrikeChanceMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 15, }, ["sign"] = "", }, - ["6782_AllElementalResistanceCorruptedItem"] = { - ["specialCaseData"] = { + ["1288_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 42, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3731630482", - ["text"] = "#% to all Elemental Resistances if Corrupted", + ["type"] = "explicit", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", }, - ["sign"] = "+", - }, - ["5235_IncreasedDamagePerPowerCharge"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 6, + ["max"] = 42, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 42, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 42, + }, }, - ["4964_ChaosDamageSpellSkills"] = { + ["3920_FlaskChanceToNotConsumeCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3761858151", - ["text"] = "#% increased Chaos Damage with Spell Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", }, ["sign"] = "", - }, - ["3891_ChanceToAvoidBleeding"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 6, + ["max"] = 10, }, + }, + ["1308_MaximumLifeIncreasePercent"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["Chest"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Shield"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["Belt"] = { + ["min"] = 3, + ["max"] = 10, + }, }, - ["1170_WandIncreasedAccuracyRating"] = { + ["4386_AttackSpeedHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2150183156", - ["text"] = "#% increased Accuracy Rating with Wands", + ["type"] = "explicit", + ["id"] = "explicit.stat_4137521191", + ["text"] = "#% increased Attack Speed if you've been Hit Recently", + }, + ["Ring"] = { + ["min"] = 8, + ["max"] = 12, }, ["sign"] = "", }, - ["6914_RecoverManaPercentOnBlock"] = { - ["specialCaseData"] = { + ["2689_LightningResistancePenetration"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3041288981", - ["text"] = "Recover #% of your maximum Mana when you Block", + ["2HMace"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 8, }, ["sign"] = "", - }, - ["5150_SpellCriticalMultiplierWithDualWield"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["Bow"] = { + ["min"] = 12, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2349237916", - ["text"] = "#% to Critical Strike Multiplier for Spells while Dual Wielding", + ["type"] = "explicit", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HSword"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "+", - }, - ["1402_ChaosDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 8, }, - ["sign"] = "", }, - ["1300_LifeRecoveryRate"] = { + ["1353_MinionGlobalSkillLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + ["id"] = "explicit.stat_3235814433", + ["text"] = "# to Level of all Raise Spectre Gems", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 1, + ["max"] = 2, }, - ["sign"] = "", }, - ["1575_ChillAndFreezeDuration"] = { + ["1302_EnergyShieldRegenerationPerMinuteMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", }, - ["1390_FireDamageLifeLeechPermyriad"] = { + ["404_SocketedSpellCriticalStrikeChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have #% to Critical Strike Chance", }, - ["sign"] = "", + ["Helmet"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["sign"] = "+", }, - ["928_AttackDamage"] = { + ["4385_AttackSpeedKilledRecently"] = { + ["2HMace"] = { + ["min"] = 20, + ["max"] = 20, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 20, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 20, + ["max"] = 20, }, - ["sign"] = "", }, - ["6697_DamageTakenCorruptedItem"] = { - ["specialCaseData"] = { + ["1127_ChaosDamageAndChaosSkillDuration"] = { + ["1HSword"] = { + ["min"] = 60, + ["max"] = 99, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3309607228", - ["text"] = "#% reduced Damage taken if Corrupted", + ["Wand"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["2HMace"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["Staff"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 99, }, ["sign"] = "", - }, - ["1899_BeltIncreasedFlaskDuration"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["Claw"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["2HSword"] = { + ["min"] = 60, + ["max"] = 99, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + }, + ["Bow"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["2HAxe"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["1HAxe"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 99, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["5843_GraceReservationEfficiency"] = { + ["238_TotemSpeedAttackSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_900639351", - ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 18, + ["max"] = 25, + }, }, - ["4432_AilmentDamage"] = { - ["specialCaseData"] = { + ["2277_FasterIgniteDamage"] = { + ["Wand"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["sign"] = "", + ["Staff"] = { + ["min"] = 18, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", + ["type"] = "explicit", + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + }, + ["Boots"] = { + ["min"] = 7, + ["max"] = 12, }, - ["sign"] = "", - }, - ["1914_AttackerTakesDamageNoRange"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 8, + ["max"] = 15, }, - ["sign"] = "", }, - ["2749_RecoverLifePercentOnBlock"] = { + ["2991_ArcaneSurgeEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", + ["type"] = "explicit", + ["id"] = "explicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", }, ["sign"] = "", }, - ["3278_HasOnslaught"] = { + ["2511_ChanceToFreezeShockIgniteProliferation"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1520059289", - ["text"] = "Onslaught", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["1454_MaximumEnergyShieldLeechRate"] = { + ["1593_IgnitingConfluxMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "explicit", + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 30, }, ["sign"] = "", }, - ["1478_GainManaOnBlock"] = { + ["2196_CausesBleedingChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, ["sign"] = "", }, - ["6775_IncreasedLifeCorruptedItem"] = { - ["specialCaseData"] = { - }, + ["3075_LightningDamageAvoidance"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3887484120", - ["text"] = "#% increased maximum Life if Corrupted", + ["type"] = "explicit", + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Quiver"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 5, + ["max"] = 10, + }, }, - ["956_SpellDamageWithStaff"] = { + ["1753_IgniteChanceAndDamageMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "explicit", + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", }, - ["1361_ChaosResistance"] = { + ["8029_PurityOfFireReservationEfficiency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", }, - ["sign"] = "+", + ["Amulet"] = { + ["min"] = 50, + ["max"] = 60, + }, + ["sign"] = "", }, - ["1159_IncreasedAccuracyPercent"] = { + ["5112_LightningResistanceAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", }, ["sign"] = "", }, - ["1576_ShockDuration"] = { + ["1279_ArmourEvasionForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", }, ["sign"] = "", }, - ["915_PercentageDexterity"] = { + ["1100_SelfFireAndColdDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", }, ["sign"] = "", }, - ["1468_LifeGainedFromEnemyDeath"] = { - ["specialCaseData"] = { - }, + ["5125_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", }, - ["sign"] = "", - }, - ["1563_AvoidChill"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - }, ["sign"] = "", - }, - ["113_LocalIncreaseSocketedSupportGemLevel"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 80, + ["max"] = 100, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", + ["Staff"] = { + ["min"] = 80, + ["max"] = 100, }, - ["sign"] = "+", }, - ["5126_SpellCriticalChanceWithShield"] = { + ["3263_AuraEffectOnEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_952509814", - ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["type"] = "explicit", + ["id"] = "explicit.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", }, ["sign"] = "", }, - ["940_DegenerationDamage"] = { + ["8042_Quiver2AdditionalPierceOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", }, ["sign"] = "", }, - ["130_SocketedChaosGemQuality"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2062835769", - ["text"] = "#% to Quality of Socketed Chaos Gems", + ["1705_MinionDamageAndMinionMaximumLife"] = { + ["1HSword"] = { + ["min"] = 34, + ["max"] = 59, }, - ["sign"] = "+", - }, - ["2229_FrostbiteOnHitLevel"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", + ["2HMace"] = { + ["min"] = 34, + ["max"] = 59, }, - }, - ["1649_PhysicalAddedAsFire"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["1HMace"] = { + ["min"] = 34, + ["max"] = 59, }, ["sign"] = "", - }, - ["6930_AddedManaRegenWithShield"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3762868276", - ["text"] = "Regenerate # Mana per Second while holding a Shield", + ["Claw"] = { + ["min"] = 34, + ["max"] = 59, }, - ["sign"] = "", - }, - ["1360_MaximumChaosResistanceImplicit"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 34, + ["max"] = 59, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, - ["sign"] = "+", - }, - ["88_LocalIncreaseSocketedGemLevel"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", + ["2HAxe"] = { + ["min"] = 34, + ["max"] = 59, }, - ["sign"] = "+", - }, - ["1596_BurnDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 59, }, - ["sign"] = "", - }, - ["8129_RemoveIgniteOnFlaskUse"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 34, + ["max"] = 59, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", + ["specialCaseData"] = { }, }, - ["1599_AreaOfEffect"] = { + ["4140_FrenzyChargeWhenHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_881914531", + ["text"] = "#% chance to gain a Frenzy Charge when Hit", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 20, }, ["sign"] = "", }, - ["4893_DoubleDamageChance"] = { - ["specialCaseData"] = { + ["2664_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["min"] = 12, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", }, - ["sign"] = "", - }, - ["5027_ColdDamageAttackSkills"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 12, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_860668586", - ["text"] = "#% increased Cold Damage with Attack Skills", + ["specialCaseData"] = { }, ["sign"] = "", }, - ["907_StrengthImplicit"] = { + ["1316_IncreasedManaAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["sign"] = "+", }, - ["1302_MaximumManaIncreasePercent"] = { + ["2993_OnslaughtEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", }, ["sign"] = "", }, - ["8295_SpellsDoubleDamageChance"] = { - ["specialCaseData"] = { - }, + ["1282_EvasionRating"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2813626504", - ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + }, + ["Ring"] = { + ["min"] = 3, + ["max"] = 170, + }, + ["AbyssJewel"] = { + ["min"] = 36, + ["max"] = 250, }, - ["sign"] = "", - }, - ["1939_ReducedReservation"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 36, + ["max"] = 250, + }, + ["AnyJewel"] = { + ["min"] = 36, + ["max"] = 250, }, - ["sign"] = "", }, - ["1741_ChanceToFreeze"] = { + ["1146_TwoHandColdDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, ["sign"] = "", }, - ["6296_FlatLightningDamageTaken"] = { - ["specialCaseData"] = { - }, + ["3260_ChanceForDoubleStunDuration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_465051235", - ["text"] = "# Lightning Damage taken from Hits", + ["type"] = "explicit", + ["id"] = "explicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", }, - ["sign"] = "-", - }, - ["1362_MaximumElementalResistanceImplicit"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 7, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["1HMace"] = { + ["min"] = 7, + ["max"] = 15, }, - ["sign"] = "+", - }, - ["8025_PurityOfFireReservation"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3003688066", - ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", - }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 25, + }, }, - ["4396_AddedColdDamagePerDexterity"] = { + ["5192_CurseDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "explicit", + ["id"] = "explicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", }, ["sign"] = "", }, - ["875_SpellDamageSuppressed"] = { - ["specialCaseData"] = { + ["1497_ManaGainedFromEnemyDeath"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4116705863", - ["text"] = "Prevent #% of Suppressed Spell Damage", + ["2HMace"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "+", - }, - ["3890_BleedingImmunity"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 6, }, - }, - ["30_HasXSockets"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 1, + ["max"] = 6, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", + ["type"] = "explicit", + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", }, - }, - ["2719_AttackAndCastSpeedWithOnslaught"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2320884914", - ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1169_SwordIncreasedAccuracyRating"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2090868905", - ["text"] = "#% increased Accuracy Rating with Swords", + ["Quiver"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1221_WandCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1241396104", - ["text"] = "#% to Critical Strike Multiplier with Wands", + ["Staff"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "+", - }, - ["1395_ColdDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1184_CriticalStrikeChance"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["Ring"] = { + ["min"] = 1, + ["max"] = 6, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 6, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 6, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 6, }, - ["sign"] = "", }, - ["1296_LifeRegeneration"] = { + ["1100_SelfFireAndLightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", }, ["sign"] = "", }, - ["1350_MaximumColdResistanceImplicit"] = { + ["1113_LocalColdDamageTwoHand"] = { + ["2HMace"] = { + ["min"] = 4, + ["max"] = 276, + }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 276, }, - ["sign"] = "+", - }, - ["1065_SwordIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 4, + ["max"] = 276, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 276, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814560373", - ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "explicit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, - ["sign"] = "", - }, - ["1131_SpellAddedColdDamageTwoHand"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 4, + ["max"] = 276, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["Staff"] = { + ["min"] = 4, + ["max"] = 276, }, - ["sign"] = "", - }, - ["3247_AuraEffect"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 276, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 276, }, - ["sign"] = "", - }, - ["3062_UnholyMightOnKillPercentChance"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 276, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["1HSword"] = { + ["min"] = 4, + ["max"] = 276, }, - ["sign"] = "", }, - ["2532_ChaosDamageTaken"] = { - ["specialCaseData"] = { + ["1585_AvoidStun"] = { + ["Gloves"] = { + ["min"] = 31, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_496011033", - ["text"] = "# Chaos Damage taken", + ["BaseJewel"] = { + ["min"] = 21, + ["max"] = 30, }, - ["sign"] = "-", - }, - ["3340_SkeletonDamage"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 31, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3059357595", - ["text"] = "Skeletons deal #% increased Damage", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["6298_LightningDamageSpellSkills"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 31, + ["max"] = 50, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3935031607", - ["text"] = "#% increased Lightning Damage with Spell Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", }, - ["sign"] = "", - }, - ["1357_LightningResistance"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 21, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["AnyJewel"] = { + ["min"] = 21, + ["max"] = 30, }, - ["sign"] = "+", }, - ["1298_LifeRegenerationPercentPerEnduranceCharge"] = { - ["specialCaseData"] = { - }, + ["319_ChanceToFreezeShockIgniteProliferation"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", }, - ["sign"] = "", - }, - ["6696_AllDamageCorruptedItem"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_767196662", - ["text"] = "#% increased Damage if Corrupted", - }, ["sign"] = "", - }, - ["1291_IncreasedLife"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", }, - ["2781_VaalSkillDamage"] = { + ["2870_BleedingDamageChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", }, ["sign"] = "", }, - ["1485_MinionLife"] = { + ["5343_DisciplineReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["3272_LightningPenetrationWeapon"] = { - ["specialCaseData"] = { - }, + ["926_StrengthIntelligenceForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3301510262", - ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", }, - ["sign"] = "", - }, - ["96_LocalIncreaseSocketedChaosGemLevel"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", + ["specialCaseData"] = { }, ["sign"] = "+", - }, - ["1738_ChanceToIgnite"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["sign"] = "", }, - ["1301_IncreasedMana"] = { - ["specialCaseData"] = { + ["1665_PhysicalAddedAsCold"] = { + ["1HMace"] = { + ["min"] = 7, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7, + ["max"] = 20, }, - ["sign"] = "+", - }, - ["1132_SpellAddedLightningDamageTwoHand"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["min"] = 3, + ["max"] = 11, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", }, - ["sign"] = "", - }, - ["5595_FasterPoisonDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["3270_ColdPenetrationWeapon"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 7, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1211769158", - ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["Quiver"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["1072_WandIncreasedPhysicalDamage"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 7, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2769075491", - ["text"] = "#% increased Physical Damage with Wands", + ["2HSword"] = { + ["min"] = 7, + ["max"] = 30, }, - ["sign"] = "", - }, - ["2683_ChanceToGainOnslaughtOnKill"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["Bow"] = { + ["min"] = 7, + ["max"] = 20, }, - ["sign"] = "", - }, - ["5226_DamagePer15Intelligence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 30, }, - ["sign"] = "", - }, - ["2187_ChanceToBleed"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["Claw"] = { + ["min"] = 7, + ["max"] = 20, }, - ["sign"] = "", }, - ["135_SocketedIntelligenceGemQuality"] = { - ["specialCaseData"] = { - }, + ["4767_IncreasedCastSpeedTwoHandedKilledRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3174776455", - ["text"] = "#% to Quality of Socketed Intelligence Gems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", }, - ["sign"] = "+", - }, - ["1220_SwordCriticalStrikeMultiplier"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3114492047", - ["text"] = "#% to Critical Strike Multiplier with Swords", + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 20, + ["max"] = 20, }, - ["sign"] = "+", }, - ["1060_BowIncreasedPhysicalDamage"] = { + ["938_TotemDamageAttackSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_402920808", - ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "explicit", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 35, + }, }, - ["1355_MaximumLightningResistanceImplicit"] = { + ["1234_CriticalStrikeMultiplierWithBows"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", }, ["sign"] = "+", + ["Quiver"] = { + ["min"] = 8, + ["max"] = 38, + }, }, - ["1399_LightningDamageLifeLeechPermyriad"] = { + ["1500_MinionLifeSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", }, - ["1658_FireAddedAsChaos"] = { + ["3096_NearbyEnemiesAreBlindedMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2276_SummonTotemCastSpeed"] = { + ["1131_LocalIncreasedAttackSpeedAddedChaos"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", }, ["sign"] = "", }, - ["125_IncreaseSocketedSupportGemQuality"] = { + ["2680_NearbyEnemiesAreBlindedMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", - }, - ["sign"] = "+", - }, - ["2156_AdditionalBlock"] = { - ["specialCaseData"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["1095_GlobalAddedColdDamage"] = { + ["4393_IncreasedAttackSpeedPerDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", }, ["sign"] = "", }, - ["1158_IncreasedAccuracy"] = { + ["2764_RecoverLifePercentOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + }, + ["sign"] = "", + ["Shield"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "+", }, - ["1745_ChanceToShock"] = { + ["7590_LifeAddedAsEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["type"] = "explicit", + ["id"] = "explicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", }, ["sign"] = "", }, - ["2223_CurseOnHitLevelElementalWeakness"] = { - ["specialCaseData"] = { + ["2808_VaalSkillCriticalStrikeChance"] = { + ["Gloves"] = { + ["min"] = 80, + ["max"] = 120, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "explicit", + ["id"] = "explicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", }, - }, - ["1558_CannotBeIgnited"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["min"] = 80, + ["max"] = 120, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", + ["specialCaseData"] = { }, + ["sign"] = "", }, - ["1935_ManaReservationEfficiency"] = { + ["1113_LocalColdDamageTwoHandAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, ["sign"] = "", }, - ["959_SpellDamageWithDualWield"] = { - ["specialCaseData"] = { + ["362_ChanceToPoisonSupported"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, ["sign"] = "", - }, - ["1265_LocalPhysicalDamageReductionRatingPercent"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["type"] = "explicit", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, - ["sign"] = "", - }, - ["949_DamageWhileLeechingMana"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1994684426", - ["text"] = "#% increased Damage while Leeching Mana", + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", }, - }, - ["Exarch"] = { - ["1346_FireResistancePinnaclePresence"] = { + ["8132_RemoveIgniteOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1299790658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 29, - ["max"] = 36, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["4674_ScorchedGroundWhileMovingPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["2871_PoisonChanceAndDurationForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4054012096", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, }, }, - ["3774_LightningGolemBuffEffectPinnaclePresence"] = { + ["1124_LocalLightningDamageAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, - }, }, - ["1133_SpellAddedChaosDamagePinnaclePresence"] = { + ["4305_AdditionalCriticalStrikeChanceWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3206883665", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", }, - ["Helmet"] = { - ["min"] = 23.5, - ["max"] = 43, + ["Chest"] = { + ["min"] = 0.5, + ["max"] = 2, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1517_MovementVelocityPinnaclePresence"] = { + ["3075_LightningDamageAvoidanceMaven"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1702124724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 13, - ["max"] = 16, + ["Shield"] = { + ["min"] = 8, + ["max"] = 10, }, ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["min"] = 8, + ["max"] = 10, }, }, - ["979_FireDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["1144_SpellAddedPhysicalDamageHybrid"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1870961528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", }, + ["sign"] = "", + }, + ["8570_ShockedGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1473289174", + ["text"] = "Unaffected by Shock", + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["903_FleshOfferingEffectPinnaclePresence"] = { + ["2871_PoisonDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_862077496", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, - }, }, - ["1114_ChaosDamageUniquePresence"] = { + ["5779_GainOnslaughtDuringSoulGainPrevention"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2444070126", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", }, ["Gloves"] = { - ["min"] = 10.5, - ["max"] = 19, + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["6057_HeraldBonusThunderEffect"] = { + ["901_BlockingBlocksSpellsUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3814686091", - ["text"] = "Herald of Thunder has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", }, ["sign"] = "", }, - ["1183_SpellCriticalStrikeChance"] = { + ["1401_PhysicalDamageLifeLeechPermyriad"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 28, - ["max"] = 45, + ["min"] = 0.3, + ["max"] = 0.5, }, - ["Helmet"] = { - ["min"] = 28, - ["max"] = 45, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, }, - ["6051_HeraldBonusPurityEffect"] = { - ["specialCaseData"] = { - }, + ["347_SupportedByLesserMultipleProjectilesDamage"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2126027382", - ["text"] = "Herald of Purity has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_584144941", + ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", }, - ["sign"] = "", - }, - ["3692_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, - }, ["sign"] = "", - }, - ["4460_FreezeProliferationUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1925521713", - ["text"] = "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["Gloves"] = { + ["Wand"] = { ["min"] = 16, ["max"] = 20, }, - ["sign"] = "", }, - ["5313_CurseEffectDespairUniquePresence"] = { - ["specialCaseData"] = { + ["1376_ChaosResistance"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2909684383", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 35, }, - ["sign"] = "", - }, - ["987_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["Bow"] = { + ["min"] = 5, + ["max"] = 35, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2163155983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 35, }, - ["sign"] = "+", ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["min"] = 5, + ["max"] = 35, }, - }, - ["5660_FleshAndStoneAreaOfEffect"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789978501", - ["text"] = "Flesh and Stone has #% increased Area of Effect", + ["Quiver"] = { + ["min"] = 5, + ["max"] = 35, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + ["Wand"] = { + ["min"] = 5, + ["max"] = 35, }, - ["sign"] = "", - }, - ["1104_LightningDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2668120423", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + ["Staff"] = { + ["min"] = 5, + ["max"] = 35, }, - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 5, + ["max"] = 35, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 35, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["Claw"] = { + ["min"] = 5, + ["max"] = 35, }, - }, - ["4661_EnduranceChargePerSecond"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 5, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2555092341", - ["text"] = "Gain an Endurance Charge every # seconds", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 35, }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 15, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 35, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 5, + ["max"] = 35, }, - ["sign"] = "", }, - ["1488_MinionRunSpeed"] = { + ["710_FlaskBuffResistancesWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 22, + ["Flask"] = { + ["min"] = 21, + ["max"] = 40, }, ["sign"] = "", }, - ["5618_FireDamageTakenGainedAsLife"] = { + ["1286_LocalBaseArmourEvasionRatingAndLife"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["type"] = "explicit", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, - ["sign"] = "", + ["sign"] = "+", }, - ["902_BoneOfferingEffectUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1929_AttackerTakesDamageNoRange"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2290911895", - ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["Shield"] = { + ["min"] = 1, + ["max"] = 50, }, - }, - ["1355_MaximumLightningResistanceEldritch"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 1, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["specialCaseData"] = { }, + ["sign"] = "", ["Chest"] = { ["min"] = 1, - ["max"] = 3, + ["max"] = 50, }, - ["sign"] = "+", - }, - ["4663_PowerChargePerSecond"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 1, + ["max"] = 10, }, + }, + ["1287_GlobalEvasionRatingPercent"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3533655459", - ["text"] = "Gain a Power Charge every # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", }, - ["Chest"] = { - ["min"] = 10, + ["Ring"] = { + ["min"] = 7, ["max"] = 15, }, - ["sign"] = "", - }, - ["1131_SpellAddedColdDamagePinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3349767748", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 36, }, - ["Helmet"] = { - ["min"] = 27.5, - ["max"] = 50.5, + ["Belt"] = { + ["min"] = 7, + ["max"] = 15, }, - ["sign"] = "", }, - ["3687_CurseEffectElementalWeaknessUniquePresence"] = { + ["959_ChaosDamageOverTimePrefix"] = { + ["1HSword"] = { + ["min"] = 60, + ["max"] = 94, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_771845579", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 60, + ["max"] = 94, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["Bow"] = { + ["min"] = 60, + ["max"] = 94, }, - ["sign"] = "", - }, - ["1361_ChaosResistanceUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 60, + ["max"] = 134, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_744196525", - ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 134, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 94, + }, + ["Claw"] = { + ["min"] = 60, + ["max"] = 94, }, }, - ["3686_CurseEffectConductivityUniquePresence"] = { + ["1493_GainManaOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3547319552", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["type"] = "explicit", + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", }, ["sign"] = "", }, - ["3687_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["3961_NearbyEnemiesChilledOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2029969019", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["type"] = "explicit", + ["id"] = "explicit.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", }, - ["sign"] = "", }, - ["1344_MaximumFireResistanceImplicit"] = { - ["specialCaseData"] = { + ["1346_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 3, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skill Gems", }, - ["sign"] = "+", - ["Boots"] = { + ["1HMace"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 1, }, - }, - ["1929_GlobalIgniteProlifPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_282734421", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 3, }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 23, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2294_CurseEffectiveness"] = { + ["1151_IncreasedAttackSpeed"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 16, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["Ring"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { ["min"] = 7, - ["max"] = 12, + ["max"] = 13, }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["Shield"] = { + ["min"] = 5, + ["max"] = 16, }, }, - ["4662_FrenzyChargePerSecondUniquePresence"] = { + ["4369_AddedFireDamagePerStrength"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 4, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2847070982", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["Staff"] = { + ["min"] = 3, + ["max"] = 4, }, - ["sign"] = "", - }, - ["1344_MaximumFireResistanceEldritch"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 2, + ["max"] = 4, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", }, - ["Chest"] = { - ["min"] = 1, + ["1HSword"] = { + ["min"] = 2, ["max"] = 3, }, - ["sign"] = "+", - }, - ["1131_SpellAddedColdDamageUniquePresence"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 3, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1018817416", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 33.5, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 3, }, - ["sign"] = "", }, - ["1130_SpellAddedFireDamage"] = { + ["976_LocalPhysicalDamagePercentFortify"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 28, + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["1096_ColdDamage"] = { - ["specialCaseData"] = { - }, + ["2918_ChanceToBlockIfDamagedRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_852195286", + ["text"] = "#% Chance to Block Attack Damage if you were Damaged by a Hit Recently", }, - ["Gloves"] = { - ["min"] = 8.5, - ["max"] = 17, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", - }, - ["3775_ChaosGolemBuffEffectUniquePresence"] = { ["specialCaseData"] = { }, - ["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", + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["4673_SappedGroundWhileMovingUniquePresence"] = { + ["8295_SpellBlockIfBlockedSpellRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2220831041", - ["text"] = "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_4263513561", + ["text"] = "#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 9, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 7, + ["max"] = 12, }, }, - ["904_SpiritOfferingEffect"] = { + ["8792_SupremeEgo"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3544391750", - ["text"] = "Spirit Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["type"] = "explicit", + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", }, }, - ["3689_CurseEffectFlammability"] = { + ["1660_MineLayingSpeedOnWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", - }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["type"] = "explicit", + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", }, ["sign"] = "", }, - ["1132_SpellAddedLightningDamage"] = { + ["1954_ReducedReservation"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 12, + ["max"] = 14, }, ["Helmet"] = { - ["min"] = 18, - ["max"] = 32.5, + ["min"] = 8, + ["max"] = 14, }, - ["sign"] = "", }, - ["1352_ColdResistanceUniquePresence"] = { + ["3003_AttackSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2240274773", - ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["sign"] = "", + ["Belt"] = { + ["min"] = 8, + ["max"] = 14, }, }, - ["2974_DamagePerFrenzyCharge"] = { + ["1316_IncreasedManaAndRegen"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 51, + ["max"] = 55, }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 6, + ["Ring"] = { + ["min"] = 51, + ["max"] = 55, }, - ["sign"] = "", }, - ["1093_ColdDamagePercentagePinnaclePresence"] = { + ["1405_FireDamageLifeLeechPermyriad"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1576689223", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["min"] = 0.3, + ["max"] = 0.5, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, }, - ["1690_MinionDamageUniquePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 41, - }, + ["4933_ChanceToGainOnslaughtOnFlaskUse"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4189960647", - ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1324450398", + ["text"] = "#% chance to gain Onslaught when you use a Flask", }, - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, + ["AbyssJewel"] = { + ["min"] = 5, + ["max"] = 10, }, - }, - ["5235_IncreasedDamagePerPowerChargeUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1394771132", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Power Charge", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Helmet"] = { + ["AnyJewel"] = { ["min"] = 5, - ["max"] = 7, + ["max"] = 10, }, - ["sign"] = "", }, - ["1570_AvoidStun"] = { - ["specialCaseData"] = { - }, + ["5517_EnchantmentMaim"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + ["id"] = "explicit.stat_2745149002", + ["text"] = "Enemies Maimed by you take #% increased Damage Over Time", + }, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 5, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 5, }, }, - ["1930_ShockProliferation"] = { + ["256_TrapDamageCooldownSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2035759353", - ["text"] = "Shocks you inflict spread to other Enemies within a Radius of #", + ["type"] = "explicit", + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", }, ["Gloves"] = { - ["min"] = 12, - ["max"] = 17, + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["1929_GlobalIgniteProlifUniquePresence"] = { - ["specialCaseData"] = { - }, + ["8003_ProjectileDamagePerEnemyPierced"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_28294288", - ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", }, - ["sign"] = "", - }, - ["3772_FireGolemBuffEffectPinnaclePresence"] = { ["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, + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 30, }, - }, - ["5835_GolemBuffEffectUnique"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 15, + ["max"] = 30, }, + }, + ["8195_ChanceToShockAttackersOnBlock"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2109043683", - ["text"] = "#% increased Effect of Buffs granted by your Golems", + ["type"] = "explicit", + ["id"] = "explicit.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 50, }, - ["sign"] = "", - }, - ["6295_LightningDamageTakenGainedAsLife"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["sign"] = "", + ["Staff"] = { + ["min"] = 25, + ["max"] = 50, }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["Shield"] = { + ["min"] = 25, + ["max"] = 50, }, - ["sign"] = "", }, - ["5313_CurseEffectDespair"] = { - ["specialCaseData"] = { + ["1296_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 80, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3185156108", - ["text"] = "#% increased Despair Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", }, ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, - }, - ["sign"] = "", - }, - ["1084_FireDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1590336483", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + ["min"] = 3, + ["max"] = 80, }, ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, - }, + ["sign"] = "+", ["Chest"] = { - ["min"] = 24, - ["max"] = 36, - }, - }, - ["3698_ArcticArmourBuffEffectUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4047779849", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + ["min"] = 3, + ["max"] = 80, }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + ["Boots"] = { + ["min"] = 3, + ["max"] = 80, }, - ["sign"] = "", }, - ["3160_FlaskGainPerSecondPinnaclePresence"] = { + ["1659_TrapThrowSpeedOnWeapon"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519845279", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", - }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["type"] = "explicit", + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", }, ["sign"] = "", }, - ["1644_TrapThrowSpeedUniquePresence"] = { + ["725_FlaskBuffAvoidChillFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2479119864", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_475518267", + ["text"] = "#% chance to Avoid being Frozen during Effect", }, - ["Gloves"] = { - ["min"] = 13, - ["max"] = 17, + ["Flask"] = { + ["min"] = 31, + ["max"] = 55, }, ["sign"] = "", }, - ["4441_CarrionGolemBuffEffect"] = { - ["specialCaseData"] = { + ["1154_LocalIncreasedAttackSpeedMultistrike"] = { + ["2HMace"] = { + ["min"] = 17, + ["max"] = 21, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2420972973", - ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["1HMace"] = { + ["min"] = 17, + ["max"] = 21, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["Dagger"] = { + ["min"] = 17, + ["max"] = 21, }, - }, - ["4334_AttackCriticalStrikeChanceUniquePresence"] = { - ["Gloves"] = { - ["min"] = 34, - ["max"] = 48, + ["Claw"] = { + ["min"] = 17, + ["max"] = 21, + }, + ["2HSword"] = { + ["min"] = 17, + ["max"] = 21, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3710240762", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 17, + ["max"] = 21, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 34, - ["max"] = 48, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 21, }, - }, - ["3690_CurseEffectFrostbite"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 17, + ["max"] = 21, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", + ["2HWeapon"] = { + ["min"] = 17, + ["max"] = 21, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 21, }, - ["sign"] = "", - }, - ["6295_LightningDamageTakenGainedAsLifeUniquePresence"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, + }, + ["951_DamageWhileHoldingAShieldForJewel"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1146717028", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 14, + }, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 14, + }, }, - ["1517_MovementVelocity"] = { + ["968_WeaponSpellDamageAndMana"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 39, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 39, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { + ["Dagger"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 39, }, - ["Boots"] = { + ["1HMace"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 39, }, }, - ["4945_ChanceToUnnerveOnHit"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["4482_LightningExposureOnHit"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 20, }, ["sign"] = "", - }, - ["984_ColdDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 5, + ["Dagger"] = { + ["min"] = 11, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 11, ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, + ["2HWeapon"] = { + ["min"] = 11, ["max"] = 20, }, - }, - ["1087_FireDamageUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067485824", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 25, + ["Wand"] = { + ["min"] = 11, + ["max"] = 20, }, - ["sign"] = "", }, - ["960_PhysicalDamagePercentUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_604852150", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", - }, + ["5806_GainRandomChargeOnBlock"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1104_LightningDamagePercentagePinnaclePresence"] = { + ["1579_ChanceToAvoidFreezeAndChill"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1328859059", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + }, + ["AbyssJewel"] = { + ["min"] = 31, + ["max"] = 50, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["BaseJewel"] = { + ["min"] = 31, + ["max"] = 50, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["AnyJewel"] = { + ["min"] = 31, + ["max"] = 50, }, }, - ["1132_SpellAddedLightningDamageUniquePresence"] = { + ["3458_LocalLightningDamageAndPen"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", }, ["sign"] = "", }, - ["1360_MaximumChaosResistanceImplicitUniquePresence"] = { - ["specialCaseData"] = { - }, + ["4252_AreaOfEffectIfStunnedEnemyRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_575726461", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Chaos Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["2HMace"] = { + ["min"] = 25, + ["max"] = 45, + }, + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 45, }, - ["sign"] = "+", - }, - ["5024_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", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 35, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["1HMace"] = { + ["min"] = 25, + ["max"] = 35, }, - ["sign"] = "", }, - ["1130_SpellAddedFireDamageUniquePresence"] = { + ["6283_ShockEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_661603414", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", }, ["Helmet"] = { - ["min"] = 21.5, - ["max"] = 37.5, + ["min"] = 8, + ["max"] = 20, }, ["sign"] = "", }, - ["1357_LightningResistancePinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3980173235", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Lightning Resistance", + ["2687_FireResistancePenetration"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 29, - ["max"] = 36, + ["2HMace"] = { + ["min"] = 12, + ["max"] = 15, }, - }, - ["1570_AvoidStunPinnaclePresence"] = { ["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, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 8, }, - }, - ["8225_BrandAttachmentRangePinnaclePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 12, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2391109128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range", + ["type"] = "explicit", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 23, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["1929_GlobalIgniteProlif"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3281591194", - ["text"] = "Ignites you inflict spread to other Enemies within a Radius of #", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Gloves"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HSword"] = { ["min"] = 12, - ["max"] = 17, + ["max"] = 15, }, - ["sign"] = "", - }, - ["7935_PhysicalDamageTakenGainedAsLife"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4021566756", - ["text"] = "#% of Physical Damage taken Recouped as Life", + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 8, }, - ["sign"] = "", - }, - ["6295_LightningDamageTakenGainedAsLifePinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3870554516", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 8, }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 15, }, - ["sign"] = "", }, - ["1114_ChaosDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["1984_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HSword"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3953801646", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + ["Wand"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Gloves"] = { - ["min"] = 15.5, - ["max"] = 28.5, + ["2HMace"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "", - }, - ["3247_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", + ["Staff"] = { + ["min"] = 21, + ["max"] = 25, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 21, + ["max"] = 25, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 36, + ["Dagger"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 29, - ["max"] = 36, + ["Claw"] = { + ["min"] = 21, + ["max"] = 25, }, - }, - ["3775_ChaosGolemBuffEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 21, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1648511635", - ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["Bow"] = { + ["min"] = 21, + ["max"] = 25, }, - }, - ["1645_MineLayingSpeed"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["1HAxe"] = { + ["min"] = 21, + ["max"] = 25, }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 13, + ["2HWeapon"] = { + ["min"] = 21, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 21, + ["max"] = 25, }, - ["sign"] = "", - }, - ["1107_LightningDamagePinnaclePresence"] = { ["specialCaseData"] = { }, + }, + ["1614_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 15, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2925105924", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 43, + ["2HMace"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, - ["sign"] = "", - }, - ["1130_SpellAddedFireDamagePinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3954869480", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, - ["Helmet"] = { - ["min"] = 30.5, - ["max"] = 56, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, }, - ["sign"] = "", }, - ["1129_SpellAddedPhysicalDamageUniquePresence"] = { - ["specialCaseData"] = { + ["3077_UnholyMightOnKillPercentChance"] = { + ["Wand"] = { + ["min"] = 15, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4272276606", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_3991482957", + ["text"] = "#% chance to gain Unholy Might for 10 seconds on Kill", }, - ["Helmet"] = { - ["min"] = 17, - ["max"] = 30.5, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 25, }, - ["sign"] = "", - }, - ["2436_FlaskEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 17, + ["Claw"] = { + ["min"] = 5, + ["max"] = 25, }, - ["sign"] = "", }, - ["3692_CurseEffectVulnerabilityPinnaclePresence"] = { + ["8474_TailwindOnCriticalStrikeMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1668340466", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1085545682", + ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1129_SpellAddedPhysicalDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["4907_DoubleDamageChance"] = { + ["2HMace"] = { + ["min"] = 12, + ["max"] = 14, }, - ["Helmet"] = { - ["min"] = 11.5, - ["max"] = 22.5, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 7, }, ["sign"] = "", - }, - ["1488_MinionRunSpeedUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 14, + }, + ["Bow"] = { + ["min"] = 12, + ["max"] = 14, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_93625449", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 28, + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 7, }, - ["sign"] = "", - }, - ["3690_CurseEffectFrostbiteUniquePresence"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 6, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3199183447", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + ["Wand"] = { + ["min"] = 6, + ["max"] = 7, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["Staff"] = { + ["min"] = 12, + ["max"] = 14, + }, + ["2HSword"] = { + ["min"] = 12, + ["max"] = 14, }, - ["sign"] = "", - }, - ["3773_IceGolemBuffEffectUniquePresence"] = { ["specialCaseData"] = { }, - ["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", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 7, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["Claw"] = { + ["min"] = 6, + ["max"] = 7, + }, + ["2HWeapon"] = { + ["min"] = 12, + ["max"] = 14, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 7, + }, + ["Shield"] = { + ["min"] = 6, + ["max"] = 7, }, }, - ["3689_CurseEffectFlammabilityUniquePresence"] = { + ["1119_LightningDamageWeaponPrefixAndFlat"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, ["sign"] = "", }, - ["994_PhysicalDamage"] = { + ["2871_PoisonDurationSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", }, ["Gloves"] = { - ["min"] = 5, - ["max"] = 10.5, + ["min"] = 17, + ["max"] = 20, }, ["sign"] = "", }, - ["975_PhysicalDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["336_IncreasedWeaponElementalDamagePercentSupported"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_841219865", - ["text"] = "While a Unique Enemy is in your Presence, #% to Physical Damage over Time Multiplier", + ["1HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["3774_LightningGolemBuffEffectUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 18, + ["max"] = 20, }, - ["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", + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", }, - }, - ["1567_AvoidShock"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 20, }, - }, - ["3687_CurseEffectElementalWeakness"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["4672_BrittleGroundWhileMovingPinnaclePresence"] = { + ["5609_FasterBleedDamageMaven"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", }, ["sign"] = "", ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["min"] = 11, + ["max"] = 15, }, }, - ["2974_DamagePerFrenzyChargeUniquePresence"] = { + ["1043_IncreasedAxeDamageForJewel"] = { + ["BaseJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2415020123", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 7, + ["1HAxe"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 16, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 16, }, - ["sign"] = "", }, - ["1240_StunThresholdReduction"] = { + ["1288_LocalEvasionRatingIncreasePercentSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 17, + ["type"] = "explicit", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", }, ["sign"] = "", }, - ["2276_SummonTotemCastSpeedPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["968_TwoHandWeaponSpellDamageAndMana"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_100371300", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 23, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Staff"] = { + ["min"] = 8, + ["max"] = 55, }, }, - ["4122_ActionSpeedImplicitUniquePresence"] = { - ["specialCaseData"] = { + ["3162_ChancetoGainPhasingOnKill"] = { + ["Quiver"] = { + ["min"] = 5, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1829486532", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Action Speed", + ["Wand"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 7, - }, - }, - ["1214_AttackCriticalStrikeMultiplierUniquePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 15, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_26879978", - ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", }, - ["Chest"] = { - ["min"] = 28, - ["max"] = 37, + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 8, }, - ["sign"] = "+", - }, - ["1171_IncreasedCastSpeedUniquePresence"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 8, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2016247664", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 13, - ["max"] = 17, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 25, }, - ["sign"] = "", - }, - ["1485_MinionLifeUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3044748809", - ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", - }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 35, - }, - ["sign"] = "", }, - ["4354_ReducedAttackManaCost"] = { + ["1147_LightningDamageWeaponPrefixAndFlat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2859471749", - ["text"] = "#% reduced Mana Cost of Attacks", - }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["sign"] = "", }, - ["960_PhysicalDamagePercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2545907302", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + ["924_Intelligence"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 55, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["Claw"] = { + ["min"] = 8, + ["max"] = 55, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 60, }, - }, - ["1355_MaximumLightningResistanceEldritchUniquePresence"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 8, + ["max"] = 55, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 8, + ["max"] = 55, }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["Boots"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "+", - }, - ["2885_DamagePerEnduranceCharge"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 8, + ["max"] = 55, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["Chest"] = { + ["min"] = 8, + ["max"] = 55, }, - }, - ["975_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["Staff"] = { + ["min"] = 8, + ["max"] = 55, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4084536353", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Physical Damage over Time Multiplier", + ["Ring"] = { + ["min"] = 8, + ["max"] = 55, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "+", ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["min"] = 8, + ["max"] = 55, + }, + ["specialCaseData"] = { }, }, - ["1215_SpellCriticalStrikeMultiplier"] = { + ["2164_PhysicalDamageTakenAsChaosUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_274716455", - ["text"] = "#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", }, ["Chest"] = { - ["min"] = 20, - ["max"] = 31, + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "+", + ["sign"] = "", }, - ["2276_SummonTotemCastSpeedUniquePresence"] = { - ["specialCaseData"] = { + ["1611_BurnDamage"] = { + ["2HWeapon"] = { + ["min"] = 31, + ["max"] = 60, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2033289503", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 19, + ["1HMace"] = { + ["min"] = 26, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 26, + ["max"] = 40, }, - }, - ["3738_OfferingEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 26, + ["max"] = 40, }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 24, + ["Staff"] = { + ["min"] = 31, + ["max"] = 60, }, - ["sign"] = "", }, - ["5024_ColdDamageTakenGainedAsLifePinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["3909_AreaOfEffectIfKilledRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181576428", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["2HMace"] = { + ["min"] = 17, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 17, + ["max"] = 35, }, - ["sign"] = "", - }, - ["8484_TempestShieldBuffEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2662416009", - ["text"] = "Tempest Shield has #% increased Buff Effect", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + ["1HMace"] = { + ["min"] = 17, + ["max"] = 25, }, - ["sign"] = "", }, - ["1112_IncreasedChaosDamageUniquePresence"] = { + ["930_PercentageDexterity"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 12, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2875239648", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["min"] = 5, + ["max"] = 12, }, ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["min"] = 5, + ["max"] = 12, }, }, - ["5265_DamageTakenGainedAsLifeUniquePresence"] = { + ["573_TriggerOnRareWarlordsMark"] = { ["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, + ["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"] = "", }, - ["1565_AvoidIgniteUniquePresence"] = { - ["specialCaseData"] = { - }, + ["3963_AddedColdDamagePerFrenzyCharge"] = { ["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, - }, - }, - ["984_ColdDamageOverTimeMultiplierPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 29, - ["max"] = 38, + ["type"] = "explicit", + ["id"] = "explicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2619970520", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Damage over Time Multiplier", + ["Quiver"] = { + ["min"] = 10, + ["max"] = 10, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 38, + ["sign"] = "", + ["Ring"] = { + ["min"] = 3, + ["max"] = 5.5, }, }, - ["5832_RageOnHitImplicitUniquePresence"] = { + ["7648_AddedColdDamageIfCritRecently"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", }, ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["min"] = 19, + ["max"] = 37.5, }, ["sign"] = "", }, - ["1352_ColdResistance"] = { + ["386_SocketedAttackCriticalMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have #% to Critical Strike Multiplier", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["Gloves"] = { + ["min"] = 30, + ["max"] = 90, }, + ["sign"] = "+", }, - ["1171_IncreasedCastSpeed"] = { + ["6720_NearbyEnemyFireDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_3914021960", + ["text"] = "Nearby Enemies have #% to Fire Resistance", }, ["Helmet"] = { - ["min"] = 8, - ["max"] = 13, + ["min"] = 9, + ["max"] = 12, }, - ["sign"] = "", + ["sign"] = "-", }, - ["4674_ScorchedGroundMovingImplicit"] = { + ["7638_MineDetonationSpeedAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_396238230", - ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, - }, }, - ["6057_HeraldBonusThunderEffectUniquePresence"] = { + ["4909_DoubleDamageStunnedRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_649027123", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_4224978303", + ["text"] = "#% chance to deal Double Damage if you have Stunned an Enemy Recently", }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["2294_CurseEffectivenessUniquePresence"] = { + ["2340_PowerChargeOnKillChance"] = { + ["1HMace"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 4, + ["max"] = 10, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2669364207", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + ["type"] = "explicit", + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 4, + ["max"] = 10, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 15, + ["Wand"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 15, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 10, }, - }, - ["6039_HeraldBonusAgonyEffect"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572910724", - ["text"] = "Herald of Agony has #% increased Buff Effect", + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["3691_CurseEffectPunishmentPinnaclePresence"] = { - ["specialCaseData"] = { + ["1601_SelfStatusAilmentDuration"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_40584863", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + }, + ["Shield"] = { + ["min"] = 20, + ["max"] = 30, }, ["Helmet"] = { ["min"] = 20, - ["max"] = 23, + ["max"] = 30, }, - ["sign"] = "", - }, - ["4673_SappedGroundWhileMovingPinnaclePresence"] = { ["specialCaseData"] = { }, - ["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"] = "", + ["Chest"] = { + ["min"] = 20, + ["max"] = 30, + }, ["Boots"] = { - ["min"] = 8, - ["max"] = 11, + ["min"] = 20, + ["max"] = 30, }, }, - ["1084_FireDamagePercentage"] = { + ["1914_BeltIncreasedFlaskDuration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["Belt"] = { + ["min"] = 4, + ["max"] = 33, }, }, - ["5265_DamageTakenGainedAsLife"] = { + ["3456_LocalFireDamagePenetrationHybrid"] = { + ["Dagger"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 7, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 7, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 19, + ["1HSword"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", }, - ["5618_FireDamageTakenGainedAsLifePinnaclePresence"] = { - ["specialCaseData"] = { + ["1286_LocalEvasionRating"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 500, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1613190388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["min"] = 6, + ["max"] = 500, }, - ["sign"] = "", - }, - ["2978_OnslaughtEffect"] = { ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 6, + ["max"] = 500, }, - ["sign"] = "", ["Boots"] = { ["min"] = 6, - ["max"] = 17, + ["max"] = 500, }, }, - ["3160_FlaskGainPerSecond"] = { + ["672_FlaskRemovesShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1193283913", - ["text"] = "Flasks gain # Charges every 3 seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_1823903967", + ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 3, + }, + ["2882_PoisonDamageSupported"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + }, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["4662_FrenzyChargePerSecond"] = { + ["5842_ChanceToIgniteAddedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3906868545", - ["text"] = "Gain a Frenzy Charge every # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_794830148", + ["text"] = "Adds # to # Fire Damage against Ignited Enemies", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 15, + ["Ring"] = { + ["min"] = 28.5, + ["max"] = 42, }, ["sign"] = "", }, - ["1350_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["331_ProjectileSpeedSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, - ["sign"] = "+", + ["sign"] = "", }, - ["1093_ColdDamagePercentage"] = { + ["1378_AllResistancesMaven"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all maximum Elemental Resistances", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, - }, + ["sign"] = "+", ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["min"] = 1, + ["max"] = 1, + }, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["3775_ChaosGolemBuffEffectPinnaclePresence"] = { + ["2309_CurseEffectiveness"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["Shield"] = { + ["min"] = 8, + ["max"] = 12, }, }, - ["4460_FreezeProliferation"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3388565132", - ["text"] = "Freezes you inflict spread to other Enemies within a Radius of #", + ["6774_ChanceToMaimSupported"] = { + ["2HMace"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 17, + ["1HMace"] = { + ["min"] = 15, + ["max"] = 20, }, ["sign"] = "", - }, - ["1183_SpellCriticalStrikeChanceUniquePresence"] = { + ["Dagger"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 15, + ["max"] = 20, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4191234472", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 43, - ["max"] = 57, + ["2HAxe"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 43, - ["max"] = 57, + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 20, }, - }, - ["1346_FireResistanceUniquePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3521653836", - ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Resistance", + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["specialCaseData"] = { }, }, - ["3692_CurseEffectVulnerability"] = { + ["307_AreaDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", }, ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["1565_AvoidIgnitePinnaclePresence"] = { + ["1967_DegenDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_911929910", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, - }, - }, - ["1344_MaximumFireResistanceImplicitUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 2, - ["max"] = 3, + ["sign"] = "", + ["Shield"] = { + ["min"] = 4, + ["max"] = 10, }, }, - ["4460_FreezeProliferationPinnaclePresence"] = { + ["360_ShockEffectSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3414959001", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within a Radius of #", + ["type"] = "explicit", + ["id"] = "explicit.stat_1106668565", + ["text"] = "Socketed Gems are Supported by Level # Innervate", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 23, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["987_ChaosDamageOverTimeMultiplier"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 20, + ["4429_ChanceToAvoidProjectilesMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", - }, - ["specialCaseData"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3114696875", + ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 20, + ["sign"] = "", + ["Boots"] = { + ["min"] = 11, + ["max"] = 15, }, }, - ["1132_SpellAddedLightningDamagePinnaclePresence"] = { + ["1306_LocalBaseArmourEnergyShieldAndLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3874289", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells", - }, - ["Helmet"] = { - ["min"] = 37.5, - ["max"] = 65, + ["type"] = "explicit", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["sign"] = "", + ["sign"] = "+", }, - ["5024_ColdDamageTakenGainedAsLife"] = { + ["8767_GhostDance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["type"] = "explicit", + ["id"] = "explicit.stat_3590128077", + ["text"] = "Ghost Dance", }, - ["sign"] = "", }, - ["1645_MineLayingSpeedUniquePresence"] = { + ["4323_AttackAndCastSpeedIfHitRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1516326076", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1483753325", + ["text"] = "#% increased Attack and Cast Speed if you've Hit an Enemy Recently", }, ["Gloves"] = { - ["min"] = 13, - ["max"] = 17, + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["7935_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { - ["specialCaseData"] = { + ["1306_LocalBaseArmourAndLife"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 38, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1300694383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", }, ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "", - }, - ["902_BoneOfferingEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1801289192", - ["text"] = "Bone Offering has #% increased Effect", + ["sign"] = "+", + ["Chest"] = { + ["min"] = 18, + ["max"] = 38, }, - ["sign"] = "", ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["min"] = 18, + ["max"] = 38, }, }, - ["1567_AvoidShockUniquePresence"] = { - ["specialCaseData"] = { + ["1280_LocalPhysicalDamageReductionRatingPercent"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 100, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3401199213", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked", + ["type"] = "explicit", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Shield"] = { + ["min"] = 101, + ["max"] = 110, + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 100, }, - }, - ["6039_HeraldBonusAgonyEffectPinnaclePresence"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3001066983", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect", + ["sign"] = "", + ["Chest"] = { + ["min"] = 15, + ["max"] = 110, }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["Boots"] = { + ["min"] = 15, + ["max"] = 100, }, - ["sign"] = "", }, - ["3688_CurseEffectEnfeeble"] = { + ["129_LocalIncreaseSocketedActiveSkillGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3293830776", - ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_4215039317", + ["text"] = "# to Level of Socketed Active Skill Gems", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["4122_ActionSpeedImplicitPinnaclePresence"] = { + ["5155_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["2HMace"] = { + ["min"] = 50, + ["max"] = 50, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2251857767", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed", + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 7, - ["max"] = 8, + ["Staff"] = { + ["min"] = 50, + ["max"] = 50, }, - }, - ["3698_ArcticArmourBuffEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 50, + ["max"] = 50, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3995612171", - ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1478247313", + ["text"] = "#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 32, + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Bow"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", }, - ["1104_LightningDamagePercentage"] = { + ["1319_AddedManaRegeneration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + }, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 8, + }, + ["AbyssJewel"] = { + ["min"] = 1.1, + ["max"] = 4, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["BaseJewel"] = { + ["min"] = 1.1, + ["max"] = 4, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 1.1, + ["max"] = 4, }, }, - ["1112_IncreasedChaosDamage"] = { + ["1577_AvoidElementalStatusAilments"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["Shield"] = { + ["min"] = 16, + ["max"] = 35, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 30, + ["Boots"] = { + ["min"] = 31, + ["max"] = 45, }, }, - ["3686_CurseEffectConductivityPinnaclePresence"] = { + ["1965_ChaosDamageTakenPercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2095999895", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", - }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["type"] = "explicit", + ["id"] = "explicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", }, ["sign"] = "", }, - ["1131_SpellAddedColdDamage"] = { - ["specialCaseData"] = { + ["1203_LocalCriticalStrikeChance"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 38, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["Wand"] = { + ["min"] = 10, + ["max"] = 38, }, - ["Helmet"] = { - ["min"] = 13, - ["max"] = 25, + ["2HMace"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 38, }, ["sign"] = "", - }, - ["4441_CarrionGolemBuffEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 38, }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["Bow"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 38, + }, + ["specialCaseData"] = { }, }, - ["2391_DamageRemovedFromManaBeforeLifeUniquePresence"] = { + ["1558_GainPowerChargeOnKillingFrozenEnemy"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", }, ["sign"] = "", }, - ["1171_IncreasedCastSpeedPinnaclePresence"] = { + ["308_TrapDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4098747485", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", }, - ["Helmet"] = { + ["Gloves"] = { ["min"] = 18, - ["max"] = 21, + ["max"] = 25, }, ["sign"] = "", }, - ["960_PhysicalDamagePercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - }, + ["1725_ProjectileDamageSupported"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 30, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", }, - ["Chest"] = { + ["Gloves"] = { ["min"] = 15, - ["max"] = 30, + ["max"] = 25, }, + ["sign"] = "", }, - ["8225_BrandAttachmentRange"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["8298_SpellsDoubleDamageChance"] = { + ["1HMace"] = { + ["min"] = 4, + ["max"] = 7, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 15, + ["Dagger"] = { + ["min"] = 4, + ["max"] = 7, }, - }, - ["4662_FrenzyChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 10, + ["max"] = 14, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_560848642", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", - }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["type"] = "explicit", + ["id"] = "explicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", }, - ["sign"] = "", - }, - ["4334_AttackCriticalStrikeChance"] = { - ["Gloves"] = { - ["min"] = 19, - ["max"] = 36, + ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Strike Chance for Attacks", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 14, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 7, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 19, - ["max"] = 36, + ["Wand"] = { + ["min"] = 4, + ["max"] = 7, }, }, - ["5835_GolemBuffEffectUniqueUniquePresence"] = { - ["specialCaseData"] = { + ["1524_AdditionalPierce"] = { + ["Wand"] = { + ["min"] = 2, + ["max"] = 2, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2159248495", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + ["type"] = "explicit", + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", - }, - ["1084_FireDamagePercentagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2782184338", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + ["Bow"] = { + ["min"] = 2, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 2, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["Boots"] = { + ["min"] = 2, + ["max"] = 5, }, }, - ["3738_OfferingEffectPinnaclePresence"] = { + ["1760_ShockChanceAndEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2526554500", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + ["type"] = "explicit", + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, - ["Chest"] = { - ["min"] = 29, - ["max"] = 36, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, ["sign"] = "", }, - ["904_SpiritOfferingEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["6784_PoisonDamageAndLocalChanceOnHit"] = { + ["1HSword"] = { + ["min"] = 20, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2399066987", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["Dagger"] = { + ["min"] = 20, + ["max"] = 30, }, - }, - ["1214_AttackCriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 20, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3714003708", - ["text"] = "#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", }, - ["Chest"] = { + ["2HWeapon"] = { ["min"] = 20, - ["max"] = 31, + ["max"] = 30, }, - ["sign"] = "+", - }, - ["2978_OnslaughtEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 30, }, + ["Claw"] = { + ["min"] = 20, + ["max"] = 30, + }, + }, + ["1198_CriticalStrikeChanceSpellsSupported"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3209267362", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "explicit", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 82, + }, + ["Wand"] = { + ["min"] = 60, + ["max"] = 82, }, - }, - ["1344_MaximumFireResistanceImplicitPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 60, + ["max"] = 82, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 4, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 82, }, }, - ["3771_RockGolemBuffEffectPinnaclePresence"] = { + ["1340_ExperienceIncrease"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, + ["Ring"] = { + ["min"] = 2, + ["max"] = 3, }, + ["sign"] = "", }, - ["1133_SpellAddedChaosDamageUniquePresence"] = { + ["922_Strength"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["2HMace"] = { + ["min"] = 8, + ["max"] = 55, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Boots"] = { + ["min"] = 8, + ["max"] = 55, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1554912650", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", }, - ["Helmet"] = { - ["min"] = 15.5, - ["max"] = 28, + ["Ring"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "", - }, - ["4938_ChanceToIntimidateOnHit"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 8, + ["max"] = 55, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2089652545", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["1HSword"] = { + ["min"] = 8, + ["max"] = 55, }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["Staff"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "", - }, - ["3688_CurseEffectEnfeebleUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 8, + ["max"] = 55, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_937462392", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + ["Chest"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["Belt"] = { + ["min"] = 8, + ["max"] = 60, + }, + ["1HMace"] = { + ["min"] = 8, + ["max"] = 55, }, ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, + ["min"] = 8, + ["max"] = 55, + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 55, + }, + ["1HAxe"] = { + ["min"] = 8, + ["max"] = 55, }, - ["sign"] = "", }, - ["1644_TrapThrowSpeedPinnaclePresence"] = { + ["1113_LocalColdDamageRanged"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_547463927", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 21, + ["type"] = "explicit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, ["sign"] = "", }, - ["1644_TrapThrowSpeed"] = { + ["6890_GlobalMaimOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 13, + ["type"] = "explicit", + ["id"] = "explicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 15, + ["max"] = 20, + }, }, - ["3688_CurseEffectEnfeeblePinnaclePresence"] = { - ["specialCaseData"] = { + ["1291_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 28, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_38083709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["min"] = 24, + ["max"] = 28, }, - ["sign"] = "", - }, - ["904_SpiritOfferingEffectUniquePresence"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2814835155", - ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["sign"] = "", + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, + }, ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["min"] = 24, + ["max"] = 28, }, }, - ["6051_HeraldBonusPurityEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["355_ColdDamagePrefixColdPenetration"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005679448", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1991958615", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1107_LightningDamage"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 16, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 11.5, - ["max"] = 21, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, - ["sign"] = "", }, - ["4354_ReducedAttackManaCostUniquePresence"] = { + ["1004_ChaosDamageOverTimeMultiplierWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1116269888", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_3913282911", + ["text"] = "#% to Chaos Damage over Time Multiplier with Attack Skills", }, - ["Helmet"] = { - ["min"] = 27, - ["max"] = 36, + ["sign"] = "+", + ["Quiver"] = { + ["min"] = 16, + ["max"] = 25, }, - ["sign"] = "", }, - ["5835_GolemBuffEffectUniquePinnaclePresence"] = { + ["8448_FireResistanceAilments"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", }, ["sign"] = "", }, - ["4122_ActionSpeedImplicit"] = { + ["394_SocketedGemsDealAdditionalFireDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2878959938", - ["text"] = "#% increased Action Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, - }, }, - ["5832_RageOnHitImplicitPinnaclePresence"] = { + ["399_SocketedSkillsAttackSpeed"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", }, ["Gloves"] = { - ["min"] = 0.3, - ["max"] = 0.6, + ["min"] = 18, + ["max"] = 18, }, ["sign"] = "", }, - ["4663_PowerChargePerSecondUniquePresence"] = { + ["6718_NearbyEnemyColdDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_46472075", - ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_2674336304", + ["text"] = "Nearby Enemies have #% to Cold Resistance", }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 12, }, - ["sign"] = "", + ["sign"] = "-", }, - ["1214_AttackCriticalStrikeMultiplierPinnaclePresence"] = { - ["specialCaseData"] = { + ["2687_SpellAddedFireDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["min"] = 4, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2825010848", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Critical Strike Multiplier for Attack Damage", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 4, + ["max"] = 4, }, - ["Chest"] = { - ["min"] = 36, - ["max"] = 43, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["sign"] = "+", - }, - ["1350_MaximumColdResistanceEldritchUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3444931985", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Cold Resistance", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Chest"] = { - ["min"] = 2, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 4, + }, + ["Wand"] = { + ["min"] = 4, ["max"] = 4, }, - ["sign"] = "+", }, - ["1564_AvoidFreezePinnaclePresence"] = { + ["6719_NearbyEnemyElementalDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2661498709", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + ["type"] = "explicit", + ["id"] = "explicit.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 9, }, + ["sign"] = "", }, - ["1136_IncreasedAttackSpeedUniquePresence"] = { - ["specialCaseData"] = { - }, + ["4385_AttackSpeedIfEnemyKilledRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3401410854", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", }, - ["Gloves"] = { + ["1HWeapon"] = { ["min"] = 13, - ["max"] = 17, + ["max"] = 20, }, - ["sign"] = "", - }, - ["1362_MaximumResistancesUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3062531896", - ["text"] = "While a Unique Enemy is in your Presence, #% to all maximum Resistances", + ["2HWeapon"] = { + ["min"] = 13, + ["max"] = 30, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 2, - ["max"] = 3, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 13, + ["max"] = 30, }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 3, + ["1HAxe"] = { + ["min"] = 13, + ["max"] = 20, }, }, - ["4661_EnduranceChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1842_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_951862199", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_2135335407", + ["text"] = "# to # Added Spell Fire Damage while wielding a Two Handed Weapon", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["AbyssJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, }, - ["sign"] = "", - }, - ["1136_IncreasedAttackSpeedPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2446980928", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 21, - }, ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 3.5, + ["max"] = 29.5, + }, }, - ["4672_BrittleGroundWhileMovingUniquePresence"] = { + ["7607_MeleeDamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1771822543", - ["text"] = "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_4091369450", + ["text"] = "#% increased Melee Damage during any Flask Effect", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 9, + ["Belt"] = { + ["min"] = 20, + ["max"] = 35, }, }, - ["2974_DamagePerFrenzyChargePinnaclePresence"] = { - ["specialCaseData"] = { + ["986_GlobalDamageOverTimeMultiplier"] = { + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1855179125", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + ["2HMace"] = { + ["min"] = 16, + ["max"] = 45, }, - ["Gloves"] = { + ["1HMace"] = { ["min"] = 7, - ["max"] = 8, + ["max"] = 26, }, - ["sign"] = "", - }, - ["1096_ColdDamageUniquePresence"] = { - ["specialCaseData"] = { + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 16, + ["max"] = 45, + }, + ["Claw"] = { + ["min"] = 7, + ["max"] = 26, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4057155645", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_3988349707", + ["text"] = "#% to Damage over Time Multiplier", }, - ["Gloves"] = { - ["min"] = 12.5, - ["max"] = 22.5, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1114_ChaosDamage"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 26, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["Amulet"] = { + ["min"] = 7, + ["max"] = 26, }, - ["Gloves"] = { - ["min"] = 7.5, - ["max"] = 14, + ["1HSword"] = { + ["min"] = 7, + ["max"] = 26, + }, + ["Wand"] = { + ["min"] = 7, + ["max"] = 26, + }, + ["Staff"] = { + ["min"] = 16, + ["max"] = 45, + }, + ["2HSword"] = { + ["min"] = 16, + ["max"] = 45, + }, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1567_AvoidShockPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3823702653", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + ["Bow"] = { + ["min"] = 7, + ["max"] = 45, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 45, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 26, + }, + ["Dagger"] = { + ["min"] = 7, + ["max"] = 26, }, }, - ["1690_MinionDamage"] = { + ["968_SpellDamage"] = { ["Gloves"] = { - ["min"] = 14, - ["max"] = 29, + ["min"] = 18, + ["max"] = 38, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["min"] = 3, + ["max"] = 26, + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 25, }, }, - ["3772_FireGolemBuffEffectUniquePresence"] = { + ["362_PoisonDamageSupported"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, + ["sign"] = "", }, - ["1183_SpellCriticalStrikeChancePinnaclePresence"] = { + ["968_WeaponSpellDamageEfficacy"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1412947753", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["1HWeapon"] = { + ["min"] = 45, + ["max"] = 60, + }, + ["Wand"] = { + ["min"] = 45, + ["max"] = 60, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 58, - ["max"] = 69, + ["Dagger"] = { + ["min"] = 45, + ["max"] = 60, }, - ["Helmet"] = { - ["min"] = 58, - ["max"] = 69, + ["1HMace"] = { + ["min"] = 45, + ["max"] = 60, }, }, - ["5313_CurseEffectDespairPinnaclePresence"] = { + ["111_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2775855429", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", }, - ["5660_FleshAndStoneAreaOfEffectUniquePresence"] = { + ["8760_DivineShield"] = { ["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", - }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + ["type"] = "explicit", + ["id"] = "explicit.stat_2048995720", + ["text"] = "Divine Shield", }, - ["sign"] = "", }, - ["1093_ColdDamagePercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2127607252", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", - }, + ["1484_MaximumLifeOnKillPercent"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 24, - ["max"] = 36, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", }, ["Chest"] = { - ["min"] = 24, - ["max"] = 36, + ["min"] = 3, + ["max"] = 6, }, + ["sign"] = "", }, - ["979_FireDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["4406_AttacksTauntOnHitChance"] = { + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 8, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2112874376", - ["text"] = "While a Unique Enemy is in your Presence, #% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 3, + ["max"] = 8, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["3773_IceGolemBuffEffectPinnaclePresence"] = { + ["1705_MinionDamageOnWeaponDoubleDamage"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 61, - ["max"] = 72, - }, }, - ["903_FleshOfferingEffectUniquePresence"] = { + ["1198_SpellCritChanceForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 14, + }, + }, + ["8309_SpellDamagePer10Strength"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3599488608", - ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["8634_WarcryEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["1634_LocalArmourAndEvasionAndStunRecovery"] = { + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_794753348", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, - ["Chest"] = { - ["min"] = 35, - ["max"] = 42, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 17, }, - ["sign"] = "", - }, - ["1346_FireResistance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["sign"] = "", + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, }, - ["sign"] = "+", ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["min"] = 6, + ["max"] = 17, }, }, - ["2276_SummonTotemCastSpeed"] = { - ["specialCaseData"] = { + ["968_WeaponSpellDamage"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 109, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, - ["sign"] = "", - ["Boots"] = { + ["1HWeapon"] = { ["min"] = 10, - ["max"] = 15, + ["max"] = 109, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 109, }, - }, - ["4945_ChanceToUnnerveOnHitPinnaclePresence"] = { ["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", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 109, }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 95, + ["Shield"] = { + ["min"] = 10, + ["max"] = 109, }, - ["sign"] = "", }, - ["4663_PowerChargePerSecondPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1186_IncreasedCastSpeedFasterCasting"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2703923310", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 5, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Wand"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - }, - ["3698_ArcticArmourBuffEffectPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3744585764", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + ["1HMace"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", }, - ["1570_AvoidStunUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1774_AttackAndCastSpeed"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3322913142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + ["type"] = "explicit", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["Quiver"] = { + ["min"] = 7, + ["max"] = 8, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["Amulet"] = { + ["min"] = 7, + ["max"] = 8, }, }, - ["6043_HeraldBonusAshEffect"] = { + ["1361_FireResistancePhysTakenAsFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2154349925", - ["text"] = "Herald of Ash has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["sign"] = "", + ["sign"] = "+", }, - ["979_FireDamageOverTimeMultiplier"] = { - ["Gloves"] = { + ["1614_AreaOfEffect"] = { + ["2HMace"] = { ["min"] = 5, ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", + ["Quiver"] = { + ["min"] = 7, + ["max"] = 15, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["2HSword"] = { ["min"] = 5, ["max"] = 20, }, - }, - ["1599_AreaOfEffectPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_568930056", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["Ring"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 20, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 23, - ["max"] = 30, + ["min"] = 7, + ["max"] = 15, }, - ["Helmet"] = { - ["min"] = 23, - ["max"] = 30, + ["Shield"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["1564_AvoidFreezeUniquePresence"] = { - ["specialCaseData"] = { + ["403_SocketedSpellsDamageFinal"] = { + ["2HMace"] = { + ["min"] = 20, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3887072924", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen", + ["Bow"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 40, + ["max"] = 40, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Dagger"] = { + ["min"] = 40, + ["max"] = 40, }, - }, - ["2436_FlaskEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4155771029", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", }, - ["Chest"] = { - ["min"] = 22, - ["max"] = 29, + ["Claw"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 40, + ["max"] = 40, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 40, + ["max"] = 40, }, - ["sign"] = "", - }, - ["1240_StunThresholdReductionUniquePresence"] = { ["specialCaseData"] = { }, + }, + ["4462_GlobalCooldownRecovery"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_944211673", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold", + ["type"] = "explicit", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", }, - ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Belt"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["Boots"] = { + ["min"] = 6, + ["max"] = 20, + }, }, - ["4672_BrittleGroundMovingImplicit"] = { + ["1129_ChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_984148407", - ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, + ["Quiver"] = { + ["min"] = 41, + ["max"] = 55, + }, + }, + ["1321_IncreasedManaRegenForJewel"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + }, + ["AbyssJewel"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 12, + ["max"] = 15, + }, + ["AnyJewel"] = { + ["min"] = 12, + ["max"] = 15, }, }, - ["1136_IncreasedAttackSpeed"] = { + ["2162_PhysicalDamageTakenAsFireAndLightningPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, - ["Gloves"] = { + ["Chest"] = { ["min"] = 8, - ["max"] = 13, + ["max"] = 9, }, ["sign"] = "", }, - ["1350_MaximumColdResistanceUniquePresence"] = { + ["1316_IncreasedManaAndOnHit"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", }, ["sign"] = "+", }, - ["8225_BrandAttachmentRangeUniquePresence"] = { + ["8707_ConsecratedGroundStationaryMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_636616197", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + ["type"] = "explicit", + ["id"] = "explicit.stat_4113372195", + ["text"] = "Effects of Consecrated Ground you create Linger for 1 second", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 19, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["5235_IncreasedDamagePerPowerCharge"] = { + ["1611_BurningDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", }, ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["3774_LightningGolemBuffEffect"] = { + ["1127_SpellAddedChaosDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527931375", - ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "explicit", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, - }, }, - ["1357_LightningResistance"] = { - ["specialCaseData"] = { + ["1146_SpellAddedColdDamagePenetrationHybrid"] = { + ["Wand"] = { + ["min"] = 7.5, + ["max"] = 31.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7.5, + ["max"] = 31.5, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 13, - ["max"] = 24, + ["Staff"] = { + ["min"] = 11.5, + ["max"] = 47, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, - }, - ["1361_ChaosResistance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["2HWeapon"] = { + ["min"] = 11.5, + ["max"] = 47, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["1HWeapon"] = { + ["min"] = 7.5, + ["max"] = 31.5, + }, + ["1HMace"] = { + ["min"] = 7.5, + ["max"] = 31.5, }, }, - ["1564_AvoidFreeze"] = { + ["1292_LocalEvasionAndEnergyShieldSuffix"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, - }, }, - ["3684_CurseEffectTemporalChains"] = { + ["145_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1662974426", - ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2062835769", + ["text"] = "#% to Quality of Socketed Chaos Gems", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 3, + ["max"] = 7, }, - ["sign"] = "", }, - ["1357_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, - }, - }, - ["3684_CurseEffectTemporalChainsUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_485385046", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 19, - }, - ["sign"] = "", - }, - ["1930_ShockProliferationPinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2830935139", - ["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, - }, - ["sign"] = "", - }, - ["3247_AuraEffect"] = { + ["258_ChanceToFreezeShockIgniteUnboundAilments"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "explicit", + ["id"] = "explicit.stat_3699494172", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, + ["1HWeapon"] = { + ["min"] = 18, ["max"] = 20, }, - ["Chest"] = { - ["min"] = 9, + ["1HMace"] = { + ["min"] = 18, ["max"] = 20, }, }, - ["1087_FireDamagePinnaclePresence"] = { + ["7658_AddedLightningDamageIfCritRecently"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3972399670", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_935623115", + ["text"] = "Adds # to # Lightning Damage if you've dealt a Critical Strike Recently", }, ["Gloves"] = { - ["min"] = 20.5, - ["max"] = 38, + ["min"] = 21, + ["max"] = 45.5, }, ["sign"] = "", }, - ["8484_TempestShieldBuffEffectUniquePresence"] = { + ["6721_NearbyEnemyLightningDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_942478380", - ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1849749435", + ["text"] = "Nearby Enemies have #% to Lightning Resistance", }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 41, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 12, }, - ["sign"] = "", + ["sign"] = "-", }, - ["1240_StunThresholdReductionPinnaclePresence"] = { + ["6283_LightningAilmentEffect"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", }, ["sign"] = "", }, - ["1361_ChaosResistancePinnaclePresence"] = { - ["specialCaseData"] = { + ["1296_LocalEnergyShield"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 100, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_74135418", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 100, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, ["sign"] = "+", + ["Chest"] = { + ["min"] = 3, + ["max"] = 100, + }, ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["min"] = 3, + ["max"] = 100, }, }, - ["7600_StrikeSkillsAdditionalTarget"] = { + ["5243_DamagePerBlockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1661253443", - ["text"] = "Strike Skills target # additional nearby Enemy", + ["type"] = "explicit", + ["id"] = "explicit.stat_3400437584", + ["text"] = "#% increased Damage per 1% Chance to Block Attack Damage", }, - ["Gloves"] = { + ["sign"] = "", + ["Shield"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "", }, - ["8634_WarcryEffectUniquePresence"] = { + ["1367_ColdDamageAvoidanceMaven"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3611265227", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect", + ["sign"] = "+", + ["Shield"] = { + ["min"] = 20, + ["max"] = 30, }, - ["Chest"] = { - ["min"] = 27, - ["max"] = 36, + ["Boots"] = { + ["min"] = 20, + ["max"] = 30, }, - ["sign"] = "", }, - ["3772_FireGolemBuffEffect"] = { + ["8748_Acrobatics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_269930125", - ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["type"] = "explicit", + ["id"] = "explicit.stat_383557755", + ["text"] = "Acrobatics", }, }, - ["6047_HeraldBonusIceEffectPinnaclePresence"] = { + ["4453_BleedDamageAndDuration"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["Ring"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["1344_MaximumFireResistanceEldritchPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["673_FlaskShockImmunity"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1133929401", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1823903967", + ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["3738_OfferingEffectUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1132843482", - ["text"] = "While a Unique Enemy is in your Presence, #% increased effect of Offerings", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { - ["min"] = 21, - ["max"] = 30, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1215_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["1957_FlatPhysicalDamageTaken"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_321765853", + ["text"] = "# Physical Damage taken from Hits", }, ["Chest"] = { - ["min"] = 36, - ["max"] = 43, + ["min"] = 34, + ["max"] = 50, }, - ["sign"] = "+", + ["sign"] = "-", }, - ["4673_SappedGroundMovingImplicit"] = { - ["specialCaseData"] = { + ["1288_LocalIncreasedEvasionAndLife"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 28, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1997664024", - ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "explicit", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 2, - ["max"] = 7, + ["Helmet"] = { + ["min"] = 24, + ["max"] = 28, }, - }, - ["1133_SpellAddedChaosDamage"] = { ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["sign"] = "", + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 21, + ["Boots"] = { + ["min"] = 24, + ["max"] = 28, }, - ["sign"] = "", }, - ["1488_MinionRunSpeedPinnaclePresence"] = { + ["8031_PurityOfIceReservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2809900883", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", - }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 34, + ["type"] = "explicit", + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", }, ["sign"] = "", }, - ["1350_MaximumColdResistancePinnaclePresence"] = { - ["specialCaseData"] = { + ["2247_MeleeDamageAndMeleeRange"] = { + ["Gloves"] = { + ["min"] = 2, + ["max"] = 4, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3415855998", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", }, - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["specialCaseData"] = { }, ["sign"] = "+", + ["Amulet"] = { + ["min"] = 2, + ["max"] = 2, + }, }, - ["903_FleshOfferingEffect"] = { + ["8779_PainAttunement"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3456379680", - ["text"] = "Flesh Offering has #% increased Effect", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["type"] = "explicit", + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", }, }, - ["1129_SpellAddedPhysicalDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["1333_ItemFoundRarityIncreasePrefix"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 18, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_485268361", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", }, ["Helmet"] = { - ["min"] = 24.5, - ["max"] = 46, + ["min"] = 8, + ["max"] = 24, + }, + ["Ring"] = { + ["min"] = 8, + ["max"] = 28, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 28, + }, + ["Boots"] = { + ["min"] = 8, + ["max"] = 18, + }, }, - ["2391_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { + ["1113_LocalColdDamageAndPen"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, ["sign"] = "", }, - ["1360_MaximumChaosResistanceImplicitPinnaclePresence"] = { + ["1386_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1HSword"] = { + ["min"] = 0.6, + ["max"] = 0.6, + }, ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_944522962", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Chaos Resistance", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 0.6, + ["max"] = 0.6, }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["2HSword"] = { + ["min"] = 0.6, + ["max"] = 0.6, }, - ["sign"] = "+", - }, - ["1362_MaximumResistancesPinnaclePresence"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_673499528", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all maximum Resistances", + ["type"] = "explicit", + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 0.6, + ["max"] = 0.6, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 4, + ["2HWeapon"] = { + ["min"] = 0.6, + ["max"] = 0.6, }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["1HWeapon"] = { + ["min"] = 0.6, + ["max"] = 0.6, }, }, - ["2885_DamagePerEnduranceChargePinnaclePresence"] = { + ["1250_ReducedExtraDamageFromCrits"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_740797388", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 7, - ["max"] = 8, + ["Shield"] = { + ["min"] = 21, + ["max"] = 60, }, }, - ["3689_CurseEffectFlammabilityPinnaclePresence"] = { - ["specialCaseData"] = { + ["5321_MalevolenceAuraEffect"] = { + ["1HMace"] = { + ["min"] = 28, + ["max"] = 40, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_323292443", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 28, + ["max"] = 40, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["Staff"] = { + ["min"] = 48, + ["max"] = 60, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", }, - ["sign"] = "", - }, - ["4938_ChanceToIntimidateOnHitUniquePresence"] = { ["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", + ["2HWeapon"] = { + ["min"] = 48, + ["max"] = 60, }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["1HWeapon"] = { + ["min"] = 28, + ["max"] = 40, + }, + ["Wand"] = { + ["min"] = 28, + ["max"] = 40, }, - ["sign"] = "", }, - ["6039_HeraldBonusAgonyEffectUniquePresence"] = { - ["specialCaseData"] = { + ["1174_LocalLightRadiusAndAccuracyPercent"] = { + ["1HSword"] = { + ["min"] = 9, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_503887731", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect", + ["Wand"] = { + ["min"] = 9, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["2HMace"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 9, + ["max"] = 20, }, ["sign"] = "", - }, - ["987_ChaosDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 9, + ["max"] = 20, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2634574895", - ["text"] = "While a Unique Enemy is in your Presence, #% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 9, + ["max"] = 20, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 20, }, - }, - ["1360_MaximumChaosResistanceImplicit"] = { - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["specialCaseData"] = { }, - ["sign"] = "+", }, - ["1344_MaximumFireResistanceEldritchUniquePresence"] = { + ["4468_ColdDamageESLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475684070", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Fire Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.4, }, - ["sign"] = "+", + ["sign"] = "", }, - ["4938_ChanceToIntimidateOnHitPinnaclePresence"] = { + ["7945_ReducedPhysicalReflectTakenMaven"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["Chest"] = { + ["min"] = 100, + ["max"] = 100, }, ["sign"] = "", }, - ["1645_MineLayingSpeedPinnaclePresence"] = { + ["3089_ColdDamageTakenPercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3827973062", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", - }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 21, + ["type"] = "explicit", + ["id"] = "explicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", }, ["sign"] = "", }, - ["1599_AreaOfEffect"] = { + ["602_FlaskExtraMaxCharges"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1437957544", + ["text"] = "# to Maximum Charges", + }, + ["AbyssJewel"] = { + ["min"] = 16, + ["max"] = 35, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 18, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 16, + ["max"] = 35, }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 18, + ["AnyJewel"] = { + ["min"] = 16, + ["max"] = 35, }, }, - ["1485_MinionLifePinnaclePresence"] = { + ["5117_CriticalChanceIncreasedByUncappedLightningResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4057257145", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", - }, - ["Helmet"] = { - ["min"] = 32, - ["max"] = 41, + ["type"] = "explicit", + ["id"] = "explicit.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", }, - ["sign"] = "", }, - ["994_PhysicalDamagePinnaclePresence"] = { + ["160_SupportedByArcaneSurge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3477311591", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 21.5, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "", }, - ["2978_OnslaughtEffectUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1810_AddedFireDamageWithDaggers"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_491577732", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you", + ["type"] = "explicit", + ["id"] = "explicit.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 25, }, - }, - ["5265_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", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 8, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 24, - ["max"] = 31, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 25, }, - ["sign"] = "", }, - ["5235_IncreasedDamagePerPowerChargePinnaclePresence"] = { + ["1485_MaximumEnergyShieldOnKillPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2809284200", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 8, + ["Chest"] = { + ["min"] = 3, + ["max"] = 6, }, ["sign"] = "", }, - ["1690_MinionDamagePinnaclePresence"] = { + ["1705_MinionDamage"] = { ["Gloves"] = { - ["min"] = 44, - ["max"] = 53, + ["min"] = 18, + ["max"] = 45, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3141084961", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + }, + ["AbyssJewel"] = { + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["Ring"] = { + ["min"] = 5, + ["max"] = 42, + }, + ["AnyJewel"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["3691_CurseEffectPunishment"] = { + ["2870_BleedingDamageSupported"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2844206732", - ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "", }, - ["3160_FlaskGainPerSecondUniquePresence"] = { + ["1268_LocalWardPercent"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", }, ["sign"] = "", }, - ["1355_MaximumLightningResistanceImplicitPinnaclePresence"] = { - ["specialCaseData"] = { + ["6690_LocalChaosPenetration"] = { + ["1HSword"] = { + ["min"] = 6, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", + ["Wand"] = { + ["min"] = 6, + ["max"] = 16, }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["2HMace"] = { + ["min"] = 6, + ["max"] = 16, }, - ["sign"] = "+", - }, - ["1355_MaximumLightningResistanceEldritchPinnaclePresence"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 6, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136085904", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Lightning Resistance", + ["1HMace"] = { + ["min"] = 6, + ["max"] = 16, }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 5, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 6, + ["max"] = 16, }, - ["sign"] = "+", - }, - ["1215_SpellCriticalStrikeMultiplierUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 6, + ["max"] = 16, + }, + ["2HSword"] = { + ["min"] = 6, + ["max"] = 16, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_865433929", - ["text"] = "While a Unique Enemy is in your Presence, #% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", }, - ["Chest"] = { - ["min"] = 28, - ["max"] = 37, + ["Bow"] = { + ["min"] = 6, + ["max"] = 16, }, - ["sign"] = "+", - }, - ["5583_ExtinguishOnHitPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 6, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3854721949", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit", + ["1HAxe"] = { + ["min"] = 6, + ["max"] = 16, }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 100, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 16, + }, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 16, }, - ["sign"] = "", - }, - ["8634_WarcryEffect"] = { ["specialCaseData"] = { }, + }, + ["1145_SpellAddedFireDamageTwoHand"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, - ["sign"] = "", - }, - ["4674_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, + ["2HWeapon"] = { + ["min"] = 2.5, + ["max"] = 121.5, + }, + ["Staff"] = { + ["min"] = 2.5, + ["max"] = 121.5, }, }, - ["1112_IncreasedChaosDamagePinnaclePresence"] = { + ["228_SupportedByVolleySpeed"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2070979181", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_2696557965", + ["text"] = "Socketed Gems are Supported by Level # Volley", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 42, + ["1HWeapon"] = { + ["min"] = 16, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 42, + ["Wand"] = { + ["min"] = 16, + ["max"] = 20, }, }, - ["3686_CurseEffectConductivity"] = { + ["2247_MeleeWeaponAndUnarmedRange"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Gloves"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1087_FireDamage"] = { + ["387_SocketedAttacksManaCostMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have # to Total Mana Cost", }, - ["Gloves"] = { - ["min"] = 9.5, - ["max"] = 18.5, + ["Chest"] = { + ["min"] = 20, + ["max"] = 20, }, - ["sign"] = "", + ["sign"] = "-", }, - ["3691_CurseEffectPunishmentUniquePresence"] = { + ["698_FlaskBuffArmourWhileHealing"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_1693613464", + ["text"] = "#% increased Armour during Effect", }, - ["sign"] = "", - }, - ["4334_AttackCriticalStrikeChancePinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 49, + ["Flask"] = { + ["min"] = 41, ["max"] = 60, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1840069423", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", - }, - ["specialCaseData"] = { - }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 49, - ["max"] = 60, - }, }, - ["3771_RockGolemBuffEffectUniquePresence"] = { + ["8572_ShockedGroundEffectEffectiveness"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", }, - ["sign"] = "", ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["min"] = 1, + ["max"] = 1, }, }, - ["1350_MaximumColdResistanceImplicit"] = { - ["specialCaseData"] = { - }, + ["1548_IncreasedMaximumPowerCharges"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", }, - ["Gloves"] = { + ["Helmet"] = { ["min"] = 1, - ["max"] = 2, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["994_PhysicalDamageUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2521809744", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + ["sign"] = "+", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 14, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1362_MaximumResistances"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", - }, + ["1578_AvoidFreezeAndChill"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 2, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 2, + ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["1930_ShockProliferationUniquePresence"] = { + ["1617_ManaCostReduction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2434611606", - ["text"] = "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within a Radius of #", + ["type"] = "explicit", + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 20, + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, }, ["sign"] = "", }, - ["1565_AvoidIgnite"] = { + ["1317_IncreasedManaAndPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, - }, }, - ["6047_HeraldBonusIceEffectUniquePresence"] = { + ["1656_MineDetonationSpeedAndDuration"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_117667746", + ["text"] = "#% increased Mine Duration", }, ["sign"] = "", }, - ["975_PhysicalDamageOverTimeMultiplier"] = { + ["906_SpellBlockPercentage"] = { ["Gloves"] = { - ["min"] = 5, - ["max"] = 20, - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 5, - ["max"] = 20, + ["min"] = 3, + ["max"] = 4, }, - }, - ["3771_RockGolemBuffEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2284801675", - ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", - }, ["sign"] = "", ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["min"] = 3, + ["max"] = 4, }, - }, - ["3247_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", + ["type"] = "explicit", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["Chest"] = { + ["min"] = 3, + ["max"] = 10, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 19, - ["max"] = 28, + ["min"] = 4, + ["max"] = 7, }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 28, + ["Shield"] = { + ["min"] = 4, + ["max"] = 15, }, }, - ["3690_CurseEffectFrostbitePinnaclePresence"] = { + ["3096_NearbyEnemiesAreBlinded"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2068042138", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1517_MovementVelocityUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3019083030", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Movement Speed", - }, + ["7997_ProjectileAttackDamageDuringFlaskEffect"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 13, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", }, - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["sign"] = "", + ["Belt"] = { + ["min"] = 20, + ["max"] = 35, }, }, - ["2294_CurseEffectivenessPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1350472585", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + ["1113_LocalColdDamagePenetrationHybrid"] = { + ["Dagger"] = { + ["min"] = 10.5, + ["max"] = 43.5, + }, + ["Bow"] = { + ["min"] = 10.5, + ["max"] = 43.5, + }, + ["2HMace"] = { + ["min"] = 10.5, + ["max"] = 80.5, + }, + ["Wand"] = { + ["min"] = 10.5, + ["max"] = 43.5, }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 18, + ["2HAxe"] = { + ["min"] = 10.5, + ["max"] = 80.5, }, - ["Chest"] = { - ["min"] = 15, - ["max"] = 18, + ["Staff"] = { + ["min"] = 19.5, + ["max"] = 80.5, }, - }, - ["1355_MaximumLightningResistanceImplicitUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 10.5, + ["max"] = 80.5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789714862", - ["text"] = "While a Unique Enemy is in your Presence, #% to maximum Lightning Resistance", + ["type"] = "explicit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 3, + ["1HSword"] = { + ["min"] = 10.5, + ["max"] = 43.5, }, - ["sign"] = "+", - }, - ["1485_MinionLife"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 10.5, + ["max"] = 43.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["1HAxe"] = { + ["min"] = 10.5, + ["max"] = 43.5, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["2HWeapon"] = { + ["min"] = 10.5, + ["max"] = 80.5, + }, + ["1HWeapon"] = { + ["min"] = 10.5, + ["max"] = 43.5, + }, + ["1HMace"] = { + ["min"] = 10.5, + ["max"] = 43.5, }, - ["sign"] = "", }, - ["2436_FlaskEffectUniquePresence"] = { + ["8785_Runebinder"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3610955422", - ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", - }, - ["Chest"] = { - ["min"] = 14, - ["max"] = 23, + ["type"] = "explicit", + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", }, - ["sign"] = "", }, - ["1107_LightningDamageUniquePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2111629859", - ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + ["1614_SupportedBySpiritStrikeArea"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Gloves"] = { - ["min"] = 17, - ["max"] = 28, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 15, }, ["sign"] = "", - }, - ["1096_ColdDamagePinnaclePresence"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1016130575", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Gloves"] = { - ["min"] = 18, - ["max"] = 34, + ["Claw"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["5583_ExtinguishOnHitChance"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 5, + ["max"] = 15, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_49183689", - ["text"] = "#% chance to Extinguish Enemies on Hit", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["type"] = "explicit", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", }, - ["sign"] = "", - }, - ["4354_ReducedAttackManaCostPinnaclePresence"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3671920033", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 42, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "", - }, - ["5832_RageOnHitImplicit"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2802161115", - ["text"] = "Gain 1 Rage on Hit with Attacks, no more than once every # seconds", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 15, }, - ["Gloves"] = { - ["min"] = 0.7, - ["max"] = 1.2, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["5618_FireDamageTakenGainedAsLifeUniquePresence"] = { + ["7895_SpiritAndPhantasmRefreshOnUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2143647966", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", - }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["type"] = "explicit", + ["id"] = "explicit.stat_1146215018", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Unique Enemy", }, ["sign"] = "", }, - ["6057_HeraldBonusThunderEffectPinnaclePresence"] = { + ["1500_MaximumMinionCountAndMinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1553385903", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 10, }, ["sign"] = "", }, - ["6047_HeraldBonusIceEffect"] = { + ["670_FlaskDispellsPoison"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1862926389", - ["text"] = "Herald of Ice has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 30, + ["type"] = "explicit", + ["id"] = "explicit.stat_3596333054", + ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", }, - ["sign"] = "", }, - ["5660_FleshAndStoneAreaOfEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["2413_EnemiesExplodeOnDeath"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 5, }, - ["sign"] = "", - }, - ["6043_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", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 5, }, - ["Gloves"] = { - ["min"] = 39, - ["max"] = 48, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 5, }, - ["sign"] = "", }, - ["6051_HeraldBonusPurityEffectUniquePresence"] = { + ["1146_SpellAddedColdDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4093169696", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["type"] = "explicit", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, ["sign"] = "", }, - ["5583_ExtinguishOnHitUniquePresence"] = { + ["8753_BloodMagic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4163073767", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", - }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["type"] = "explicit", + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", }, - ["sign"] = "", }, - ["3684_CurseEffectTemporalChainsPinnaclePresence"] = { + ["1538_MaximumEnduranceChargesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3695602451", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + ["type"] = "explicit", + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 23, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1355_MaximumLightningResistanceImplicit"] = { - ["specialCaseData"] = { + ["999_ColdDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["2HMace"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["1HMace"] = { + ["min"] = 14, + ["max"] = 38, }, ["sign"] = "+", - }, - ["984_ColdDamageOverTimeMultiplierUniquePresence"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 29, + ["2HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 24, + ["max"] = 28, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_621576159", - ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + ["id"] = "explicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 24, + ["max"] = 28, }, - ["sign"] = "+", ["Amulet"] = { - ["min"] = 17, - ["max"] = 29, + ["min"] = 11, + ["max"] = 25, }, - }, - ["1350_MaximumColdResistanceEldritch"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 24, + ["max"] = 28, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["Wand"] = { + ["min"] = 14, + ["max"] = 38, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 3, + ["Staff"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["2HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 24, + ["max"] = 48, }, - ["sign"] = "+", - }, - ["8484_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", + ["2HWeapon"] = { + ["min"] = 24, + ["max"] = 75, }, - ["Chest"] = { - ["min"] = 39, - ["max"] = 50, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 38, + }, + ["Dagger"] = { + ["min"] = 14, + ["max"] = 38, }, - ["sign"] = "", }, - ["1599_AreaOfEffectUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1847660463", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", + ["3080_OnslaugtOnKillPercentChance"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 25, + }, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 24, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["Claw"] = { + ["min"] = 5, + ["max"] = 25, }, - }, - ["2885_DamagePerEnduranceChargeUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 5, + ["max"] = 25, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2193147166", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge", + ["type"] = "explicit", + ["id"] = "explicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["sign"] = "", - ["Boots"] = { + ["Wand"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["Dagger"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["1HAxe"] = { ["min"] = 5, - ["max"] = 7, + ["max"] = 25, }, - }, - ["902_BoneOfferingEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3774100463", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 25, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["Bow"] = { + ["min"] = 5, + ["max"] = 25, }, }, - ["4441_CarrionGolemBuffEffectUniquePresence"] = { + ["1186_IncreasedCastSpeedFishing"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 46, - ["max"] = 60, + ["FishingRod"] = { + ["min"] = 24, + ["max"] = 28, }, + ["sign"] = "", }, - ["2391_DamageRemovedFromManaBeforeLife"] = { + ["1147_SpellAddedLightningDamageHybrid"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["sign"] = "", }, - ["4945_ChanceToUnnerveOnHitUniquePresence"] = { + ["4918_AdditionalChanceToEvadeMaven"] = { ["specialCaseData"] = { }, ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", }, ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", + ["sign"] = "+", }, - ["4661_EnduranceChargePerSecondUniquePresence"] = { + ["2161_PhysicalDamageTakenAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2441896589", - ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", - }, - ["Chest"] = { - ["min"] = 6, - ["max"] = 10, + ["type"] = "explicit", + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", }, ["sign"] = "", }, - ["6043_HeraldBonusAshEffectUniquePresence"] = { + ["1655_TrapCooldownRecoveryAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_109112452", - ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", - }, - ["Gloves"] = { - ["min"] = 27, - ["max"] = 39, + ["type"] = "explicit", + ["id"] = "explicit.stat_2001530951", + ["text"] = "#% increased Trap Duration", }, ["sign"] = "", }, - ["1352_ColdResistancePinnaclePresence"] = { + ["3158_TrapCooldownRecoveryAndDuration"] = { ["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, + ["type"] = "explicit", + ["id"] = "explicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", }, + ["sign"] = "", }, - ["7935_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["5123_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["2HMace"] = { + ["min"] = 50, + ["max"] = 50, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3796902731", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 50, + ["max"] = 50, }, - ["Helmet"] = { - ["min"] = 15, - ["max"] = 24, + ["Staff"] = { + ["min"] = 50, + ["max"] = 50, }, - ["sign"] = "", - }, - ["3773_IceGolemBuffEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 50, + ["max"] = 50, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250111474", - ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "explicit", + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 31, - ["max"] = 48, + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Bow"] = { + ["min"] = 50, + ["max"] = 50, }, }, - }, - ["Implicit"] = { - ["implicit.stat_4251717817"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["1687_ConvertPhysicalToFire"] = { + ["Gloves"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["2HMace"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["Quiver"] = { + ["min"] = 18, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["2HAxe"] = { + ["min"] = 23, ["max"] = 30, - ["min"] = 30, }, - ["2HWeapon"] = { + ["Staff"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 23, ["max"] = 30, - ["min"] = 30, }, - }, - ["implicit.stat_1310194496"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + }, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["1HAxe"] = { + ["min"] = 23, + ["max"] = 30, }, ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, + ["min"] = 23, + ["max"] = 30, }, ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 8, + ["min"] = 23, + ["max"] = 30, + }, + ["1HSword"] = { + ["min"] = 23, + ["max"] = 30, + }, + }, + ["5217_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + }, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, - ["Belt"] = { - ["max"] = 24, - ["min"] = 12, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, }, }, - ["implicit.stat_1795443614"] = { + ["1543_MaximumFrenzyChargesMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1795443614", - ["text"] = "Has Elder, Shaper and all Conqueror Influences", + ["type"] = "explicit", + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", }, - ["Amulet"] = { - ["max"] = 1, + ["Gloves"] = { ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["implicit.stat_328541901"] = { + ["1770_AlwaysHits"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["implicit.stat_4220027924"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["implicit.stat_3531280422"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, ["2HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["implicit.stat_2375316951"] = { + ["226_LocalIncreasedAttackSpeedOnslaught"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Onslaught", }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 30, + ["min"] = 18, + ["max"] = 20, }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, + ["Wand"] = { + ["min"] = 18, + ["max"] = 20, }, }, - ["implicit.stat_1423639565"] = { - ["specialCaseData"] = { + ["1469_MaximumEnergyShieldLeechRate"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["type"] = "explicit", + ["id"] = "explicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", }, - ["sign"] = "+", - }, - ["implicit.stat_2091591880"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - }, ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["Amulet"] = { + ["min"] = 15, + ["max"] = 25, }, }, - ["implicit.stat_734614379"] = { + ["1099_FireDamageWeaponPrefix"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["type"] = "explicit", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 109, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 109, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["max"] = 10, ["min"] = 10, + ["max"] = 109, }, - ["2HWeapon"] = { - ["max"] = 10, + ["Shield"] = { ["min"] = 10, + ["max"] = 109, }, }, - ["implicit.stat_4067062424"] = { + ["2536_OnslaughtWhenHitForDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", }, ["sign"] = "", - ["Quiver"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, }, - ["implicit.stat_1296614065"] = { + ["1372_LightningResistancePhysTakenAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1296614065", - ["text"] = "#% increased Fish Bite Sensitivity", - }, - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Talisman", - }, - ["sign"] = "", - }, - ["implicit.stat_803737631"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - }, - ["specialCaseData"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 475, - ["min"] = 45, - }, - ["2HWeapon"] = { - ["max"] = 475, - ["min"] = 45, - }, }, - ["implicit.stat_563547620"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_563547620", - ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", + ["4371_AddedLightningDamagePerIntelligence"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 3.5, }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 3, + ["max"] = 3.5, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Claw"] = { + ["min"] = 3, + ["max"] = 3.5, }, - }, - ["implicit.stat_2891184298"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 4, + ["max"] = 4.5, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 10, + ["Wand"] = { + ["min"] = 3, + ["max"] = 3.5, }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 10, - }, - }, - ["implicit.stat_589489789"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_589489789", - ["text"] = "Can't use Flask in Fifth Slot", + ["min"] = 4, + ["max"] = 4.5, }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 3.5, }, - }, - ["implicit.stat_3423006863"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, }, - ["implicit.stat_2387423236"] = { + ["5254_DamageChilledEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - }, - ["Helmet"] = { - ["max"] = 106.5, - ["min"] = 4, - ["subType"] = "Evasion/Energy Shield", + ["type"] = "explicit", + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", }, ["sign"] = "", - }, - ["implicit.stat_538730182"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_538730182", - ["text"] = "Creates a Smoke Cloud on Use", + ["Belt"] = { + ["min"] = 26, + ["max"] = 40, }, }, - ["implicit.stat_3319896421"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, + ["2202_BleedingDamageChanceWeaponSuffix"] = { + ["2HMace"] = { + ["min"] = 20, + ["max"] = 30, }, - }, - ["implicit.stat_3962278098"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", - }, ["sign"] = "", - }, - ["implicit.stat_2530372417"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 30, }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 20, + ["max"] = 30, }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["2HSword"] = { + ["min"] = 20, + ["max"] = 30, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", }, - ["Helmet"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["1HMace"] = { + ["min"] = 20, + ["max"] = 30, + }, + ["1HAxe"] = { + ["min"] = 20, + ["max"] = 30, }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["min"] = 20, + ["max"] = 30, }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["min"] = 20, + ["max"] = 30, }, - ["Chest"] = { - ["max"] = 5, - ["min"] = 4, - ["subType"] = "Armour", + ["1HSword"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["implicit.stat_3441501978"] = { + ["1543_MaximumFrenzyCharges"] = { ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "explicit", + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Energy Shield", + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["implicit.stat_2622251413"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", - }, + ["4504_DesecratedGroundEffectEffectivenessMaven"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1953432004", + ["text"] = "Unaffected by Poison", }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["implicit.stat_2748665614"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - }, - ["specialCaseData"] = { + ["1291_LocalArmourAndEvasion"] = { + ["Gloves"] = { + ["min"] = 15, + ["max"] = 100, }, - ["sign"] = "", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 8, + ["Shield"] = { + ["min"] = 101, + ["max"] = 110, }, - }, - ["implicit.stat_1519615863"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["Helmet"] = { + ["min"] = 15, + ["max"] = 100, }, ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 20, + ["Chest"] = { ["min"] = 15, - ["subType"] = "Thrusting", + ["max"] = 110, }, - ["2HWeapon"] = { - ["max"] = 20, + ["Boots"] = { ["min"] = 15, - ["subType"] = "Thrusting", + ["max"] = 100, }, }, - ["implicit.stat_2924279089"] = { - ["Gloves"] = { + ["1580_AvoidIgnite"] = { + ["AnyJewel"] = { + ["min"] = 31, ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2924279089", - ["text"] = "#% increased Attack Damage with Off Hand", + ["type"] = "explicit", + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", }, - ["Chest"] = { + ["AbyssJewel"] = { + ["min"] = 31, ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + }, + ["Quiver"] = { + ["min"] = 51, + ["max"] = 80, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { + ["BaseJewel"] = { + ["min"] = 31, ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", }, ["Boots"] = { - ["max"] = 50, - ["min"] = 40, - ["subType"] = "Evasion", + ["min"] = 51, + ["max"] = 80, }, }, - ["implicit.stat_4282426229"] = { + ["6246_MaximumLifeOnKillPercentMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4282426229", - ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["type"] = "explicit", + ["id"] = "explicit.stat_3353368340", + ["text"] = "#% increased Life Recovery Rate if you haven't Killed Recently", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, + ["sign"] = "", }, - ["implicit.stat_2239667237"] = { + ["1308_LifeAndPercentLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2239667237", - ["text"] = "Right ring slot: #% increased Skill Effect Duration", - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 15, + ["type"] = "explicit", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", }, ["sign"] = "", }, - ["implicit.stat_1050105434"] = { + ["3906_MovementVelocityDodge"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["type"] = "explicit", + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", }, - ["specialCaseData"] = { + ["sign"] = "", + }, + ["1104_LocalFireDamageTwoHand"] = { + ["2HMace"] = { + ["min"] = 4.5, + ["max"] = 307.5, }, - ["sign"] = "+", - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - ["subType"] = "Evasion/Energy Shield", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4.5, + ["max"] = 307.5, }, - }, - ["implicit.stat_2146730404"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["2HSword"] = { + ["min"] = 4.5, + ["max"] = 307.5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2146730404", - ["text"] = "Creates Consecrated Ground on Use", + ["type"] = "explicit", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + }, + ["1HMace"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["Staff"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["1HAxe"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["2HWeapon"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["1HWeapon"] = { + ["min"] = 4.5, + ["max"] = 307.5, + }, + ["1HSword"] = { + ["min"] = 4.5, + ["max"] = 307.5, }, }, - ["implicit.stat_3291658075"] = { + ["8394_GlobalStrengthGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["type"] = "explicit", + ["id"] = "explicit.stat_2339012908", + ["text"] = "# to Level of all Strength Skill Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["implicit.stat_1017730114"] = { + ["1590_ChillingConfluxMaven"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1017730114", - ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["Helmet"] = { + ["min"] = 20, + ["max"] = 30, }, ["sign"] = "", }, - ["implicit.stat_280731498"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["1473_LifeGainPerTargetLocal"] = { + ["1HSword"] = { + ["min"] = 2, + ["max"] = 5, }, - ["Amulet"] = { - ["max"] = 8, - ["min"] = 5, - ["subType"] = "Talisman", + ["Wand"] = { + ["min"] = 2, + ["max"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 5, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["Dagger"] = { + ["min"] = 2, + ["max"] = 5, }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["Claw"] = { + ["min"] = 2, + ["max"] = 5, }, - }, - ["implicit.stat_2797971005"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 2, + ["max"] = 5, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 8, - ["min"] = 6, + ["Bow"] = { + ["min"] = 2, + ["max"] = 5, }, - }, - ["implicit.stat_369183568"] = { - ["Gloves"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_369183568", - ["text"] = "#% increased Block Recovery", + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 5, }, - ["Shield"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 5, }, - ["Chest"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 5, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, - ["Boots"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, }, - ["implicit.stat_1313503107"] = { + ["190_SupportedByEnlighten"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1313503107", - ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", - }, - ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["type"] = "explicit", + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", }, ["sign"] = "", }, - ["implicit.stat_3753703249"] = { - ["specialCaseData"] = { - }, + ["4900_SpellBlockChanceIfHitRecently"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + ["id"] = "explicit.stat_1101206134", + ["text"] = "#% Chance to Block Spell Damage if you were Damaged by a Hit Recently", }, - ["Amulet"] = { - ["max"] = 12, - ["min"] = 6, - ["subType"] = "Talisman", + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", - }, - ["implicit.stat_2120297997"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2120297997", - ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Warstaff", - }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Warstaff", + ["min"] = 10, + ["max"] = 15, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["implicit.stat_1504091975"] = { + ["976_LocalPhysicalDamagePercentAddedAsChaos"] = { ["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", + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", }, ["sign"] = "", }, - ["implicit.stat_2170876738"] = { + ["1173_LightRadiusAndAccuracy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2170876738", - ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["type"] = "explicit", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", }, + ["sign"] = "+", }, - ["implicit.stat_1054322244"] = { + ["2893_NoExtraBleedDamageWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", }, - ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Talisman", + }, + ["1527_AdditionalArrows"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_742529963", + ["text"] = "Bow Attacks fire # additional Arrows", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Bow"] = { + ["min"] = 2, + ["max"] = 2, + }, }, - ["implicit.stat_1069618951"] = { + ["1592_FreezeChanceAndDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1069618951", - ["text"] = "Right ring slot: Minions take #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", }, - ["Ring"] = { + ["Helmet"] = { + ["min"] = 8, ["max"] = 15, - ["min"] = 15, }, ["sign"] = "", }, - ["implicit.stat_2192875806"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["1705_MinionDamageOnWeapon"] = { + ["2HMace"] = { + ["min"] = 51, + ["max"] = 130, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2192875806", - ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", + ["1HMace"] = { + ["min"] = 30, + ["max"] = 80, }, - ["specialCaseData"] = { + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 51, + ["max"] = 130, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["Bow"] = { + ["min"] = 51, + ["max"] = 130, }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Energy Shield", + ["1HAxe"] = { + ["min"] = 30, + ["max"] = 80, }, - }, - ["implicit.stat_3489782002"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["1HSword"] = { + ["min"] = 30, + ["max"] = 80, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["Wand"] = { + ["min"] = 10, + ["max"] = 109, }, - ["2HWeapon"] = { - ["max"] = 165, - ["min"] = 66, + ["Staff"] = { + ["min"] = 51, + ["max"] = 130, + }, + ["2HSword"] = { + ["min"] = 51, + ["max"] = 130, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 165, - ["min"] = 66, + ["Dagger"] = { + ["min"] = 30, + ["max"] = 80, }, - ["Belt"] = { + ["Claw"] = { + ["min"] = 30, ["max"] = 80, - ["min"] = 9, }, - }, - ["implicit.stat_2915988346"] = { - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["2HWeapon"] = { + ["min"] = 51, + ["max"] = 130, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 109, + }, + ["Shield"] = { + ["min"] = 10, + ["max"] = 109, }, + }, + ["1831_AddedChaosDamageWithBows"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "explicit", + ["id"] = "explicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, + ["AbyssJewel"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["sign"] = "", + ["Bow"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", + ["AnyJewel"] = { + ["min"] = 6.5, + ["max"] = 18.5, }, }, - ["implicit.stat_1535626285"] = { + ["8056_SpiritAndPhantasmRefreshOnUnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", - }, - ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, + ["type"] = "explicit", + ["id"] = "explicit.stat_2461719091", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Unique Enemy", }, - ["sign"] = "+", + ["sign"] = "", }, - ["implicit.stat_2067062068"] = { + ["7680_MinionAccuracyRating"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", - }, - ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Talisman", + ["type"] = "explicit", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", }, ["sign"] = "", }, - ["implicit.stat_1573130764"] = { + ["6173_GlobalIntelligenceGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 21, - ["min"] = 3, + ["type"] = "explicit", + ["id"] = "explicit.stat_493812998", + ["text"] = "# to Level of all Intelligence Skill Gems", }, + ["sign"] = "+", }, - ["implicit.stat_789117908"] = { + ["1104_LocalFireDamageRanged"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - }, - ["Amulet"] = { - ["max"] = 56, - ["min"] = 20, + ["type"] = "explicit", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, ["sign"] = "", }, - ["implicit.stat_3374165039"] = { + ["5680_ShockNearbyEnemiesOnFocusCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["Ring"] = { + ["min"] = 5, + ["max"] = 8, }, + ["sign"] = "", }, - ["implicit.stat_3325883026"] = { + ["1269_WardDelayRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - }, - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, + ["type"] = "explicit", + ["id"] = "explicit.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", }, ["sign"] = "", }, - ["implicit.stat_1569101201"] = { - ["Gloves"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", + ["6922_MaximumManaOnKillPercentMaven"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "explicit", + ["id"] = "explicit.stat_630994130", + ["text"] = "#% increased Mana Recovery Rate if you haven't Killed Recently", }, ["Chest"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", - }, - ["specialCaseData"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", - }, - ["Boots"] = { - ["max"] = 50, - ["min"] = 25, - ["subType"] = "Armour", - }, }, - ["implicit.stat_2250533757"] = { + ["1002_ChaosDamageOverTimeMultiplier"] = { ["Gloves"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["min"] = 11, + ["max"] = 25, + }, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["2HMace"] = { + ["min"] = 24, + ["max"] = 48, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Boots"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 24, + ["max"] = 48, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + ["id"] = "explicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", }, - ["Chest"] = { + ["1HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Amulet"] = { + ["min"] = 11, + ["max"] = 25, + }, + ["1HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Wand"] = { + ["min"] = 14, + ["max"] = 48, + }, + ["Staff"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["2HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["1HMace"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["2HWeapon"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 48, + }, + ["Dagger"] = { + ["min"] = 14, + ["max"] = 48, + }, + }, + ["1162_StaffAttackSpeedForJewel"] = { + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + }, + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + }, + ["1591_ShockDurationForJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + }, + ["sign"] = "", + }, + ["1203_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["Claw"] = { + ["min"] = 8, + ["max"] = 10, + }, + }, + ["1348_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skill Gems", + }, + ["specialCaseData"] = { + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["1099_TwoHandFireDamageWeaponPrefix"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 164, + }, + ["Staff"] = { + ["min"] = 15, + ["max"] = 164, + }, + }, + ["1365_MaximumColdResist"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 3, + }, + }, + ["1293_LocalIncreasedDefencesAndLife"] = { + ["Gloves"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + }, + ["Helmet"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["sign"] = "", + ["Chest"] = { + ["min"] = 24, + ["max"] = 28, + }, + ["Boots"] = { + ["min"] = 24, + ["max"] = 28, + }, + }, + ["1537_MinimumEnduranceChargesAndOnKillChance"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["128_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["1HSword"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Wand"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Bow"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["Shield"] = { + ["min"] = 2, + ["max"] = 2, + }, + }, + ["976_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["2HMace"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HMace"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["Claw"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HSword"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HSword"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HAxe"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HAxe"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["2HWeapon"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["1HWeapon"] = { + ["min"] = 101, + ["max"] = 134, + }, + ["specialCaseData"] = { + }, + }, + ["8140_RemoveShockOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + }, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["5609_FasterBleedDamage"] = { + ["2HMace"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + }, + ["1HMace"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["1HSword"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["1HAxe"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 15, + }, + ["Boots"] = { + ["min"] = 7, + ["max"] = 12, + }, + }, + ["990_PhysicalDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 25, + }, + ["BaseJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["2HMace"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["1HMace"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Claw"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", + }, + ["AbyssJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["1HAxe"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Amulet"] = { + ["min"] = 11, + ["max"] = 25, + }, + ["1HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["Wand"] = { + ["min"] = 14, + ["max"] = 48, + }, + ["Staff"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["2HSword"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["AnyJewel"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Bow"] = { + ["min"] = 24, + ["max"] = 48, + }, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 24, + ["max"] = 75, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 48, + }, + ["Dagger"] = { + ["min"] = 24, + ["max"] = 48, + }, + }, + ["160_WeaponSpellDamageArcaneSurge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + }, + ["sign"] = "", + }, + ["2917_AttackSpeedWithFortify"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 25, + }, + }, + ["1308_IncreasedLifeAndPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["sign"] = "", + }, + ["3479_RegenerateLifeOver1Second"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["1818_AddedColdDamageWithDaggers"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + }, + ["1HWeapon"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["AbyssJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + ["AnyJewel"] = { + ["min"] = 6.5, + ["max"] = 21.5, + }, + }, + ["6774_LocalChanceToMaimPhysicalDamage"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 20, + }, + }, + ["8741_MinionLargerAggroRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_128585622", + ["text"] = "Minions are Aggressive", + }, + }, + ["5055_GlobalColdGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skill Gems", + }, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + }, + ["1609_ReducedBurnDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + }, + ["Helmet"] = { + ["min"] = 51, + ["max"] = 60, + }, + ["sign"] = "", + }, + ["711_FlaskBuffLifeLeechWhileHealing"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + }, + ["sign"] = "", + }, + ["1104_LocalFireDamage"] = { + ["2HMace"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["1HSword"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + }, + ["Wand"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 165.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + }, + ["2311_MarkEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + }, + ["sign"] = "", + }, + ["1255_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1HMace"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + }, + ["2HMace"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, + }, + }, + ["1667_PhysicalAddedAsChaos"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + }, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Wand"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["specialCaseData"] = { + }, + ["Dagger"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Shield"] = { + ["min"] = 9, + ["max"] = 10, + }, + }, + ["3465_MinionAddedFireDamage"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + }, + ["AbyssJewel"] = { + ["min"] = 5.5, + ["max"] = 43, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 5.5, + ["max"] = 43, + }, + }, + ["5128_GainAccuracyEqualToStrengthMaven"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2511370818", + ["text"] = "#% increased Critical Strike Chance per 10 Strength", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "", + }, + ["1108_LocalColdDamageHybrid"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["sign"] = "", + }, + ["206_BurningDamageSupported"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2680613507", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + }, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["1532_MovementVelocityAndCannotBeChilled"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 25, + ["max"] = 30, + }, + }, + ["1010_SelfPhysicalDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + }, + ["sign"] = "", + }, + ["890_SpellDamageSuppressed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent #% of Suppressed Spell Damage", + }, + ["Amulet"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["sign"] = "+", + }, + ["1414_LightningResistanceLeech"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["1597_StunDurationIncreasePercent"] = { + ["2HMace"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Bow"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + }, + ["1HAxe"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["1HSword"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Quiver"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Wand"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Staff"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["2HSword"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["2HAxe"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Claw"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 11, + ["max"] = 35, + }, + }, + ["373_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + }, + ["sign"] = "", + }, + ["1321_ManaRegenerationMaven"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + }, + ["Helmet"] = { + ["min"] = 56, + ["max"] = 70, + }, + ["sign"] = "", + }, + ["4005_ManaRegenerationMaven"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["sign"] = "", + }, + ["8768_KeystoneGhostReaver"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4272248216", + ["text"] = "Ghost Reaver", + }, + }, + ["4907_AttackSpeedDoubleDamage"] = { + ["2HMace"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Staff"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + }, + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Bow"] = { + ["min"] = 4, + ["max"] = 6, + }, + }, + ["926_StrengthAndIntelligence"] = { + ["Gloves"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Quiver"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + }, + ["Boots"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Helmet"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Ring"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Chest"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Amulet"] = { + ["min"] = 31, + ["max"] = 35, + }, + ["Shield"] = { + ["min"] = 31, + ["max"] = 35, + }, + }, + ["892_ChanceToSuppressSpells"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 22, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 22, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 5, + ["max"] = 22, + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 22, + }, + }, + ["5481_EnemiesExplodeOnDeathPhysical"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + }, + ["sign"] = "", + }, + ["2871_PoisonDurationChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + }, + ["sign"] = "", + }, + ["1372_LightningResistanceLeech"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + }, + ["sign"] = "+", + }, + ["2767_DamageWhileLeeching"] = { + ["Gloves"] = { + ["min"] = 54, + ["max"] = 60, + }, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 30, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HSword"] = { + ["min"] = 18, + ["max"] = 45, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 45, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 30, + }, + ["Amulet"] = { + ["min"] = 54, + ["max"] = 60, + }, + }, + ["6685_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { + ["1HSword"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["Wand"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["2HMace"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["Staff"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["1HMace"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["Claw"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["2HSword"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + }, + ["Bow"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["2HAxe"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["1HAxe"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["2HWeapon"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["1HWeapon"] = { + ["min"] = 60, + ["max"] = 60, + }, + ["specialCaseData"] = { + }, + }, + ["1667_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["2160_PhysicalDamageTakenAsFireUber"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Helmet"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["Chest"] = { + ["min"] = 5, + ["max"] = 15, + }, + }, + ["346_MinionLifeSupported"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1337327984", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + }, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["4119_GainArmourIfBlockedRecently"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4091848539", + ["text"] = "# Armour if you've Blocked Recently", + }, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 500, + ["max"] = 800, + }, + }, + ["5258_DamageOnFullLife"] = { + ["1HSword"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["Wand"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["2HMace"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["Staff"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["1HMace"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["Claw"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["2HSword"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_592020238", + ["text"] = "#% increased Damage when on Full Life", + }, + ["Bow"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["2HAxe"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["1HAxe"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["2HWeapon"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["1HWeapon"] = { + ["min"] = 50, + ["max"] = 120, + }, + ["specialCaseData"] = { + }, + }, + ["5680_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 8, + }, + }, + ["1564_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, + }, + ["1911_BeltReducedFlaskChargesUsed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + }, + ["sign"] = "", + ["Belt"] = { + ["min"] = 10, + ["max"] = 20, + }, + }, + ["1154_LocalAttackSpeedDexterityIntelligence"] = { + ["1HSword"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["Wand"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["2HMace"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["Staff"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + }, + ["Bow"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 22, + }, + ["2HWeapon"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 22, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + }, + ["709_FlaskBuffStunRecoveryWhileHealing"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + }, + ["Flask"] = { + ["min"] = 51, + ["max"] = 80, + }, + ["sign"] = "", + }, + ["2336_EnduranceChargeOnKillChanceMaven"] = { + ["1HSword"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + }, + ["1HMace"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["2HMace"] = { + ["min"] = 7, + ["max"] = 10, + }, + }, + ["1154_LocalIncreasedAttackSpeedOnslaught"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 12, + }, + ["Wand"] = { + ["min"] = 8, + ["max"] = 12, + }, + }, + ["1021_DualWieldingPhysicalDamage"] = { + ["1HSword"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["Claw"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["2HSword"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + }, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["specialCaseData"] = { + }, + ["1HAxe"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["2HWeapon"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 37, + }, + ["2HMace"] = { + ["min"] = 23, + ["max"] = 37, + }, + }, + ["1680_ChaosDamageOverTimeTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + }, + ["sign"] = "", + }, + ["1666_PhysicalAddedAsLightning"] = { + ["Quiver"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["1HMace"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["Claw"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["Boots"] = { + ["min"] = 3, + ["max"] = 11, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + }, + ["Wand"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["Staff"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 30, + }, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["specialCaseData"] = { + }, + }, + ["234_SupportedByPowerChargeOnCritWeapon"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, + }, + ["8799_ResoluteTechnique"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + }, + }, + ["6683_LocalBleedDamageOverTimeMultiplier"] = { + ["1HSword"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["Wand"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HMace"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["Staff"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["1HMace"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["Claw"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HSword"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_951608773", + ["text"] = "#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", + }, + ["Bow"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HAxe"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["1HAxe"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["2HWeapon"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["1HWeapon"] = { + ["min"] = 37, + ["max"] = 59, + }, + ["specialCaseData"] = { + }, + }, + ["1632_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1916706958", + ["text"] = "#% chance to Avoid interruption from Stuns while Casting", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 15, + ["max"] = 35, + }, + ["Staff"] = { + ["min"] = 15, + ["max"] = 35, + }, + }, + ["907_BlockWhileDualWielding"] = { + ["1HSword"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + }, + ["Dagger"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["specialCaseData"] = { + }, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 9, + }, + ["2HMace"] = { + ["min"] = 2, + ["max"] = 9, + }, + }, + ["2870_BleedOnHitAndDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + }, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["5038_PhysicalDamageTakenAsColdUberMaven"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + }, + ["Chest"] = { + ["min"] = 7, + ["max"] = 10, + }, + ["sign"] = "", + }, + ["1308_PercentageLifeAndManaForJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["sign"] = "", + }, + ["1826_AddedLightningDamageWithDaggers"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["AbyssJewel"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + ["AnyJewel"] = { + ["min"] = 10, + ["max"] = 27.5, + }, + }, + ["566_TriggerOnRareAssassinsMark"] = { + ["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", + }, + ["sign"] = "", + }, + ["1415_LightningResistanceEnemyLeech"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + }, + ["sign"] = "", + }, + ["317_TotemDamageSpellSupported"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 18, + ["max"] = 25, + }, + }, + ["6079_HitAndAilmentDamageCursedEnemies"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + }, + ["sign"] = "", + }, + ["929_PercentageStrengthMaven"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 9, + ["max"] = 12, + }, + ["Chest"] = { + ["min"] = 9, + ["max"] = 12, + }, + }, + ["2406_DamageRemovedFromManaBeforeLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + }, + ["Chest"] = { + ["min"] = 5, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["2995_CriticalStrikeChanceAgainstPoisonedEnemies"] = { + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 80, + ["max"] = 100, + }, + ["1HWeapon"] = { + ["min"] = 80, + ["max"] = 100, + }, + }, + ["1917_BeltFlaskManaRecoveryRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "explicit", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + }, + ["sign"] = "", + ["Belt"] = { + ["min"] = 5, + ["max"] = 40, + }, + }, + }, + ["Synthesis"] = { + ["1694_PhysicalDamageConvertToChaosImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + }, + ["sign"] = "", + }, + ["1110_GlobalAddedColdDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + }, + ["sign"] = "", + }, + ["1186_IncreasedCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + }, + ["sign"] = "", + }, + ["8309_SpellDamagePer10Strength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + }, + ["sign"] = "", + }, + ["2870_BleedingDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + }, + ["sign"] = "", + }, + ["156_AbyssJewelEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + }, + ["sign"] = "", + }, + ["891_ChanceToSuppressSpellsOld"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["sign"] = "+", + }, + ["1670_LightningAddedAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["8303_SpellDamagePerMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3555662994", + ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + }, + ["sign"] = "", + }, + ["1372_LightningResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + }, + ["sign"] = "+", + }, + ["8034_PurityOfLightningReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["5783_OnslaughtOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2514424018", + ["text"] = "You gain Onslaught for # seconds on Hit", + }, + ["sign"] = "", + }, + ["1121_GlobalAddedLightningDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + }, + ["sign"] = "", + }, + ["1503_MinionMovementSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + }, + ["sign"] = "", + }, + ["140_IncreaseSocketedSupportGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", + }, + ["sign"] = "+", + }, + ["1099_FireDamagePercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["sign"] = "", + }, + ["4277_ArmourEvasionWithFortify"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2962782530", + ["text"] = "# to Armour and Evasion Rating while Fortified", + }, + ["sign"] = "+", + }, + ["5550_DisciplineEnergyShieldRegen"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + }, + ["sign"] = "", + }, + ["3074_ColdDamageAvoidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + }, + ["sign"] = "", + }, + ["149_SocketedFireGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3422008440", + ["text"] = "#% to Quality of Socketed Fire Gems", + }, + ["sign"] = "+", + }, + ["1593_BurnDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + }, + ["sign"] = "", + }, + ["1297_LocalEnergyShieldPercent"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + }, + ["sign"] = "", + }, + ["2496_TotemElementalResistances"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", + }, + ["sign"] = "+", + }, + ["1146_SpellAddedColdDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + }, + ["sign"] = "", + }, + ["1127_IncreasedChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + }, + ["sign"] = "", + }, + ["7939_PhysicalDamageAttackSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2266750692", + ["text"] = "#% increased Physical Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["1457_EnergyShieldLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + }, + ["sign"] = "", + }, + ["1154_LocalIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + }, + ["sign"] = "", + }, + ["1959_FlatFireDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_614758785", + ["text"] = "# Fire Damage taken from Hits", + }, + ["sign"] = "-", + }, + ["8531_DamageWithTriggeredSpells"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + }, + ["sign"] = "", + }, + ["3073_FireDamageAvoidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + }, + ["sign"] = "", + }, + ["1178_AxeIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2538120572", + ["text"] = "#% increased Accuracy Rating with Axes", + }, + ["sign"] = "", + }, + ["1002_ChaosDamageOverTimeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", + }, + ["sign"] = "+", + }, + ["150_SocketedIntelligenceGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3174776455", + ["text"] = "#% to Quality of Socketed Intelligence Gems", + }, + ["sign"] = "+", + }, + ["1475_LifeGainPerTarget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + }, + ["sign"] = "", + }, + ["3772_DamageDuringFlaskEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + }, + ["sign"] = "", + }, + ["2241_CurseOnHitDespair"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + }, + }, + ["1173_IncreasedAccuracy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + }, + ["sign"] = "+", + }, + ["975_PhysicalDamagePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + }, + ["sign"] = "", + }, + ["1361_FireResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + }, + ["sign"] = "+", + }, + ["3339_ZombieIncreasedDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + }, + ["sign"] = "", + }, + ["8029_PurityOfFireReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["2196_LocalChanceToBleed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + }, + ["sign"] = "", + }, + ["1302_EnergyShieldRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + }, + ["sign"] = "", + }, + ["978_MeleeDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + }, + ["sign"] = "", + }, + ["1340_ExperienceIncrease"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + }, + ["sign"] = "", + }, + ["964_DamageWhileLeechingMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1994684426", + ["text"] = "#% increased Damage while Leeching Mana", + }, + ["sign"] = "", + }, + ["1185_WandIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2150183156", + ["text"] = "#% increased Accuracy Rating with Wands", + }, + ["sign"] = "", + }, + ["3064_IncreasedAuraEffectGraceCorrupted"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + }, + ["sign"] = "", + }, + ["1410_ColdDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["2162_PhysicalDamageTakenAsLightningPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + }, + ["sign"] = "", + }, + ["1355_AllResistances"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + }, + ["sign"] = "+", + }, + ["8552_BurningGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + }, + }, + ["1168_WandIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + }, + ["sign"] = "", + }, + ["5857_GraceReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1870_IncreasedPowerChargeDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + }, + ["sign"] = "", + }, + ["5749_EnduranceChargeIfHitRecently"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + }, + ["sign"] = "", + }, + ["1664_PhysicalAddedAsFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + }, + ["sign"] = "", + }, + ["3285_ColdPenetrationWeapon"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + }, + ["sign"] = "", + }, + ["3705_CurseEffectFrostbite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + }, + ["sign"] = "", + }, + ["3286_FirePenetrationWeapon"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + }, + ["sign"] = "", + }, + ["8228_BrandAttachmentRange"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + }, + ["sign"] = "", + }, + ["1492_GainLifeOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_762600725", + ["text"] = "# Life gained when you Block", + }, + ["sign"] = "", + }, + ["1659_TrapThrowSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + }, + ["sign"] = "", + }, + ["921_AllAttributes"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + }, + ["sign"] = "+", + }, + ["1582_AvoidShock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + }, + ["sign"] = "", + }, + ["146_SocketedColdGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1164882313", + ["text"] = "#% to Quality of Socketed Cold Gems", + }, + ["sign"] = "+", + }, + ["6917_RecoverManaPercentOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + }, + ["sign"] = "", + }, + ["2171_AdditionalBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + }, + ["sign"] = "+", + }, + ["1308_MaximumLifeIncreasePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["sign"] = "", + }, + ["5610_FasterPoisonDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + }, + ["sign"] = "", + }, + ["3759_DamageAffectedByAuras"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1419713278", + ["text"] = "You and nearby Allies deal #% increased Damage", + }, + ["sign"] = "", + }, + ["936_AllDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + }, + ["sign"] = "", + }, + ["2340_PowerChargeOnKillChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + }, + ["sign"] = "", + }, + ["4410_AddedColdDamagePerDexterity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + }, + ["sign"] = "", + }, + ["2454_LocalMeleeWeaponRange"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_350598685", + ["text"] = "# to Weapon Range", + }, + ["sign"] = "+", + }, + ["8613_VitalityReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1710_ElementalDamagePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + }, + ["sign"] = "", + }, + ["1484_MaximumLifeOnKillPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + }, + ["sign"] = "", + }, + ["3068_IncreasedAuraEffectDisciplineCorrupted"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + }, + ["sign"] = "", + }, + ["1232_MaceCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_458899422", + ["text"] = "#% to Critical Strike Multiplier with Maces or Sceptres", + }, + ["sign"] = "+", + }, + ["1057_ClawIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + }, + ["sign"] = "", + }, + ["5020_ChillEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + }, + ["sign"] = "", + }, + ["1187_CastSpeedWithDualWield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + }, + ["sign"] = "", + }, + ["1180_ClawIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1297965523", + ["text"] = "#% increased Accuracy Rating with Claws", + }, + ["sign"] = "", + }, + ["1537_MinimumEnduranceCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", + }, + ["sign"] = "+", + }, + ["8310_SpellDamagePer16Dexterity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + }, + ["sign"] = "", + }, + ["1315_LifeRecoveryRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + }, + ["sign"] = "", + }, + ["1575_CannotBeShocked"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_491899612", + ["text"] = "Cannot be Shocked", + }, + }, + ["152_SocketedMeleeGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1396421504", + ["text"] = "#% to Quality of Socketed Melee Gems", + }, + ["sign"] = "+", + }, + ["1182_MaceIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3208450870", + ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + }, + ["sign"] = "", + }, + ["2447_SpellDamagePer10Intelligence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + }, + ["sign"] = "", + }, + ["3680_AnimateGuardianResistances"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2094281311", + ["text"] = "#% to Animated Guardian Elemental Resistances", + }, + ["sign"] = "+", + }, + ["1787_GlobalFlaskLifeRecovery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + }, + ["sign"] = "", + }, + ["8612_VitalityReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3972739758", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1497_ManaGainedFromEnemyDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + }, + ["sign"] = "", + }, + ["2322_MovementSpeedWhilePhased"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + }, + ["sign"] = "", + }, + ["1113_LocalColdDamageTwoHand"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + }, + ["sign"] = "", + }, + ["1469_MaximumEnergyShieldLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + }, + ["sign"] = "", + }, + ["1718_MaximumBlockChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", + }, + ["sign"] = "+", + }, + ["2806_VaalSkillDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_547412107", + ["text"] = "#% increased Vaal Skill Effect Duration", + }, + ["sign"] = "", + }, + ["1233_AxeCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4219746989", + ["text"] = "#% to Critical Strike Multiplier with Axes", + }, + ["sign"] = "+", + }, + ["1166_BowIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + }, + ["sign"] = "", + }, + ["2621_MinionElementalResistancesForJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + }, + ["sign"] = "+", + }, + ["1399_LifeLeechFromAttacksPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["145_SocketedChaosGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2062835769", + ["text"] = "#% to Quality of Socketed Chaos Gems", + }, + ["sign"] = "+", + }, + ["1578_AvoidChill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + }, + ["sign"] = "", + }, + ["1542_MinimumFrenzyCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", + }, + ["sign"] = "+", + }, + ["367_DisplaySocketedGemsGetReducedReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + }, + ["sign"] = "", + }, + ["3963_AddedColdDamagePerFrenzyCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + }, + ["sign"] = "", + }, + ["1543_MaximumFrenzyCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + }, + ["sign"] = "+", + }, + ["2689_LightningResistancePenetration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + }, + ["sign"] = "", + }, + ["1069_MaceIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + }, + ["sign"] = "", + }, + ["7590_LifeAddedAsEnergyShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + }, + ["sign"] = "", + }, + ["8140_RemoveShockOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + }, + }, + ["1580_AvoidIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + }, + ["sign"] = "", + }, + ["5250_IncreasedDamagePerPowerCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + }, + ["sign"] = "", + }, + ["8132_RemoveIgniteOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + }, + }, + ["1329_ItemFoundQuantityIncrease"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + }, + ["sign"] = "", + }, + ["6782_MovementVelocityCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2880601380", + ["text"] = "#% increased Movement Speed if Corrupted", + }, + ["sign"] = "", + }, + ["887_BlockPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + }, + ["sign"] = "", + }, + ["4408_AttackImpaleChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + }, + ["sign"] = "", + }, + ["8298_SpellsDoubleDamageChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + }, + ["sign"] = "", + }, + ["109_LocalIncreaseSocketedColdGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", + }, + ["sign"] = "+", + }, + ["5344_DisciplineReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["5192_CurseDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + }, + ["sign"] = "", + }, + ["5332_DeterminationReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1914_BeltIncreasedFlaskDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + }, + ["sign"] = "", + }, + ["1375_MaximumChaosResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + }, + ["sign"] = "+", + }, + ["1376_ChaosResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + }, + ["sign"] = "+", + }, + ["2764_RecoverLifePercentOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + }, + ["sign"] = "", + }, + ["2698_ChanceToGainOnslaughtOnKill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + }, + ["sign"] = "", + }, + ["1929_AttackerTakesDamageNoRange"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + }, + ["sign"] = "", + }, + ["6676_AttackAndCastSpeedCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_26867112", + ["text"] = "#% increased Attack and Cast Speed if Corrupted", + }, + ["sign"] = "", + }, + ["1910_BeltIncreasedFlaskChargesGained"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + }, + ["sign"] = "", + }, + ["6736_ImmuneToCursesCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1954526925", + ["text"] = "Immune to Curses if Corrupted", + }, + }, + ["100_LocalIncreaseSocketedStrengthGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", + }, + ["sign"] = "+", + }, + ["1296_LocalEnergyShield"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + }, + ["sign"] = "+", + }, + ["117_LocalIncreaseSocketedBowGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2027269580", + ["text"] = "# to Level of Socketed Bow Gems", + }, + ["sign"] = "+", + }, + ["118_LocalIncreaseSocketedMeleeGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", + }, + ["sign"] = "+", + }, + ["6933_AddedManaRegenWithShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3762868276", + ["text"] = "Regenerate # Mana per Second while holding a Shield", + }, + ["sign"] = "", + }, + ["108_LocalIncreaseSocketedFireGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", + }, + ["sign"] = "+", + }, + ["4907_DoubleDamageChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + }, + ["sign"] = "", + }, + ["154_SocketedProjectileGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2428621158", + ["text"] = "#% to Quality of Socketed Projectile Gems", + }, + ["sign"] = "+", + }, + ["8555_ChilledGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + }, + }, + ["1954_ReducedReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + }, + ["sign"] = "", + }, + ["6778_IncreasedLifeCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3887484120", + ["text"] = "#% increased maximum Life if Corrupted", + }, + ["sign"] = "", + }, + ["3007_EnemiesExplodeOnDeathPhysicalChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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"] = "", + }, + ["45_HasXSockets"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + }, + }, + ["1199_CriticalStrikeChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + }, + ["sign"] = "", + }, + ["1163_ClawIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + }, + ["sign"] = "", + }, + ["1853_EnduranceChargeDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + }, + ["sign"] = "", + }, + ["5481_EnemiesExplodeOnDeathPhysical"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + }, + ["sign"] = "", + }, + ["128_LocalIncreaseSocketedSupportGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", + }, + ["sign"] = "+", + }, + ["4453_BleedDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + }, + ["sign"] = "", + }, + ["3293_HasOnslaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1520059289", + ["text"] = "Onslaught", + }, + }, + ["1018_LocalPhysicalDamageTwoHanded"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + }, + ["sign"] = "", + }, + ["1377_MaximumElementalResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + }, + ["sign"] = "+", + }, + ["3702_CurseEffectElementalWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + }, + ["sign"] = "", + }, + ["2238_CurseOnHitLevelElementalWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + }, + }, + ["3262_AuraEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + }, + ["sign"] = "", + }, + ["1567_FrenzyChargeOnHitChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + }, + ["sign"] = "", + }, + ["2338_FrenzyChargeOnKillChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + }, + ["sign"] = "", + }, + ["1762_AreaDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + }, + ["sign"] = "", + }, + ["2900_DamagePerEnduranceCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + }, + ["sign"] = "", + }, + ["2240_ConductivityOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + }, + }, + ["5166_SpellCriticalMultiplierWithShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2311200892", + ["text"] = "#% to Critical Strike Multiplier for Spells while holding a Shield", + }, + ["sign"] = "+", + }, + ["1236_WandCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1241396104", + ["text"] = "#% to Critical Strike Multiplier with Wands", + }, + ["sign"] = "+", + }, + ["3704_CurseEffectFlammability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + }, + ["sign"] = "", + }, + ["3077_UnholyMightOnKillPercentChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + }, + ["sign"] = "", + }, + ["1414_LightningDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["1365_MaximumColdResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + }, + ["sign"] = "+", + }, + ["2547_ChaosDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_496011033", + ["text"] = "# Chaos Damage taken", + }, + ["sign"] = "-", + }, + ["1967_DegenDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + }, + ["sign"] = "", + }, + ["3455_LocalAttackReduceEnemyElementalResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + }, + ["sign"] = "", + }, + ["102_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", + }, + ["sign"] = "+", + }, + ["4406_AttacksTauntOnHitChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + }, + ["sign"] = "", + }, + ["1311_LifeRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + }, + ["sign"] = "", + }, + ["1466_MaximumLifeLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + }, + ["sign"] = "", + }, + ["2805_AdditionalVaalSoulOnKill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + }, + ["sign"] = "", + }, + ["3069_CannotBePoisoned"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + }, + }, + ["1305_EnergyShieldRecoveryRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + }, + ["sign"] = "", + }, + ["1124_LocalLightningDamageTwoHand"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + }, + ["sign"] = "", + }, + ["1611_BurnDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + }, + ["sign"] = "", + }, + ["1370_MaximumLightningResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + }, + ["sign"] = "+", + }, + ["930_PercentageDexterity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + }, + ["sign"] = "", + }, + ["6932_AddedManaRegenWithDualWield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1361343333", + ["text"] = "Regenerate # Mana per Second while Dual Wielding", + }, + ["sign"] = "", + }, + ["1868_IncreasedSpellDamagePerPowerCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + }, + ["sign"] = "", + }, + ["101_LocalIncreaseSocketedDexterityGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", + }, + ["sign"] = "+", + }, + ["7920_PhysicalDamageWithUnholyMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1609570656", + ["text"] = "#% increased Physical Damage while you have Unholy Might", + }, + ["sign"] = "", + }, + ["103_LocalIncreaseSocketedGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", + }, + ["sign"] = "+", + }, + ["2291_SummonTotemCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + }, + ["sign"] = "", + }, + ["4405_AttacksBlindOnHitChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + }, + ["sign"] = "", + }, + ["1725_ProjectileDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + }, + ["sign"] = "", + }, + ["1601_SelfStatusAilmentDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + }, + ["sign"] = "", + }, + ["1235_SwordCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3114492047", + ["text"] = "#% to Critical Strike Multiplier with Swords", + }, + ["sign"] = "+", + }, + ["6699_DamageTakenCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3309607228", + ["text"] = "#% reduced Damage taken if Corrupted", + }, + ["sign"] = "", + }, + ["1286_LocalEvasionRating"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + }, + ["sign"] = "+", + }, + ["8312_SpellDamagePer16Strength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4249521944", + ["text"] = "#% increased Spell Damage per 16 Strength", + }, + ["sign"] = "", + }, + ["5343_DisciplineReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2081344089", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["6689_LocalChanceToIntimidateOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + }, + ["sign"] = "", + }, + ["8031_PurityOfIceReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1080_SwordIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + }, + ["sign"] = "", + }, + ["1323_ManaRecoveryRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + }, + ["sign"] = "", + }, + ["5444_IncreasedWeaponElementalDamagePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["928_PercentageAllAttributes"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + }, + ["sign"] = "", + }, + ["4305_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", + }, + ["sign"] = "+", + }, + ["1188_CastSpeedWithShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + }, + ["sign"] = "", + }, + ["1524_AdditionalPierce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + }, + ["sign"] = "", + }, + ["5240_DamagePer15Dexterity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + }, + ["sign"] = "", + }, + ["1573_CannotBeIgnited"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + }, + }, + ["4181_DeterminationPhysicalDamageReduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + }, + ["sign"] = "", + }, + ["1421_ElementalDamageLeechedAsLifePermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["1280_LocalPhysicalDamageReductionRatingPercent"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + }, + ["sign"] = "", + }, + ["1113_LocalColdDamage"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + }, + ["sign"] = "", + }, + ["5140_SpellCriticalChanceWithDualWield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1218939541", + ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + }, + ["sign"] = "", + }, + ["1319_AddedManaRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + }, + ["sign"] = "", + }, + ["6935_AddedManaRegenWithStaff"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1388668644", + ["text"] = "Regenerate # Mana per second while wielding a Staff", + }, + ["sign"] = "", + }, + ["1174_IncreasedAccuracyPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["sign"] = "", + }, + ["1101_GlobalAddedFireDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + }, + ["sign"] = "", + }, + ["973_SpellDamageWithShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + }, + ["sign"] = "", + }, + ["1417_ChaosDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["5242_DamagePer15Strength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + }, + ["sign"] = "", + }, + ["3067_IncreasedAuraEffectDeterminationCorrupted"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + }, + ["sign"] = "", + }, + ["1198_SpellCriticalStrikeChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", + }, + ["sign"] = "", + }, + ["1592_ChillAndFreezeDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + }, + ["sign"] = "", + }, + ["1333_ItemFoundRarityIncrease"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + }, + ["sign"] = "", + }, + ["1719_MaximumSpellBlockChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2388574377", + ["text"] = "#% to maximum Chance to Block Spell Damage", + }, + ["sign"] = "+", + }, + ["1405_FireDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["1299_EnergyShieldDelay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + }, + ["sign"] = "", + }, + ["5858_GraceReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_900639351", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1227_CriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", + }, + ["sign"] = "+", + }, + ["1128_GlobalAddedChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + }, + ["sign"] = "", + }, + ["2882_PoisonDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + }, + ["sign"] = "", + }, + ["7824_IncreasedAilmentEffectOnEnemies"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + }, + ["sign"] = "", + }, + ["2664_GlobalChanceToBlindOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + }, + ["sign"] = "", + }, + ["4918_AdditionalChanceToEvade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2021058489", + ["text"] = "#% chance to Evade Attack Hits", + }, + ["sign"] = "+", + }, + ["1564_PowerChargeOnCriticalStrikeChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + }, + ["sign"] = "", + }, + ["3905_BleedingImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + }, + }, + ["5639_FireDamageSpellSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_361162316", + ["text"] = "#% increased Fire Damage with Spell Skills", + }, + ["sign"] = "", + }, + ["3906_ChanceToAvoidBleeding"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + }, + ["sign"] = "", + }, + ["8032_PurityOfIceReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["2686_ElementalPenetration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + }, + ["sign"] = "", + }, + ["1179_StaffIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1617235962", + ["text"] = "#% increased Accuracy Rating with Staves", + }, + ["sign"] = "", + }, + ["6784_LocalChanceToPoisonOnHit"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + }, + ["sign"] = "", + }, + ["1108_ColdDamagePercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["sign"] = "", + }, + ["1634_StunRecovery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + }, + ["sign"] = "", + }, + ["8035_PurityOfLightningReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3411256933", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["8572_ShockedGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + }, + }, + ["1525_ArrowAdditionalPierce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + }, + }, + ["1162_StaffIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + }, + ["sign"] = "", + }, + ["5042_ColdDamageSpellSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2186994986", + ["text"] = "#% increased Cold Damage with Spell Skills", + }, + ["sign"] = "", + }, + ["1886_IncreasedManaLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + }, + ["sign"] = "", + }, + ["6776_IncreasedEnergyShieldCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1025108940", + ["text"] = "#% increased maximum Energy Shield if Corrupted", + }, + ["sign"] = "", + }, + ["1676_LifeRegenerationRatePercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + }, + ["sign"] = "", + }, + ["5167_SpellCriticalMultiplierWithStaff"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3629080637", + ["text"] = "#% to Critical Strike Multiplier for Spells while wielding a Staff", + }, + ["sign"] = "+", + }, + ["5626_FireDamagePerStrength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + }, + ["sign"] = "", + }, + ["139_SocketedGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3828613551", + ["text"] = "#% to Quality of Socketed Gems", + }, + ["sign"] = "+", + }, + ["2874_PoisonOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + }, + ["sign"] = "", + }, + ["3859_PhysicalDamageRemovedFromManaBeforeLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + }, + ["sign"] = "", + }, + ["8793_UnwaveringStance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1683578560", + ["text"] = "Unwavering Stance", + }, + }, + ["3707_CurseEffectVulnerability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + }, + ["sign"] = "", + }, + ["1436_ManaLeechLocalPermyriad"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + }, + ["sign"] = "", + }, + ["1294_IncreasedEvasionRatingPerFrenzyCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", + }, + ["sign"] = "", + }, + ["1295_EnergyShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + }, + ["sign"] = "+", + }, + ["1359_MaximumFireResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + }, + ["sign"] = "+", + }, + ["2989_DamagePerFrenzyCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + }, + ["sign"] = "", + }, + ["923_DexterityImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + }, + ["sign"] = "+", + }, + ["111_LocalIncreaseSocketedChaosGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", + }, + ["sign"] = "+", + }, + ["2277_FasterIgniteDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + }, + ["sign"] = "", + }, + ["929_PercentageStrength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + }, + ["sign"] = "", + }, + ["143_SocketedAuraGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2276941637", + ["text"] = "#% to Quality of Socketed Aura Gems", + }, + ["sign"] = "+", + }, + ["5333_DeterminationReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_325889252", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["1167_SwordIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + }, + ["sign"] = "", + }, + ["6794_SpellDamageCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_374116820", + ["text"] = "#% increased Spell Damage if Corrupted", + }, + ["sign"] = "", + }, + ["2243_FlammabilityOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + }, + }, + ["2644_PhysicalDamageAddedAsRandomElement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + }, + ["sign"] = "", + }, + ["1147_SpellAddedLightningDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + }, + ["sign"] = "", + }, + ["1318_BaseManaRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + }, + ["sign"] = "", + }, + ["1306_IncreasedLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["sign"] = "+", + }, + ["4352_AttackDamagePerMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4134865890", + ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + }, + ["sign"] = "", + }, + ["1483_LifeGainedFromEnemyDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + }, + ["sign"] = "", + }, + ["3075_LightningDamageAvoidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + }, + ["sign"] = "", + }, + ["1278_LocalPhysicalDamageReductionRating"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + }, + ["sign"] = "+", + }, + ["2309_CurseEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + }, + ["sign"] = "", + }, + ["1104_LocalFireDamageTwoHand"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + }, + ["sign"] = "", + }, + ["2616_MinionAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + }, + ["sign"] = "", + }, + ["2871_PoisonDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + }, + ["sign"] = "", + }, + ["2272_ItemDropsOnGuardianDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + }, + }, + ["5253_DamageVSAbyssMonsters"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + }, + ["sign"] = "", + }, + ["120_LocalIncreaseSocketedAuraLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", + }, + ["sign"] = "+", + }, + ["1689_ConvertPhysicalToColdImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + }, + ["sign"] = "", + }, + ["8112_ReflectDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + }, + ["sign"] = "", + }, + ["7680_MinionAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + }, + ["sign"] = "", + }, + ["2688_ColdResistancePenetration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + }, + ["sign"] = "", + }, + ["2767_DamageWhileLeeching"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + }, + ["sign"] = "", + }, + ["1386_LifeLeechLocalPermyriad"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + }, + ["sign"] = "", + }, + ["1231_DaggerCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3998601568", + ["text"] = "#% to Critical Strike Multiplier with Daggers", + }, + ["sign"] = "+", + }, + ["1673_FireAddedAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["1440_AttackDamageManaLeech"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + }, + ["sign"] = "", + }, + ["1250_ReducedExtraDamageFromCrits"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + }, + ["sign"] = "", + }, + ["5141_SpellCriticalChanceWithShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_952509814", + ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + }, + ["sign"] = "", + }, + ["147_SocketedDexterityGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2877754099", + ["text"] = "#% to Quality of Socketed Dexterity Gems", + }, + ["sign"] = "+", + }, + ["1774_AttackAndCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["sign"] = "", + }, + ["8311_SpellDamagePer16Intelligence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3961014595", + ["text"] = "#% increased Spell Damage per 16 Intelligence", + }, + ["sign"] = "", + }, + ["1591_ShockDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + }, + ["sign"] = "", + }, + ["116_LocalIncreaseSocketedProjectileGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", + }, + ["sign"] = "+", + }, + ["5609_FasterBleedDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + }, + ["sign"] = "", + }, + ["2247_MeleeWeaponAndUnarmedRange"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2264295449", + ["text"] = "# to Melee Strike Range", + }, + ["sign"] = "+", + }, + ["5142_SpellCriticalChanceWithStaff"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_140429540", + ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + }, + ["sign"] = "", + }, + ["1532_MovementVelocity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["sign"] = "", + }, + ["6785_AllElementalResistanceCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3731630482", + ["text"] = "#% to all Elemental Resistances if Corrupted", + }, + ["sign"] = "+", + }, + ["1548_IncreasedMaximumPowerCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", + }, + ["sign"] = "+", + }, + ["2336_EnduranceChargeOnKillChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + }, + ["sign"] = "", + }, + ["110_LocalIncreaseSocketedLightningGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", + }, + ["sign"] = "+", + }, + ["369_SocketedSkillsManaMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + }, + ["sign"] = "", + }, + ["2395_VaalSkillDamageAffectsSkillDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3871212304", + ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + }, + }, + ["906_SpellBlockPercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + }, + ["sign"] = "", + }, + ["6677_AttackDamageCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2347923784", + ["text"] = "#% increased Attack Damage if Corrupted", + }, + ["sign"] = "", + }, + ["1691_ConvertPhysicalToLightningImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + }, + ["sign"] = "", + }, + ["2353_EnergyShieldRegenerationPerMinute"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + }, + ["sign"] = "", + }, + ["943_AttackDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + }, + ["sign"] = "", + }, + ["5165_SpellCriticalMultiplierWithDualWield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2349237916", + ["text"] = "#% to Critical Strike Multiplier for Spells while Dual Wielding", + }, + ["sign"] = "+", + }, + ["1075_BowIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + }, + ["sign"] = "", + }, + ["1994_ReducedPhysicalDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + }, + ["sign"] = "", + }, + ["3355_SkeletonDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + }, + ["sign"] = "", + }, + ["1530_ProjectileSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + }, + ["sign"] = "", + }, + ["8291_AdditionalCriticalStrikeChanceWithSpells"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", + }, + ["sign"] = "+", + }, + ["1486_MaximumManaOnKillPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + }, + ["sign"] = "", + }, + ["155_SocketedStrengthGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_122841557", + ["text"] = "#% to Quality of Socketed Strength Gems", + }, + ["sign"] = "+", + }, + ["999_ColdDamageOverTimeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", + }, + ["sign"] = "+", + }, + ["1434_ManaLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["sign"] = "", + }, + ["1124_LocalLightningDamage"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + }, + ["sign"] = "", + }, + ["1045_AxeIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + }, + ["sign"] = "", + }, + ["4977_ChaosDamageAttackSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1959092146", + ["text"] = "#% increased Chaos Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["2161_PhysicalDamageTakenAsCold"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + }, + ["sign"] = "", + }, + ["1538_MaximumEnduranceCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + }, + ["sign"] = "+", + }, + ["2687_FireResistancePenetration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + }, + ["sign"] = "", + }, + ["1174_LocalAccuracyRatingIncrease"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["sign"] = "", + }, + ["1672_ColdAddedAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["1237_ClawCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2811834828", + ["text"] = "#% to Critical Strike Multiplier with Claws", + }, + ["sign"] = "+", + }, + ["1087_WandIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + }, + ["sign"] = "", + }, + ["971_SpellDamageWithStaff"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + }, + ["sign"] = "", + }, + ["1885_IncreasedLifeLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + }, + ["sign"] = "", + }, + ["2213_LightRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + }, + ["sign"] = "", + }, + ["962_DamageWhileLeechingLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3591306273", + ["text"] = "#% increased Damage while Leeching Life", + }, + ["sign"] = "", + }, + ["4371_AddedLightningDamagePerIntelligence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + }, + ["sign"] = "", + }, + ["5039_FlatColdDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_261654754", + ["text"] = "# Cold Damage taken from Hits", + }, + ["sign"] = "-", + }, + ["1131_LocalChaosDamageTwoHand"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + }, + ["sign"] = "", + }, + ["1660_MineLayingSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + }, + ["sign"] = "", + }, + ["2202_ChanceToBleed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + }, + ["sign"] = "", + }, + ["1279_GlobalPhysicalDamageReductionRatingPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + }, + ["sign"] = "", + }, + ["1238_StaffCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1474913037", + ["text"] = "#% to Critical Strike Multiplier with Staves", + }, + ["sign"] = "+", + }, + ["115_IncreasedSocketedAoEGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", + }, + ["sign"] = "+", + }, + ["1705_MinionDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + }, + ["sign"] = "", + }, + ["4252_AreaOfEffectIfStunnedEnemyRecently"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + }, + ["sign"] = "", + }, + ["1590_ChillAndFreezeDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + }, + ["sign"] = "", + }, + ["1401_PhysicalDamageLifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["1482_EnergyShieldGainPerTarget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + }, + ["sign"] = "", + }, + ["7568_FortifyEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_335507772", + ["text"] = "# to maximum Fortification", + }, + ["sign"] = "+", + }, + ["1321_ManaRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + }, + ["sign"] = "", + }, + ["1313_LifeRegenerationPercentPerEnduranceCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + }, + ["sign"] = "", + }, + ["2796_VaalSkillDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + }, + ["sign"] = "", + }, + ["6693_GlobalCriticalStrikeChanceCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4023723828", + ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + }, + ["sign"] = "", + }, + ["1547_MinimumPowerCharges"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1999711879", + ["text"] = "# to Minimum Power Charges", + }, + ["sign"] = "+", + }, + ["1131_LocalChaosDamage"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + }, + ["sign"] = "", + }, + ["1165_MaceIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + }, + ["sign"] = "", + }, + ["1666_PhysicalAddedAsLightning"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + }, + ["sign"] = "", + }, + ["7940_PhysicalDamageSpellSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1430255627", + ["text"] = "#% increased Physical Damage with Spell Skills", + }, + ["sign"] = "", + }, + ["2808_VaalSkillCriticalStrikeChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + }, + ["sign"] = "", + }, + ["1753_ChanceToIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + }, + ["sign"] = "", + }, + ["1161_AxeIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + }, + ["sign"] = "", + }, + ["1950_ManaReservationEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + }, + ["sign"] = "", + }, + ["4978_ChaosDamageSpellSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3761858151", + ["text"] = "#% increased Chaos Damage with Spell Skills", + }, + ["sign"] = "", + }, + ["1625_IncreaseManaCostFlat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3736589033", + ["text"] = "# to Total Mana Cost of Skills", + }, + ["sign"] = "-", + }, + ["976_LocalPhysicalDamagePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["sign"] = "", + }, + ["1317_MaximumManaIncreasePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + }, + ["sign"] = "", + }, + ["6299_LightningDamageAttackSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["1316_IncreasedMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["sign"] = "+", + }, + ["974_SpellDamageWithDualWield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + }, + ["sign"] = "", + }, + ["924_IntelligenceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + }, + ["sign"] = "+", + }, + ["922_StrengthImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + }, + ["sign"] = "+", + }, + ["1288_LocalEvasionRatingIncreasePercent"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + }, + ["sign"] = "", + }, + ["5638_FireDamageAttackSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2468413380", + ["text"] = "#% increased Fire Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["1572_CannotBeFrozen"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_876831634", + ["text"] = "Cannot be Frozen", + }, + }, + ["2734_AttackAndCastSpeedWithOnslaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2320884914", + ["text"] = "#% increased Attack and Cast Speed during Onslaught", + }, + ["sign"] = "", + }, + ["3287_LightningPenetrationWeapon"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + }, + ["sign"] = "", + }, + ["1183_BowIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + }, + ["sign"] = "", + }, + ["1632_AvoidInterruptionWhileCasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1916706958", + ["text"] = "#% chance to Avoid interruption from Stuns while Casting", + }, + ["sign"] = "", + }, + ["1234_BowCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", + }, + ["sign"] = "+", + }, + ["2164_PhysicalDamageTakenAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + }, + ["sign"] = "", + }, + ["1724_GlobalKnockbackChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + }, + ["sign"] = "", + }, + ["1667_PhysicalAddedAsChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + }, + ["sign"] = "", + }, + ["1384_LifeLeechPermyriad"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["sign"] = "", + }, + ["4920_GraceAdditionalChanceToEvade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_969576725", + ["text"] = "#% chance to Evade Attack Hits while affected by Grace", + }, + ["sign"] = "+", + }, + ["1500_MinionLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + }, + ["sign"] = "", + }, + ["1104_LocalFireDamage"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + }, + ["sign"] = "", + }, + ["4369_AddedFireDamagePerStrength"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + }, + ["sign"] = "", + }, + ["1614_AreaOfEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, + ["sign"] = "", + }, + ["5041_ColdDamageAttackSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + }, + ["sign"] = "", + }, + ["1468_MaximumManaLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + }, + ["sign"] = "", + }, + ["1119_LightningDamagePercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + }, + ["sign"] = "", + }, + ["8129_RemoveFreezeOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + }, + }, + ["1583_ChanceToAvoidPoison"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + }, + ["sign"] = "", + }, + ["119_LocalIncreaseSocketedMinionGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", + }, + ["sign"] = "+", + }, + ["1255_StunThresholdReduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + }, + ["sign"] = "", + }, + ["931_PercentageIntelligence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + }, + ["sign"] = "", + }, + ["1287_GlobalEvasionRatingPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + }, + ["sign"] = "", + }, + ["8028_PurityOfFireReservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3003688066", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + }, + ["sign"] = "", + }, + ["968_SpellDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["sign"] = "", + }, + ["1146_SpellAddedColdDamageTwoHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + }, + ["sign"] = "", + }, + ["1577_AvoidElementalStatusAilments"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + }, + ["sign"] = "", + }, + ["890_SpellDamageSuppressed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent #% of Suppressed Spell Damage", + }, + ["sign"] = "+", + }, + ["1164_DaggerIncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + }, + ["sign"] = "", + }, + ["1597_StunDurationIncreasePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + }, + ["sign"] = "", + }, + ["3154_SpectreDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3645693773", + ["text"] = "Spectres have #% increased Damage", + }, + ["sign"] = "", + }, + ["2617_MinionCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + }, + ["sign"] = "", + }, + ["1617_ManaCostReduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + }, + ["sign"] = "", + }, + ["2620_MinionLifeRegeneration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + }, + ["sign"] = "", + }, + ["5241_DamagePer15Intelligence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + }, + ["sign"] = "", + }, + ["8337_SpellsHinderOnHitChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + }, + ["sign"] = "", + }, + ["4180_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + }, + ["sign"] = "", + }, + ["955_DegenerationDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + }, + ["sign"] = "", + }, + ["1493_GainManaOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + }, + ["sign"] = "", + }, + ["1298_GlobalEnergyShieldPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + }, + ["sign"] = "", + }, + ["1151_IncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["sign"] = "", + }, + ["2244_FrostbiteOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + }, + }, + ["3701_CurseEffectConductivity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + }, + ["sign"] = "", + }, + ["1855_FrenzyChargeDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + }, + ["sign"] = "", + }, + ["1760_ChanceToShock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + }, + ["sign"] = "", + }, + ["1479_ManaGainPerTarget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + }, + ["sign"] = "", + }, + ["1049_StaffIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + }, + ["sign"] = "", + }, + ["6298_FlatLightningDamageTaken"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_465051235", + ["text"] = "# Lightning Damage taken from Hits", + }, + ["sign"] = "-", + }, + ["6300_LightningDamageSpellSkills"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3935031607", + ["text"] = "#% increased Lightning Damage with Spell Skills", + }, + ["sign"] = "", + }, + ["1911_BeltReducedFlaskChargesUsed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + }, + ["sign"] = "", + }, + ["1189_CastSpeedWithStaff"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + }, + ["sign"] = "", + }, + ["2160_PhysicalDamageTakenAsFirePercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + }, + ["sign"] = "", + }, + ["1018_LocalPhysicalDamage"] = { + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + }, + ["sign"] = "", + }, + ["1181_DaggerIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2054715690", + ["text"] = "#% increased Accuracy Rating with Daggers", + }, + ["sign"] = "", + }, + ["1184_SwordIncreasedAccuracyRating"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2090868905", + ["text"] = "#% increased Accuracy Rating with Swords", + }, + ["sign"] = "", + }, + ["1585_AvoidStun"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + }, + ["sign"] = "", + }, + ["1367_ColdResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + }, + ["sign"] = "+", + }, + ["1203_LocalCriticalStrikeChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + }, + ["sign"] = "", + }, + ["1145_SpellAddedFireDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + }, + ["sign"] = "", + }, + ["2236_CurseOnHitLevelVulnerability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + }, + }, + ["4446_AilmentDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + }, + ["sign"] = "", + }, + ["6698_AllDamageCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_767196662", + ["text"] = "#% increased Damage if Corrupted", + }, + ["sign"] = "", + }, + ["142_SocketedAoEGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_768982451", + ["text"] = "#% to Quality of Socketed AoE Gems", + }, + ["sign"] = "+", + }, + ["151_SocketedLightningGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1065580342", + ["text"] = "#% to Quality of Socketed Lightning Gems", + }, + ["sign"] = "+", + }, + ["1756_ChanceToFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + }, + ["sign"] = "", + }, + ["1579_AvoidFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + }, + ["sign"] = "", + }, + ["4917_ChanceWhenHitForArmourToBeDoubled"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + }, + ["sign"] = "", + }, + ["1687_ConvertPhysicalToFireImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + }, + ["sign"] = "", + }, + ["144_SocketedBowGemQuality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3280600715", + ["text"] = "#% to Quality of Socketed Bow Gems", + }, + ["sign"] = "+", + }, + ["8197_ShockEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + }, + ["sign"] = "", + }, + ["1473_LifeGainPerTargetLocal"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + }, + ["sign"] = "", + }, + ["1063_DaggerIncreasedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + }, + ["sign"] = "", + }, + ["1147_SpellAddedLightningDamageTwoHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + }, + ["sign"] = "", + }, + ["1145_SpellAddedFireDamageTwoHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + }, + ["sign"] = "", + }, + }, + ["Exarch"] = { + ["3787_FireGolemBuffEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 46, + ["max"] = 60, + }, + }, + ["5280_DamageTakenGainedAsLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + }, + ["Chest"] = { + ["min"] = 8, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["2900_DamagePerEnduranceChargeUniquePresence"] = { + ["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, + }, + }, + ["1186_IncreasedCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 13, + }, + ["sign"] = "", + }, + ["3706_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, + }, + ["sign"] = "", + }, + ["1122_LightningDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 11.5, + ["max"] = 21, + }, + ["sign"] = "", + }, + ["4474_FreezeProliferationUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1925521713", + ["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, + }, + ["sign"] = "", + }, + ["1367_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, + }, + }, + ["6057_HeraldBonusThunderEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1147_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", + }, + ["Helmet"] = { + ["min"] = 37.5, + ["max"] = 65, + }, + ["sign"] = "", + }, + ["3175_FlaskGainPerSecond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1193283913", + ["text"] = "Flasks gain # Charges every 3 seconds", + }, + ["Chest"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["sign"] = "", + }, + ["5633_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", + }, + ["Helmet"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["4687_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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 9, + }, + }, + ["4688_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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 8, + ["max"] = 11, + }, + }, + ["1002_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", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 17, + ["max"] = 29, + }, + }, + ["1102_FireDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 9.5, + ["max"] = 18.5, + }, + ["sign"] = "", + }, + ["3713_ArcticArmourBuffEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4047779849", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect", + }, + ["Chest"] = { + ["min"] = 27, + ["max"] = 41, + }, + ["sign"] = "", + }, + ["1198_SpellCriticalStrikeChanceUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4191234472", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Spells", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 43, + ["max"] = 57, + }, + ["Helmet"] = { + ["min"] = 43, + ["max"] = 57, + }, + }, + ["1099_FireDamagePercentage"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["3701_CurseEffectConductivityUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3547319552", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["1144_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", + }, + ["Helmet"] = { + ["min"] = 24.5, + ["max"] = 46, + }, + ["sign"] = "", + }, + ["5598_ExtinguishOnHitUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4163073767", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit", + }, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 70, + }, + ["sign"] = "", + }, + ["4675_EnduranceChargePerSecond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2555092341", + ["text"] = "Gain an Endurance Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1580_AvoidIgnitePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_911929910", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, + }, + }, + ["3706_CurseEffectPunishment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["7938_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1300694383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1146_SpellAddedColdDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 13, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["1127_IncreasedChaosDamage"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["3702_CurseEffectElementalWeaknessUniquePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["917_BoneOfferingEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["4137_ActionSpeedImplicitPinnaclePresence"] = { + ["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, + }, + }, + ["4677_PowerChargePerSecondUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_46472075", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["sign"] = "", + }, + ["1009_PhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 10.5, + }, + ["sign"] = "", + }, + ["1002_ChaosDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 20, + }, + }, + ["2993_OnslaughtEffectUniquePresence"] = { + ["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, + }, + }, + ["3702_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2029969019", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1186_IncreasedCastSpeedPinnaclePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["4676_FrenzyChargePerSecondUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2847070982", + ["text"] = "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["sign"] = "", + }, + ["1229_AttackCriticalStrikeMultiplierPinnaclePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["2993_OnslaughtEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3209267362", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 22, + ["max"] = 29, + }, + }, + ["975_PhysicalDamagePercent"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["1361_FireResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 13, + ["max"] = 24, + }, + }, + ["1582_AvoidShockPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3823702653", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, + }, + }, + ["2309_CurseEffectiveness"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["Chest"] = { + ["min"] = 7, + ["max"] = 12, + }, + }, + ["4675_EnduranceChargePerSecondUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2441896589", + ["text"] = "While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 6, + ["max"] = 10, + }, + ["sign"] = "", + }, + ["3699_CurseEffectTemporalChainsPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3695602451", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["5850_GolemBuffEffectUniqueUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2159248495", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems", + }, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, + }, + ["sign"] = "", + }, + ["4959_ChanceToUnnerveOnHitPinnaclePresence"] = { + ["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", + }, + ["Gloves"] = { + ["min"] = 4, + ["max"] = 95, + }, + ["sign"] = "", + }, + ["919_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, + }, + }, + ["6297_LightningDamageTakenGainedAsLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["sign"] = "", + }, + ["3704_CurseEffectFlammability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1255_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, + }, + ["sign"] = "", + }, + ["5847_RageOnHitImplicitPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["Gloves"] = { + ["min"] = 0.3, + ["max"] = 0.6, + }, + ["sign"] = "", + }, + ["1108_ColdDamagePercentagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1576689223", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 42, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 42, + }, + }, + ["1099_FireDamagePercentagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2782184338", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 42, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 42, + }, + }, + ["1359_MaximumFireResistanceImplicitPinnaclePresence"] = { + ["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, + }, + }, + ["8228_BrandAttachmentRange"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 15, + }, + }, + ["4348_AttackCriticalStrikeChanceUniquePresence"] = { + ["Gloves"] = { + ["min"] = 34, + ["max"] = 48, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3710240762", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 34, + ["max"] = 48, + }, + }, + ["3786_RockGolemBuffEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 61, + ["max"] = 72, + }, + }, + ["3704_CurseEffectFlammabilityPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_323292443", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1659_TrapThrowSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 13, + }, + ["sign"] = "", + }, + ["4137_ActionSpeedImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, + }, + }, + ["1579_AvoidFreezePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2661498709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, + }, + }, + ["1582_AvoidShock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 33, + ["max"] = 50, + }, + }, + ["6297_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, + }, + ["sign"] = "", + }, + ["1198_SpellCriticalStrikeChancePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1412947753", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Spells", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 58, + ["max"] = 69, + }, + ["Helmet"] = { + ["min"] = 58, + ["max"] = 69, + }, + }, + ["1659_TrapThrowSpeedPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_547463927", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 21, + }, + ["sign"] = "", + }, + ["1129_ChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 7.5, + ["max"] = 14, + }, + ["sign"] = "", + }, + ["1102_FireDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2067485824", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 14, + ["max"] = 25, + }, + ["sign"] = "", + }, + ["3705_CurseEffectFrostbitePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2068042138", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1255_StunThresholdReductionUniquePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["8637_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, + }, + ["sign"] = "", + }, + ["1376_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, + }, + }, + ["1365_MaximumColdResistanceUniquePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["6297_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, + }, + ["sign"] = "", + }, + ["1579_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, + }, + }, + ["3699_CurseEffectTemporalChainsUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_485385046", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["4686_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, + }, + }, + ["1127_IncreasedChaosDamagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2070979181", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 42, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 42, + }, + }, + ["5038_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", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 24, + }, + ["sign"] = "", + }, + ["2451_FlaskEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4155771029", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect", + }, + ["Chest"] = { + ["min"] = 22, + ["max"] = 29, + }, + ["sign"] = "", + }, + ["1365_MaximumColdResistancePinnaclePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["1377_MaximumResistances"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 2, + }, + }, + ["4688_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, + }, + }, + ["5250_IncreasedDamagePerPowerCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + }, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["sign"] = "", + }, + ["1945_ShockProliferationPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2830935139", + ["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, + }, + ["sign"] = "", + }, + ["1002_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 29, + ["max"] = 38, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2163155983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Chaos Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 38, + }, + }, + ["6047_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", + }, + ["Gloves"] = { + ["min"] = 39, + ["max"] = 48, + }, + ["sign"] = "", + }, + ["1532_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, + }, + ["Boots"] = { + ["min"] = 9, + ["max"] = 13, + }, + }, + ["1230_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["1376_ChaosResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["1111_ColdDamagePinnaclePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["5598_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, + }, + ["sign"] = "", + }, + ["4368_ReducedAttackManaCost"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2859471749", + ["text"] = "#% reduced Mana Cost of Attacks", + }, + ["Helmet"] = { + ["min"] = 19, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1148_SpellAddedChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 21, + }, + ["sign"] = "", + }, + ["1503_MinionRunSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_93625449", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed", + }, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 28, + }, + ["sign"] = "", + }, + ["1377_MaximumResistancesPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_673499528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all maximum Resistances", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 3, + ["max"] = 4, + }, + ["Chest"] = { + ["min"] = 3, + ["max"] = 4, + }, + }, + ["1230_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, + }, + ["sign"] = "+", + }, + ["990_PhysicalDamageOverTimeMultiplierUniquePresence"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 29, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_841219865", + ["text"] = "While a Unique Enemy is in your Presence, #% to Physical Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 17, + ["max"] = 29, + }, + }, + ["1500_MinionLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + }, + ["Helmet"] = { + ["min"] = 14, + ["max"] = 29, + }, + ["sign"] = "", + }, + ["1945_ShockProliferationUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2434611606", + ["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, + }, + ["sign"] = "", + }, + ["1370_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, + }, + ["sign"] = "+", + }, + ["3702_CurseEffectElementalWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["990_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 29, + ["max"] = 38, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4084536353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Physical Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 38, + }, + }, + ["3786_RockGolemBuffEffectUniquePresence"] = { + ["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, + }, + }, + ["2309_CurseEffectivenessUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2669364207", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Curses", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 11, + ["max"] = 15, + }, + ["Chest"] = { + ["min"] = 11, + ["max"] = 15, + }, + }, + ["1705_MinionDamagePinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 44, + ["max"] = 53, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3141084961", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 44, + ["max"] = 53, + }, + }, + ["3699_CurseEffectTemporalChains"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1151_IncreasedAttackSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3401410854", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Speed", + }, + ["Gloves"] = { + ["min"] = 13, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["1365_MaximumColdResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + }, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["sign"] = "+", + }, + ["5675_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", + }, + ["Chest"] = { + ["min"] = 39, + ["max"] = 50, + }, + ["sign"] = "", + }, + ["3788_IceGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["1370_MaximumLightningResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["sign"] = "+", + }, + ["917_BoneOfferingEffectPinnaclePresence"] = { + ["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, + }, + }, + ["3789_LightningGolemBuffEffectPinnaclePresence"] = { + ["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, + }, + }, + ["4688_ScorchedGroundMovingImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_396238230", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 2, + ["max"] = 7, + }, + }, + ["3789_LightningGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["1377_MaximumResistancesUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3062531896", + ["text"] = "While a Unique Enemy is in your Presence, #% to all maximum Resistances", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 2, + ["max"] = 3, + }, + ["Chest"] = { + ["min"] = 2, + ["max"] = 3, + }, + }, + ["2291_SummonTotemCastSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 10, + ["max"] = 15, + }, + }, + ["8487_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", + }, + ["Chest"] = { + ["min"] = 39, + ["max"] = 50, + }, + ["sign"] = "", + }, + ["3706_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, + }, + ["sign"] = "", + }, + ["6057_HeraldBonusThunderEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_649027123", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 27, + ["max"] = 39, + }, + ["sign"] = "", + }, + ["3753_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, + }, + ["sign"] = "", + }, + ["6039_HeraldBonusAgonyEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1009_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", + }, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 21.5, + }, + ["sign"] = "", + }, + ["8637_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, + }, + ["sign"] = "", + }, + ["1198_SpellCriticalStrikeChance"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 28, + ["max"] = 45, + }, + ["Helmet"] = { + ["min"] = 28, + ["max"] = 45, + }, + }, + ["1361_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, + }, + }, + ["4474_FreezeProliferation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3388565132", + ["text"] = "Freezes you inflict spread to other Enemies within a Radius of #", + }, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["4687_SappedGroundWhileMovingPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["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, + }, + }, + ["5038_ColdDamageTakenGainedAsLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["sign"] = "", + }, + ["1148_SpellAddedChaosDamagePinnaclePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["4959_ChanceToUnnerveOnHitUniquePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 70, + }, + ["sign"] = "", + }, + ["5038_ColdDamageTakenGainedAsLifePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2181576428", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1119_LightningDamagePercentageUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2668120423", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 24, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 24, + ["max"] = 36, + }, + }, + ["4676_FrenzyChargePerSecond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3906868545", + ["text"] = "Gain a Frenzy Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["917_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, + }, + }, + ["3713_ArcticArmourBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 32, + }, + ["sign"] = "", + }, + ["1146_SpellAddedColdDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3349767748", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 27.5, + ["max"] = 50.5, + }, + ["sign"] = "", + }, + ["4474_FreezeProliferationPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3414959001", + ["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, + }, + ["sign"] = "", + }, + ["1009_PhysicalDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2521809744", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 14, + }, + ["sign"] = "", + }, + ["1365_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, + ["max"] = 4, + }, + ["sign"] = "+", + }, + ["1108_ColdDamagePercentage"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["1370_MaximumLightningResistanceEldritch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["sign"] = "+", + }, + ["1376_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, + }, + }, + ["6039_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, + }, + ["sign"] = "", + }, + ["5250_IncreasedDamagePerPowerChargePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2809284200", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 8, + }, + ["sign"] = "", + }, + ["1145_SpellAddedFireDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 28, + }, + ["sign"] = "", + }, + ["1944_GlobalIgniteProlifPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_282734421", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within a Radius of #", + }, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["3707_CurseEffectVulnerability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1146_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, + }, + ["sign"] = "", + }, + ["1944_GlobalIgniteProlifUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_28294288", + ["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, + }, + ["sign"] = "", + }, + ["1359_MaximumFireResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 1, + ["max"] = 2, + }, + }, + ["1367_ColdResistanceUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2240274773", + ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 21, + ["max"] = 30, + }, + }, + ["5633_FireDamageTakenGainedAsLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["sign"] = "", + }, + ["1111_ColdDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 8.5, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["3701_CurseEffectConductivityPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2095999895", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1945_ShockProliferation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2035759353", + ["text"] = "Shocks you inflict spread to other Enemies within a Radius of #", + }, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["3790_ChaosGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["1147_SpellAddedLightningDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 18, + ["max"] = 32.5, + }, + ["sign"] = "", + }, + ["918_FleshOfferingEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["4952_ChanceToIntimidateOnHitPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["Gloves"] = { + ["min"] = 85, + ["max"] = 95, + }, + ["sign"] = "", + }, + ["2406_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", + }, + ["sign"] = "", + }, + ["1359_MaximumFireResistanceEldritch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["sign"] = "+", + }, + ["4676_FrenzyChargePerSecondPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_560848642", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["sign"] = "", + }, + ["4675_EnduranceChargePerSecondPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_951862199", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["sign"] = "", + }, + ["5250_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, + }, + ["sign"] = "", + }, + ["1108_ColdDamagePercentageUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2127607252", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cold Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 24, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 24, + ["max"] = 36, + }, + }, + ["2451_FlaskEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + }, + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["999_ColdDamageOverTimeMultiplierUniquePresence"] = { + ["Gloves"] = { + ["min"] = 17, + ["max"] = 29, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_621576159", + ["text"] = "While a Unique Enemy is in your Presence, #% to Cold Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 17, + ["max"] = 29, + }, + }, + ["7603_StrikeSkillsAdditionalTarget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1661253443", + ["text"] = "Strike Skills target # additional nearby Enemy", + }, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "", + }, + ["1705_MinionDamage"] = { + ["Gloves"] = { + ["min"] = 14, + ["max"] = 29, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 14, + ["max"] = 29, + }, + }, + ["4368_ReducedAttackManaCostUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1116269888", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks", + }, + ["Helmet"] = { + ["min"] = 27, + ["max"] = 36, + }, + ["sign"] = "", + }, + ["5850_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, + }, + ["sign"] = "", + }, + ["2989_DamagePerFrenzyChargePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1855179125", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge", + }, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 8, + }, + ["sign"] = "", + }, + ["1099_FireDamagePercentageUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1590336483", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Fire Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 24, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 24, + ["max"] = 36, + }, + }, + ["6051_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, + }, + ["sign"] = "", + }, + ["3713_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, + }, + ["sign"] = "", + }, + ["5328_CurseEffectDespair"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1532_MovementVelocity"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, + }, + ["3705_CurseEffectFrostbite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1144_SpellAddedPhysicalDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4272276606", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 17, + ["max"] = 30.5, + }, + ["sign"] = "", + }, + ["1659_TrapThrowSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2479119864", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 13, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["2451_FlaskEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3610955422", + ["text"] = "While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect", + }, + ["Chest"] = { + ["min"] = 14, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1365_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["1580_AvoidIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 33, + ["max"] = 50, + }, + }, + ["1359_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, + }, + ["sign"] = "+", + }, + ["3703_CurseEffectEnfeebleUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_937462392", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["1147_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, + }, + ["sign"] = "", + }, + ["994_FireDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 20, + }, + }, + ["4677_PowerChargePerSecond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3533655459", + ["text"] = "Gain a Power Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["8637_WarcryEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + }, + ["Chest"] = { + ["min"] = 19, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1614_AreaOfEffectUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1847660463", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Area of Effect", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 24, + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 24, + }, + }, + ["1375_MaximumChaosResistanceImplicitUniquePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["1372_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, + }, + }, + ["1944_GlobalIgniteProlif"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3281591194", + ["text"] = "Ignites you inflict spread to other Enemies within a Radius of #", + }, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["1122_LightningDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2111629859", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 17, + ["max"] = 28, + }, + ["sign"] = "", + }, + ["1129_ChaosDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2444070126", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 10.5, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["3707_CurseEffectVulnerabilityPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1668340466", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["999_ColdDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 20, + }, + }, + ["5675_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", + }, + ["Chest"] = { + ["min"] = 27, + ["max"] = 41, + }, + ["sign"] = "", + }, + ["994_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", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 17, + ["max"] = 29, + }, + }, + ["918_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, + }, + }, + ["3787_FireGolemBuffEffectPinnaclePresence"] = { + ["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, + }, + }, + ["1119_LightningDamagePercentagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1328859059", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 42, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 42, + }, + }, + ["975_PhysicalDamagePercentUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_604852150", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Physical Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 24, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 24, + ["max"] = 36, + }, + }, + ["1119_LightningDamagePercentage"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 30, + }, + }, + ["1614_AreaOfEffectPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_568930056", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 23, + ["max"] = 30, + }, + ["Helmet"] = { + ["min"] = 23, + ["max"] = 30, + }, + }, + ["1151_IncreasedAttackSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 13, + }, + ["sign"] = "", + }, + ["8228_BrandAttachmentRangeUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_636616197", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Brand Attachment range", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 19, + }, + }, + ["1372_LightningResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 13, + ["max"] = 24, + }, + }, + ["3789_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, + }, + }, + ["1500_MinionLifePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4057257145", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life", + }, + ["Helmet"] = { + ["min"] = 32, + ["max"] = 41, + }, + ["sign"] = "", + }, + ["1585_AvoidStunPinnaclePresence"] = { + ["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, + }, + }, + ["3753_OfferingEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2526554500", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Offerings", + }, + ["Chest"] = { + ["min"] = 29, + ["max"] = 36, + }, + ["sign"] = "", + }, + ["1372_LightningResistancePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3980173235", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Lightning Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 29, + ["max"] = 36, + }, + }, + ["2989_DamagePerFrenzyChargeUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2415020123", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge", + }, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["sign"] = "", + }, + ["5328_CurseEffectDespairUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2909684383", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Despair Curse Effect", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["1660_MineLayingSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 13, + }, + ["sign"] = "", + }, + ["5328_CurseEffectDespairPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2775855429", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["1111_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, + }, + ["sign"] = "", + }, + ["3705_CurseEffectFrostbiteUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3199183447", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 19, + }, + ["sign"] = "", + }, + ["2900_DamagePerEnduranceChargePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_740797388", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 7, + ["max"] = 8, + }, + }, + ["6047_HeraldBonusIceEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["919_SpiritOfferingEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2399066987", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 22, + ["max"] = 29, + }, + }, + ["1145_SpellAddedFireDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_661603414", + ["text"] = "While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 21.5, + ["max"] = 37.5, + }, + ["sign"] = "", + }, + ["6039_HeraldBonusAgonyEffectUniquePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["3262_AuraEffect"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["Chest"] = { + ["min"] = 9, + ["max"] = 20, + }, + }, + ["1145_SpellAddedFireDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3954869480", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 30.5, + ["max"] = 56, + }, + ["sign"] = "", + }, + ["3175_FlaskGainPerSecondPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1519845279", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds", + }, + ["Chest"] = { + ["min"] = 3, + ["max"] = 4, + }, + ["sign"] = "", + }, + ["6043_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", + }, + ["Gloves"] = { + ["min"] = 39, + ["max"] = 48, + }, + ["sign"] = "", + }, + ["1102_FireDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3972399670", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 20.5, + ["max"] = 38, + }, + ["sign"] = "", + }, + ["1660_MineLayingSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1516326076", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 13, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["1129_ChaosDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3953801646", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 15.5, + ["max"] = 28.5, + }, + ["sign"] = "", + }, + ["918_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, + }, + }, + ["6043_HeraldBonusAshEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_109112452", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 27, + ["max"] = 39, + }, + ["sign"] = "", + }, + ["1532_MovementVelocityPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1702124724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 13, + ["max"] = 16, + }, + ["Boots"] = { + ["min"] = 13, + ["max"] = 16, + }, + }, + ["1705_MinionDamageUniquePresence"] = { + ["Gloves"] = { + ["min"] = 29, + ["max"] = 41, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4189960647", + ["text"] = "While a Unique Enemy is in your Presence, Minions deal #% increased Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 41, + }, + }, + ["4686_BrittleGroundMovingImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_984148407", + ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 2, + ["max"] = 7, + }, + }, + ["7938_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["5675_FleshAndStoneAreaOfEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_789978501", + ["text"] = "Flesh and Stone has #% increased Area of Effect", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 32, + }, + ["sign"] = "", + }, + ["2406_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", + }, + ["sign"] = "", + }, + ["3262_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"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 29, + ["max"] = 36, + }, + }, + ["4687_SappedGroundMovingImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1997664024", + ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 2, + ["max"] = 7, + }, + }, + ["8228_BrandAttachmentRangePinnaclePresence"] = { + ["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, + }, + }, + ["5280_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, + }, + ["sign"] = "", + }, + ["7938_PhysicalDamageTakenGainedAsLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4021566756", + ["text"] = "#% of Physical Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["sign"] = "", + }, + ["5280_DamageTakenGainedAsLifeUniquePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["3788_IceGolemBuffEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 46, + ["max"] = 60, + }, + }, + ["5598_ExtinguishOnHitChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_49183689", + ["text"] = "#% chance to Extinguish Enemies on Hit", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 40, + }, + ["sign"] = "", + }, + ["1370_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, + }, + ["sign"] = "+", + }, + ["4686_BrittleGroundWhileMovingUniquePresence"] = { + ["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, + }, + }, + ["5847_RageOnHitImplicit"] = { + ["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, + }, + ["sign"] = "", + }, + ["3788_IceGolemBuffEffectPinnaclePresence"] = { + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 61, + ["max"] = 72, + }, + }, + ["4677_PowerChargePerSecondPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2703923310", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds", + }, + ["Chest"] = { + ["min"] = 2, + ["max"] = 5, + }, + ["sign"] = "", + }, + ["3703_CurseEffectEnfeeblePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_38083709", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect", + }, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 23, + }, + ["sign"] = "", + }, + ["6043_HeraldBonusAshEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["5850_GolemBuffEffectUnique"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2109043683", + ["text"] = "#% increased Effect of Buffs granted by your Golems", + }, + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, + }, + ["sign"] = "", + }, + ["1503_MinionRunSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + }, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 22, + }, + ["sign"] = "", + }, + ["3753_OfferingEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + }, + ["Chest"] = { + ["min"] = 13, + ["max"] = 24, + }, + ["sign"] = "", + }, + ["990_PhysicalDamageOverTimeMultiplier"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 20, + }, + }, + ["4959_ChanceToUnnerveOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 40, + }, + ["sign"] = "", + }, + ["4455_CarrionGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["1122_LightningDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2925105924", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks", + }, + ["Gloves"] = { + ["min"] = 25, + ["max"] = 43, + }, + ["sign"] = "", + }, + ["1230_SpellCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_274716455", + ["text"] = "#% to Critical Strike Multiplier for Spell Damage", + }, + ["Chest"] = { + ["min"] = 20, + ["max"] = 31, + }, + ["sign"] = "+", + }, + ["1361_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, + }, + }, + ["3790_ChaosGolemBuffEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 46, + ["max"] = 60, + }, + }, + ["3704_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, + }, + ["sign"] = "", + }, + ["3262_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", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 19, + ["max"] = 28, + }, + ["Chest"] = { + ["min"] = 19, + ["max"] = 28, + }, + }, + ["2993_OnslaughtEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["1127_IncreasedChaosDamageUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2875239648", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Chaos Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 24, + ["max"] = 36, + }, + ["Chest"] = { + ["min"] = 24, + ["max"] = 36, + }, + }, + ["1144_SpellAddedPhysicalDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + }, + ["Helmet"] = { + ["min"] = 11.5, + ["max"] = 22.5, + }, + ["sign"] = "", + }, + ["4137_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, + }, + }, + ["2291_SummonTotemCastSpeedPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_100371300", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 23, + }, + }, + ["1255_StunThresholdReduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + }, + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["1229_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", + }, + ["Chest"] = { + ["min"] = 28, + ["max"] = 37, + }, + ["sign"] = "+", + }, + ["6057_HeraldBonusThunderEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1553385903", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 39, + ["max"] = 48, + }, + ["sign"] = "", + }, + ["1500_MinionLifeUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3044748809", + ["text"] = "While a Unique Enemy is in your Presence, Minions have #% increased maximum Life", + }, + ["Helmet"] = { + ["min"] = 23, + ["max"] = 35, + }, + ["sign"] = "", + }, + ["2309_CurseEffectivenessPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1350472585", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 18, + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 18, + }, + }, + ["3175_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, + }, + ["sign"] = "", + }, + ["2900_DamagePerEnduranceCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, + }, + }, + ["2291_SummonTotemCastSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2033289503", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Totem Placement speed", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 19, + }, + }, + ["975_PhysicalDamagePercentPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2545907302", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 42, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 42, + }, + }, + ["1614_AreaOfEffect"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 18, + }, + }, + ["1151_IncreasedAttackSpeedPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2446980928", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed", + }, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 21, + }, + ["sign"] = "", + }, + ["3786_RockGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["919_SpiritOfferingEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["1582_AvoidShockUniquePresence"] = { + ["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, + }, + }, + ["1186_IncreasedCastSpeedUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2016247664", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cast Speed", + }, + ["Helmet"] = { + ["min"] = 13, + ["max"] = 17, + }, + ["sign"] = "", + }, + ["1148_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, + }, + ["sign"] = "", + }, + ["6047_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, + }, + ["sign"] = "", + }, + ["6051_HeraldBonusPurityEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4093169696", + ["text"] = "While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 27, + ["max"] = 39, + }, + ["sign"] = "", + }, + ["3703_CurseEffectEnfeeble"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["4952_ChanceToIntimidateOnHitUniquePresence"] = { + ["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", + }, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 70, + }, + ["sign"] = "", + }, + ["4455_CarrionGolemBuffEffectUniquePresence"] = { + ["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, + }, + }, + ["1370_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, + }, + ["sign"] = "+", + }, + ["3701_CurseEffectConductivity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + }, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["sign"] = "", + }, + ["1375_MaximumChaosResistanceImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["sign"] = "+", + }, + ["1359_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, + }, + }, + ["8487_TempestShieldBuffEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_942478380", + ["text"] = "While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect", + }, + ["Chest"] = { + ["min"] = 27, + ["max"] = 41, + }, + ["sign"] = "", + }, + ["8487_TempestShieldBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2662416009", + ["text"] = "Tempest Shield has #% increased Buff Effect", + }, + ["Chest"] = { + ["min"] = 15, + ["max"] = 32, + }, + ["sign"] = "", + }, + ["1370_MaximumLightningResistanceImplicitUniquePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["5847_RageOnHitImplicitUniquePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.9, + }, + ["sign"] = "", + }, + ["1365_MaximumColdResistanceEldritch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 3, + }, + ["sign"] = "+", + }, + ["4368_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, + }, + ["sign"] = "", + }, + ["6051_HeraldBonusPurityEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 30, + }, + ["sign"] = "", + }, + ["1375_MaximumChaosResistanceImplicitPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_944522962", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to maximum Chaos Resistance", + }, + ["Chest"] = { + ["min"] = 4, + ["max"] = 5, + }, + ["sign"] = "+", + }, + ["5633_FireDamageTakenGainedAsLifeUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2143647966", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 24, + }, + ["sign"] = "", + }, + ["1660_MineLayingSpeedPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3827973062", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed", + }, + ["Gloves"] = { + ["min"] = 18, + ["max"] = 21, + }, + ["sign"] = "", + }, + ["1585_AvoidStun"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, + }, + }, + ["1367_ColdResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + }, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 13, + ["max"] = 24, + }, + }, + ["1503_MinionRunSpeedPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2809900883", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed", + }, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 34, + }, + ["sign"] = "", + }, + ["4952_ChanceToIntimidateOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 40, + }, + ["sign"] = "", + }, + ["994_FireDamageOverTimeMultiplierPinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 29, + ["max"] = 38, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1870961528", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Fire Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 38, + }, + }, + ["4348_AttackCriticalStrikeChancePinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 49, + ["max"] = 60, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1840069423", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 49, + ["max"] = 60, + }, + }, + ["1229_AttackCriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3714003708", + ["text"] = "#% to Critical Strike Multiplier for Attack Damage", + }, + ["Chest"] = { + ["min"] = 20, + ["max"] = 31, + }, + ["sign"] = "+", + }, + ["4348_AttackCriticalStrikeChance"] = { + ["Gloves"] = { + ["min"] = 19, + ["max"] = 36, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Strike Chance for Attacks", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 19, + ["max"] = 36, + }, + }, + ["1359_MaximumFireResistanceEldritchUniquePresence"] = { + ["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, + }, + ["sign"] = "+", + }, + ["1585_AvoidStunUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3322913142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 27, + ["max"] = 41, + }, + }, + ["1579_AvoidFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 33, + ["max"] = 50, + }, + }, + ["3787_FireGolemBuffEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 31, + ["max"] = 48, + }, + }, + ["1580_AvoidIgniteUniquePresence"] = { + ["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, + }, + }, + ["4455_CarrionGolemBuffEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 61, + ["max"] = 72, + }, + }, + ["2989_DamagePerFrenzyCharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + }, + ["Gloves"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["sign"] = "", + }, + ["999_ColdDamageOverTimeMultiplierPinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 29, + ["max"] = 38, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2619970520", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to Cold Damage over Time Multiplier", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 38, + }, + }, + ["2406_DamageRemovedFromManaBeforeLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + }, + ["sign"] = "", + }, + ["3790_ChaosGolemBuffEffectPinnaclePresence"] = { + ["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, + }, + }, + ["3707_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, + }, + ["sign"] = "", + }, + }, + ["Implicit"] = { + ["implicit.stat_4251717817"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1310194496"] = { + ["2HMace"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + }, + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 24, + ["min"] = 12, + }, + ["Claw"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 12, + ["min"] = 8, + }, + }, + ["implicit.stat_1795443614"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1795443614", + ["text"] = "Has Elder, Shaper and all Conqueror Influences", + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_328541901"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + }, + ["implicit.stat_4220027924"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + }, + ["implicit.stat_3531280422"] = { + ["1HSword"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HMace"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Staff"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HMace"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["Claw"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HSword"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + }, + ["Bow"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HAxe"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HAxe"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["1HWeapon"] = { + ["max"] = 76.5, + ["min"] = 34, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2375316951"] = { + ["1HSword"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1423639565"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "+", + }, + ["implicit.stat_2091591880"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + }, + ["implicit.stat_734614379"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_4067062424"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 2.5, + ["min"] = 2.5, + }, + }, + ["implicit.stat_1296614065"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + }, + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_803737631"] = { + ["1HSword"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HMace"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Staff"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HMace"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["Claw"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HSword"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + }, + ["Bow"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HAxe"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HAxe"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["2HWeapon"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 475, + ["min"] = 45, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_563547620"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_563547620", + ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_2891184298"] = { + ["1HSword"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + }, + ["Bow"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HAxe"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_589489789"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_589489789", + ["text"] = "Can't use Flask in Fifth Slot", + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_3423006863"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_2387423236"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + }, + ["Helmet"] = { + ["max"] = 106.5, + ["min"] = 4, + ["subType"] = "Evasion/Energy Shield", + }, + ["sign"] = "", + }, + ["implicit.stat_538730182"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_538730182", + ["text"] = "Creates a Smoke Cloud on Use", + }, + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + }, + ["implicit.stat_3319896421"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + }, + ["implicit.stat_3962278098"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_2530372417"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + }, + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["Boots"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 4, + ["subType"] = "Armour", + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + }, + ["implicit.stat_3441501978"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Energy Shield", + }, + }, + ["implicit.stat_2622251413"] = { + ["1HSword"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2748665614"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 8, + }, + }, + ["implicit.stat_1519615863"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2924279089"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2924279089", + ["text"] = "#% increased Attack Damage with Off Hand", + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Evasion", + }, + }, + ["implicit.stat_4282426229"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4282426229", + ["text"] = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_2239667237"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2239667237", + ["text"] = "Right ring slot: #% increased Skill Effect Duration", + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + }, + ["implicit.stat_1050105434"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + ["subType"] = "Evasion/Energy Shield", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + }, + ["implicit.stat_2146730404"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2146730404", + ["text"] = "Creates Consecrated Ground on Use", + }, + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + }, + ["implicit.stat_3291658075"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["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", + }, + ["sign"] = "", + }, + ["implicit.stat_280731498"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 8, + ["min"] = 5, + ["subType"] = "Talisman", + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + }, + ["implicit.stat_2797971005"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 8, + ["min"] = 6, + }, + }, + ["implicit.stat_369183568"] = { + ["Gloves"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_369183568", + ["text"] = "#% increased Block Recovery", + }, + ["Shield"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Helmet"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Boots"] = { + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + }, + ["implicit.stat_1313503107"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1313503107", + ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["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", + }, + ["sign"] = "", + }, + ["implicit.stat_2120297997"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2120297997", + ["text"] = "#% Chance to Block Spell Damage while wielding a Staff", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Warstaff", + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1504091975"] = { + ["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", + }, + ["sign"] = "", + }, + ["implicit.stat_2170876738"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2170876738", + ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_1054322244"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + }, + ["Amulet"] = { + ["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", + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + }, + ["implicit.stat_2192875806"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2192875806", + ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Energy Shield", + }, + }, + ["implicit.stat_3489782002"] = { + ["2HMace"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HMace"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Bow"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + }, + ["1HAxe"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HSword"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Wand"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Staff"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HSword"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["specialCaseData"] = { + }, + ["Claw"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["2HWeapon"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["1HWeapon"] = { + ["max"] = 165, + ["min"] = 66, + }, + ["Belt"] = { + ["max"] = 80, + ["min"] = 9, + }, + }, + ["implicit.stat_2915988346"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + }, + ["implicit.stat_1535626285"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + }, + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "+", + }, + ["implicit.stat_2067062068"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + }, + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Talisman", + }, + ["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, + }, + }, + ["implicit.stat_789117908"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + }, + ["Amulet"] = { + ["max"] = 56, + ["min"] = 20, + }, + ["sign"] = "", + }, + ["implicit.stat_3374165039"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + }, + ["implicit.stat_3325883026"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + }, + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + }, + ["implicit.stat_1569101201"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + }, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 25, + ["subType"] = "Armour", + }, + }, + ["implicit.stat_2250533757"] = { + ["Gloves"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Boots"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 9, + ["min"] = 3, + ["subType"] = "Evasion", + }, + }, + ["implicit.stat_821021828"] = { + ["1HSword"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + }, + ["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, + }, + }, + ["implicit.stat_532463031"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_532463031", + ["text"] = "Implicit Modifiers Cannot Be Changed", + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_3375859421"] = { + ["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", + }, + ["sign"] = "", + }, + ["implicit.stat_321077055"] = { + ["1HSword"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HMace"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + }, + ["Bow"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HAxe"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 144, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1189760108"] = { + ["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", + }, + ["sign"] = "", + }, + ["implicit.stat_2300185227"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + }, + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["sign"] = "+", + }, + ["implicit.stat_3311869501"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3311869501", + ["text"] = "Creates Chilled Ground on Use", + }, + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + }, + ["implicit.stat_2522672898"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_1633778432"] = { + ["1HSword"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1633778432", + ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune", + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2843214518"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_2154246560"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 25, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_1389153006"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, + }, + ["implicit.stat_2039822488"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_640052854"] = { + ["1HSword"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_640052854", + ["text"] = "Grants # Mana per Enemy Hit", + }, + ["Bow"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HAxe"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_846313030"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_846313030", + ["text"] = "You are Crushed", + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + }, + ["implicit.stat_3680664274"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["sign"] = "+", + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, + ["subType"] = "Evasion/Energy Shield", + }, + }, + ["implicit.stat_2923486259"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + }, + ["Boots"] = { + ["max"] = 17, + ["min"] = 13, + ["subType"] = "Evasion/Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Ring"] = { + ["max"] = 23, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, + }, + }, + ["implicit.stat_2101383955"] = { + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2231156303"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_1826802197"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + }, + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_3593843976"] = { + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2457848738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2457848738", + ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + }, + ["implicit.stat_836936635"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + }, + ["Amulet"] = { + ["max"] = 2, + ["min"] = 1.2, + }, + ["sign"] = "", + }, + ["implicit.stat_4180346416"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4180346416", + ["text"] = "# to Level of all Vaal Skill Gems", + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion/Energy Shield", + }, + }, + ["implicit.stat_264042990"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_264042990", + ["text"] = "All Damage from Hits with This Weapon can Poison", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_1504905117"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1504905117", + ["text"] = "Warcry Skills have # seconds to Cooldown", + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + ["subType"] = "Armour", + }, + }, + ["implicit.stat_2162876159"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["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", + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Talisman", + }, + ["sign"] = "+", + }, + ["implicit.stat_2005503156"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2005503156", + ["text"] = "Taunts nearby Enemies on use", + }, + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + }, + ["implicit.stat_1782086450"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + }, + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + }, + ["implicit.stat_3299347043"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Boots"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + }, + ["implicit.stat_2901986750"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Boots"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 4, + ["subType"] = "Armour/Energy Shield", + }, + }, + ["implicit.stat_681332047"] = { + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + }, + ["implicit.stat_4138979329"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4138979329", + ["text"] = "# to Maximum Power Charges and Maximum Endurance Charges", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_3771516363"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + ["subType"] = "Armour/Evasion", + }, + }, + ["implicit.stat_2672805335"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + }, + ["Amulet"] = { + ["max"] = 10, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_1263158408"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_800141891"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + }, + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_2511217560"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + }, + ["sign"] = "", + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, + }, + ["implicit.stat_884586851"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + }, + ["Amulet"] = { + ["max"] = 10, + ["min"] = 6, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_2451856207"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2451856207", + ["text"] = "Restores Ward on use", + }, + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Utility", + }, + }, + ["implicit.stat_2905515354"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2905515354", + ["text"] = "You take #% of Damage from Blocked Hits", + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + ["subType"] = "Armour", + }, + }, + ["implicit.stat_744858137"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_744858137", + ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + }, + ["implicit.stat_1671376347"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "+", + }, + ["implicit.stat_450178102"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_450178102", + ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + }, + ["implicit.stat_538848803"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + }, + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Amulet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + }, + ["implicit.stat_4277795662"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Ring"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Evasion/Energy Shield", + }, + }, + ["implicit.stat_1423749435"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1423749435", + ["text"] = "#% to Damage over Time Multiplier for Bleeding", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_3143208761"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + }, + ["Amulet"] = { + ["max"] = 16, + ["min"] = 12, + ["subType"] = "Talisman", + }, + ["sign"] = "", + }, + ["implicit.stat_1431238626"] = { + ["1HSword"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HMace"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HMace"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["Claw"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HSword"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1431238626", + ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HAxe"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_3759663284"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + }, + ["implicit.stat_1443060084"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1581907402"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1581907402", + ["text"] = "#% increased Explicit Modifier magnitudes", + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + }, + ["implicit.stat_1172810729"] = { + ["1HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_1002362373"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + }, + ["implicit.stat_1754445556"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + }, + ["sign"] = "", + ["Quiver"] = { + ["max"] = 3, + ["min"] = 3, + }, + }, + ["implicit.stat_335507772"] = { + ["Gloves"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_335507772", + ["text"] = "# to maximum Fortification", + }, + ["Helmet"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["Boots"] = { + ["max"] = 3, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + }, + ["implicit.stat_202275580"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_202275580", + ["text"] = "Properties are doubled while in a Breach", + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_1181501418"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_2316658489"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2316658489", + ["text"] = "# to Armour and Evasion Rating", + }, + ["sign"] = "+", + ["Belt"] = { + ["max"] = 320, + ["min"] = 260, + }, + }, + ["implicit.stat_1915414884"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1915414884", + ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + }, + ["Helmet"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["Boots"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + }, + ["implicit.stat_3141070085"] = { + ["2HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + }, + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 10, + }, + }, + ["implicit.stat_1434716233"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + }, + ["implicit.stat_4080418644"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 25, + }, + }, + ["implicit.stat_1774370437"] = { + ["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, + }, + }, + ["implicit.stat_4139229725"] = { + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4139229725", + ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + }, + ["Helmet"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Boots"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + }, + ["implicit.stat_2974417149"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["2HMace"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["1HAxe"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + ["subType"] = "Talisman", + }, + ["1HSword"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["Boots"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["specialCaseData"] = { + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 3, + ["subType"] = "Energy Shield", + }, + ["2HWeapon"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 42, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, + }, + ["implicit.stat_3182714256"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + }, + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_983749596"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Talisman", + }, + ["Ring"] = { + ["max"] = 7, + ["min"] = 5, + }, + }, + ["implicit.stat_718638445"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + }, + ["specialCaseData"] = { + }, + ["sign"] = "-", + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_114734841"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + }, + ["sign"] = "", + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + }, + ["implicit.stat_3032590688"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + }, + ["Quiver"] = { + ["max"] = 21, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Ring"] = { ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["min"] = 2.5, + }, + }, + ["implicit.stat_624954515"] = { + ["2HMace"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 40, + }, + }, + ["implicit.stat_387439868"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + }, + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + }, + ["implicit.stat_2517001139"] = { + ["2HMace"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HMace"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + }, + ["1HAxe"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 30, + }, + }, + ["implicit.stat_3574189159"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3574189159", + ["text"] = "Elemental Overload", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + }, + ["implicit.stat_587431675"] = { + ["2HMace"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["1HMace"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Claw"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + }, + ["1HAxe"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + ["subType"] = "Talisman", + }, + ["1HSword"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HSword"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["2HAxe"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 30, + ["subType"] = "Rune", + }, + }, + ["implicit.stat_1124980805"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1124980805", + ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", }, ["Helmet"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + ["Boots"] = { + ["max"] = 40, + ["min"] = 30, + ["subType"] = "Energy Shield", + }, + }, + ["implicit.stat_261342933"] = { + ["specialCaseData"] = { + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_261342933", + ["text"] = "Secrets of Suffering", + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 1, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, }, - ["implicit.stat_821021828"] = { + ["implicit.stat_1589917703"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 12, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + }, + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Energy Shield", + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Energy Shield", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 3, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 5, + ["subType"] = "Energy Shield", }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 3, + ["max"] = 30, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, + ["subType"] = "Energy Shield", }, }, - ["implicit.stat_3261801346"] = { + ["implicit.stat_1379411836"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", }, - ["Quiver"] = { - ["max"] = 40, - ["min"] = 30, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["sign"] = "+", ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - }, - ["implicit.stat_532463031"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_532463031", - ["text"] = "Implicit Modifiers Cannot Be Changed", - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 16, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, }, }, - ["implicit.stat_3375859421"] = { + ["implicit.stat_2483795307"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3375859421", - ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", }, ["Amulet"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, ["subType"] = "Talisman", }, ["sign"] = "", }, - ["implicit.stat_321077055"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - }, - ["specialCaseData"] = { + ["implicit.stat_3556824919"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["2HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["sign"] = "+", + ["Dagger"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - }, - ["implicit.stat_1189760108"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1189760108", - ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["Amulet"] = { + ["1HAxe"] = { ["max"] = 50, - ["min"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, ["subType"] = "Talisman", }, - ["sign"] = "", - }, - ["implicit.stat_2300185227"] = { - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["Wand"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, + ["Staff"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HSword"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["sign"] = "+", - }, - ["implicit.stat_3311869501"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3311869501", - ["text"] = "Creates Chilled Ground on Use", + ["2HAxe"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - }, - ["implicit.stat_2522672898"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2522672898", - ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["Amulet"] = { + ["Bow"] = { ["max"] = 50, - ["min"] = 50, - ["subType"] = "Talisman", + ["min"] = 15, + ["subType"] = "Thrusting", }, - ["sign"] = "", }, - ["implicit.stat_1633778432"] = { + ["implicit.stat_3917489142"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1633778432", - ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune", + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["2HWeapon"] = { + ["Belt"] = { ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune", + ["min"] = 20, }, }, - ["implicit.stat_2843214518"] = { - ["specialCaseData"] = { - }, + ["implicit.stat_3372524247"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + }, + ["specialCaseData"] = { }, + ["sign"] = "+", ["Amulet"] = { ["max"] = 30, ["min"] = 20, - ["subType"] = "Talisman", }, - ["sign"] = "", + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, }, - ["implicit.stat_2154246560"] = { - ["specialCaseData"] = { + ["implicit.stat_967627487"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 25, - ["subType"] = "Talisman", + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Armour/Energy Shield", + }, }, - ["implicit.stat_1389153006"] = { + ["implicit.stat_736967255"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 31, + ["min"] = 19, ["subType"] = "Talisman", }, ["Ring"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 23, + ["min"] = 17, }, }, - ["implicit.stat_2039822488"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", - }, - ["specialCaseData"] = { + ["implicit.stat_1523888729"] = { + ["1HSword"] = { + ["max"] = 20, + ["min"] = 10, }, - ["sign"] = "+", - ["1HWeapon"] = { + ["Wand"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 10, }, - ["2HWeapon"] = { + ["2HMace"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_640052854"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_640052854", - ["text"] = "Grants # Mana per Enemy Hit", + ["Staff"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 6, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 6, + ["Claw"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["implicit.stat_846313030"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["2HSword"] = { + ["max"] = 20, + ["min"] = 10, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_846313030", - ["text"] = "You are Crushed", + ["id"] = "implicit.stat_1523888729", + ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { }, }, - ["implicit.stat_3680664274"] = { + ["implicit.stat_4279053153"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["id"] = "implicit.stat_4279053153", + ["text"] = "Right ring slot: #% increased Effect of Curses on you", }, - ["sign"] = "+", - ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - ["subType"] = "Evasion/Energy Shield", + ["Ring"] = { + ["max"] = 30, + ["min"] = 30, }, + ["sign"] = "", }, - ["implicit.stat_2923486259"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["implicit.stat_2763429652"] = { + ["1HSword"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Boots"] = { - ["max"] = 17, - ["min"] = 13, - ["subType"] = "Evasion/Energy Shield", + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, }, - ["sign"] = "+", - ["Ring"] = { - ["max"] = 23, - ["min"] = 17, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["Dagger"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["implicit.stat_2101383955"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["implicit.stat_2231156303"] = { ["specialCaseData"] = { }, + }, + ["implicit.stat_4077843608"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - }, - ["implicit.stat_1826802197"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - }, ["Amulet"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, ["subType"] = "Talisman", }, - ["sign"] = "", + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, }, - ["implicit.stat_3593843976"] = { + }, + ["Eater"] = { + ["5467_ElusiveEffectUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2413932980", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1.6, + ["Boots"] = { + ["min"] = 14, + ["max"] = 23, }, }, - ["implicit.stat_2457848738"] = { + ["3059_PurityOfElementsEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2457848738", - ["text"] = "Right ring slot: #% increased Duration of Ailments on You", + ["id"] = "implicit.stat_221690080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 30, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, ["sign"] = "", }, - ["implicit.stat_836936635"] = { + ["1694_PhysicalDamageConvertToChaosImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", }, - ["Amulet"] = { - ["max"] = 2, - ["min"] = 1.2, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 35, }, ["sign"] = "", }, - ["implicit.stat_4180346416"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", - }, + ["1287_GlobalEvasionRatingPercentUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4180346416", - ["text"] = "# to Level of all Vaal Skill Gems", - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["id"] = "implicit.stat_3394288644", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 25, + ["max"] = 34, }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion/Energy Shield", + ["Chest"] = { + ["min"] = 25, + ["max"] = 34, }, }, - ["implicit.stat_264042990"] = { + ["1577_AvoidElementalStatusAilmentsPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_264042990", - ["text"] = "All Damage from Hits with This Weapon can Poison", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "implicit.stat_4241033239", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["Boots"] = { + ["min"] = 39, + ["max"] = 50, }, }, - ["implicit.stat_1504905117"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["2874_PoisonOnHitUniquePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1504905117", - ["text"] = "Warcry Skills have # seconds to Cooldown", - }, - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - ["subType"] = "Armour", + ["id"] = "implicit.stat_2433754249", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", }, - }, - ["implicit.stat_2162876159"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + ["min"] = 20, + ["max"] = 40, }, + ["sign"] = "", + }, + ["906_SpellBlockPercentageUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + ["id"] = "implicit.stat_1358320252", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 12, }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", + ["Chest"] = { + ["min"] = 8, + ["max"] = 12, }, }, - ["implicit.stat_1652515349"] = { + ["8166_SeismicCryExertedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["id"] = "implicit.stat_3252913608", + ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Talisman", + ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 35, }, - ["sign"] = "+", }, - ["implicit.stat_2005503156"] = { + ["7984_PrideAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2005503156", - ["text"] = "Taunts nearby Enemies on use", + ["id"] = "implicit.stat_2163876658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + }, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - ["implicit.stat_1782086450"] = { + ["1315_LifeRecoveryRateUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "implicit.stat_1481249164", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", }, - ["Amulet"] = { - ["max"] = 15, + ["Chest"] = { ["min"] = 10, + ["max"] = 14, }, ["sign"] = "", }, - ["implicit.stat_3299347043"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["1691_ConvertPhysicalToLightningPinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", - }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["id"] = "implicit.stat_3718361973", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage", }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 25, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 65, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["sign"] = "", + }, + ["1412_ColdDamageLifeLeechPinnaclePresence"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 40, - ["min"] = 10, - ["subType"] = "Armour", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_339123312", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life", }, - }, - ["implicit.stat_2901986750"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", + ["min"] = 0.8, + ["max"] = 1.1, }, + ["sign"] = "", + }, + ["2975_IncreasedStunThresholdUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["max"] = 25, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", - }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 8, + ["id"] = "implicit.stat_266654028", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", + ["sign"] = "", + ["Boots"] = { + ["min"] = 27, + ["max"] = 41, }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", + }, + ["2161_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, + ["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", }, - ["Shield"] = { + ["Helmet"] = { + ["min"] = 11, ["max"] = 12, - ["min"] = 4, - ["subType"] = "Armour/Energy Shield", }, + ["sign"] = "", }, - ["implicit.stat_681332047"] = { + ["1298_GlobalEnergyShieldPercentPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - }, - ["Quiver"] = { - ["max"] = 10, - ["min"] = 8, + ["id"] = "implicit.stat_1917716710", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["Amulet"] = { + ["min"] = 22, + ["max"] = 29, }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, + ["Chest"] = { + ["min"] = 22, + ["max"] = 29, }, }, - ["implicit.stat_4138979329"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4138979329", - ["text"] = "# to Maximum Power Charges and Maximum Endurance Charges", - }, + ["4653_BlindEffect"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", + ["Gloves"] = { + ["min"] = 6, + ["max"] = 17, }, + ["sign"] = "", }, - ["implicit.stat_3771516363"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["1629_SkillEffectDurationPinnaclePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", }, - ["sign"] = "-", ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - ["subType"] = "Talisman", - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - ["subType"] = "Armour/Evasion", + ["min"] = 23, + ["max"] = 30, }, + ["sign"] = "", }, - ["implicit.stat_2672805335"] = { + ["2160_PhysicalDamageTakenAsFireUberUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "implicit.stat_1283684786", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage", }, - ["Amulet"] = { + ["Helmet"] = { + ["min"] = 8, ["max"] = 10, - ["min"] = 6, - ["subType"] = "Talisman", }, ["sign"] = "", }, - ["implicit.stat_1263158408"] = { + ["4674_BodyDamageTakenPerStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1263158408", - ["text"] = "Elemental Equilibrium", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "implicit.stat_1871491972", + ["text"] = "1% less Damage Taken per # Strength", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["min"] = 180, + ["max"] = 230, }, + ["sign"] = "", }, - ["implicit.stat_800141891"] = { + ["3058_AngerAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_800141891", - ["text"] = "#% chance to Freeze, Shock and Ignite", + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", }, - ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - ["subType"] = "Talisman", + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["implicit.stat_2511217560"] = { + ["1629_SkillEffectDurationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", }, - ["sign"] = "", - ["Belt"] = { - ["max"] = 25, + ["Amulet"] = { ["min"] = 15, + ["max"] = 24, }, + ["sign"] = "", }, - ["implicit.stat_884586851"] = { + ["5236_DamagePer100DEXPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "implicit.stat_1870591253", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", }, - ["Amulet"] = { - ["max"] = 10, - ["min"] = 6, - ["subType"] = "Talisman", + ["Gloves"] = { + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", }, - ["implicit.stat_2451856207"] = { + ["1323_ManaRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2451856207", - ["text"] = "Restores Ward on use", + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + }, + ["Chest"] = { + ["min"] = 7, + ["max"] = 12, }, + ["sign"] = "", }, - ["implicit.stat_2905515354"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Armour", + ["1666_PhysicalAddedAsLightningPinnaclePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2905515354", - ["text"] = "You take #% of Damage from Blocked Hits", + ["id"] = "implicit.stat_632297605", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage", }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Armour", + ["sign"] = "", + ["Boots"] = { + ["min"] = 9, + ["max"] = 10, + }, + }, + ["943_AttackDamagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3133935886", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Armour", + ["Amulet"] = { + ["min"] = 44, + ["max"] = 53, }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - ["subType"] = "Armour", + ["Helmet"] = { + ["min"] = 44, + ["max"] = 53, }, }, - ["implicit.stat_744858137"] = { + ["6304_LightningExposureEffectOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_744858137", - ["text"] = "Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage", + ["id"] = "implicit.stat_981753179", + ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 25, + ["Gloves"] = { + ["min"] = 11, + ["max"] = 16, }, - ["sign"] = "", + ["sign"] = "-", }, - ["implicit.stat_1671376347"] = { + ["1608_ReducedFreezeDurationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "implicit.stat_3985862221", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["min"] = 45, + ["max"] = 61, }, - ["sign"] = "+", + ["sign"] = "", }, - ["implicit.stat_450178102"] = { + ["3959_PlayerReflectedDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_450178102", - ["text"] = "Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage", + ["id"] = "implicit.stat_3178090061", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken", }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 25, + ["Chest"] = { + ["min"] = 85, + ["max"] = 100, }, ["sign"] = "", }, - ["implicit.stat_538848803"] = { + ["2688_ColdResistancePenetrationUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["id"] = "implicit.stat_1477049675", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + }, + ["specialCaseData"] = { }, + ["sign"] = "", ["Amulet"] = { - ["max"] = 24, - ["min"] = 16, + ["min"] = 6, + ["max"] = 8, + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, + }, + ["5640_FireExposureEffectOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["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", }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["Gloves"] = { + ["min"] = 19, + ["max"] = 22, }, + ["sign"] = "-", }, - ["implicit.stat_4277795662"] = { + ["5828_GeneralsCryCooldownRecoveryUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["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, }, + }, + ["2164_PhysicalDamageTakenAsChaosUberUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, + ["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", + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["sign"] = "", + }, + ["1313_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1123587207", + ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", }, + ["sign"] = "", ["Boots"] = { + ["min"] = 0.3, + ["max"] = 0.4, + }, + }, + ["1305_EnergyShieldRecoveryRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + }, + ["Chest"] = { + ["min"] = 7, ["max"] = 12, - ["min"] = 8, - ["subType"] = "Evasion/Energy Shield", }, + ["sign"] = "", }, - ["implicit.stat_1423749435"] = { + ["6180_IntimidatingCryCooldownRecoveryUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1423749435", - ["text"] = "#% to Damage over Time Multiplier for Bleeding", + ["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, + }, + }, + ["4408_AttackImpaleChanceUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2391907787", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks", }, - ["2HWeapon"] = { - ["max"] = 20, + ["Gloves"] = { ["min"] = 20, + ["max"] = 40, }, + ["sign"] = "", }, - ["implicit.stat_3143208761"] = { + ["1355_AllResistancesUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["id"] = "implicit.stat_2358153166", + ["text"] = "While a Unique Enemy is in your Presence, #% to all Elemental Resistances", }, - ["Amulet"] = { - ["max"] = 16, - ["min"] = 12, - ["subType"] = "Talisman", + ["Chest"] = { + ["min"] = 13, + ["max"] = 22, }, - ["sign"] = "", + ["sign"] = "+", }, - ["implicit.stat_1431238626"] = { + ["1302_EnergyShieldRegeneration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1431238626", - ["text"] = "#% of Physical Damage from Hits with this Weapon is Converted to a random Element", + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 100, + ["Amulet"] = { + ["min"] = 21, + ["max"] = 26, }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 100, + ["Helmet"] = { + ["min"] = 21, + ["max"] = 26, }, }, - ["implicit.stat_3759663284"] = { - ["specialCaseData"] = { - }, + ["943_AttackDamageUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "implicit.stat_4061200499", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["Amulet"] = { + ["min"] = 29, + ["max"] = 41, + }, + ["Helmet"] = { + ["min"] = 29, + ["max"] = 41, }, }, - ["implicit.stat_1443060084"] = { + ["1577_AvoidElementalStatusAilments"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, }, }, - ["implicit.stat_1581907402"] = { + ["3061_PurityOfIceEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1581907402", - ["text"] = "#% increased Explicit Modifier magnitudes", + ["id"] = "implicit.stat_3499126604", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect", }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 25, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["implicit.stat_1172810729"] = { + ["3060_PurityOfFireEffect"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", + ["id"] = "implicit.stat_2539726203", + ["text"] = "Purity of Fire has #% increased Aura Effect", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, }, - ["implicit.stat_1002362373"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", + ["1355_AllResistances"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", }, ["Chest"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", + ["min"] = 5, + ["max"] = 16, }, + ["sign"] = "+", + }, + ["1664_PhysicalAddedAsFire"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", }, + ["sign"] = "", ["Boots"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", + ["min"] = 4, + ["max"] = 6, }, }, - ["implicit.stat_1754445556"] = { + ["1753_ChanceToIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", }, - ["sign"] = "", - ["Quiver"] = { - ["max"] = 3, - ["min"] = 3, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 30, }, + ["sign"] = "", }, - ["implicit.stat_335507772"] = { - ["Gloves"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["4278_ArmourFromHelmetGloves"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_335507772", - ["text"] = "# to maximum Fortification", + ["id"] = "implicit.stat_791154540", + ["text"] = "#% increased Armour from Equipped Helmet and Gloves", }, - ["Chest"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["sign"] = "", + ["Boots"] = { + ["min"] = 33, + ["max"] = 50, }, + }, + ["1323_ManaRecoveryRateUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1217759839", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", }, - ["Boots"] = { - ["max"] = 3, - ["min"] = 2, - ["subType"] = "Armour/Evasion", + ["Chest"] = { + ["min"] = 10, + ["max"] = 14, }, + ["sign"] = "", }, - ["implicit.stat_202275580"] = { + ["4462_GlobalCooldownRecoveryPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_202275580", - ["text"] = "Properties are doubled while in a Breach", + ["id"] = "implicit.stat_668321613", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["Boots"] = { + ["min"] = 13, + ["max"] = 16, }, }, - ["implicit.stat_1181501418"] = { + ["1302_EnergyShieldRegenerationUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "implicit.stat_3806837783", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 25, + ["max"] = 29, }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 29, }, }, - ["implicit.stat_2316658489"] = { + ["4673_BodyDamageTakenPerIntelligencePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2316658489", - ["text"] = "# to Armour and Evasion Rating", + ["id"] = "implicit.stat_3801851872", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", }, - ["sign"] = "+", - ["Belt"] = { - ["max"] = 320, - ["min"] = 260, + ["Chest"] = { + ["min"] = 140, + ["max"] = 170, }, + ["sign"] = "", }, - ["implicit.stat_1915414884"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["3066_HatredAuraEffect"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1915414884", - ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", }, ["Chest"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["min"] = 19, + ["max"] = 36, }, + ["sign"] = "", + }, + ["5610_FasterPoisonDamage"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", }, + ["sign"] = "", ["Boots"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", + ["min"] = 5, + ["max"] = 10, }, }, - ["implicit.stat_3141070085"] = { + ["1412_ColdDamageLifeLeechHundredThousand"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.7, }, + ["sign"] = "", + }, + ["2277_FasterIgniteDamageUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2349328837", + ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, + ["sign"] = "", + ["Boots"] = { + ["min"] = 9, + ["max"] = 13, }, }, - ["implicit.stat_1434716233"] = { + ["887_BlockPercent"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Exert # additional Attack", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 10, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, }, - ["implicit.stat_4080418644"] = { + ["1609_ReducedIgniteDurationOnSelf"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + }, + ["Helmet"] = { + ["min"] = 33, + ["max"] = 50, + }, + ["sign"] = "", + }, + ["2687_FireResistancePenetrationPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1175129684", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["min"] = 9, + ["max"] = 10, }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 25, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 10, }, }, - ["implicit.stat_1774370437"] = { + ["1524_AdditionalPierceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1774370437", - ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", + ["id"] = "implicit.stat_3924473787", + ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", }, - ["sign"] = "", - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["Gloves"] = { + ["min"] = 2, + ["max"] = 3, }, + ["sign"] = "", }, - ["implicit.stat_4139229725"] = { - ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + ["3062_PurityOfLightningEffect"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4139229725", - ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", + ["id"] = "implicit.stat_45589825", + ["text"] = "Purity of Lightning has #% increased Aura Effect", }, ["Chest"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, - ["specialCaseData"] = { + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", - ["Helmet"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + }, + ["5236_DamagePer100DEX"] = { + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", }, - }, - ["implicit.stat_2974417149"] = { ["Gloves"] = { - ["max"] = 16, ["min"] = 3, - ["subType"] = "Energy Shield", - }, - ["specialCaseData"] = { + ["max"] = 4, }, ["sign"] = "", - ["Boots"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", + }, + ["1315_LifeRecoveryRate"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - ["subType"] = "Talisman", + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", }, ["Chest"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", + ["min"] = 7, + ["max"] = 12, }, - ["2HWeapon"] = { - ["max"] = 42, - ["min"] = 8, + ["sign"] = "", + }, + ["4673_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 42, - ["min"] = 8, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_553122931", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["Chest"] = { + ["min"] = 160, + ["max"] = 200, }, + ["sign"] = "", }, - ["implicit.stat_3182714256"] = { + ["5469_ExertedAttackDamage"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", }, + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["sign"] = "", + }, + ["5238_DamagePer100STRUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "-", - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4224921626", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Gloves"] = { + ["min"] = 4, + ["max"] = 5, }, + ["sign"] = "", }, - ["implicit.stat_983749596"] = { + ["8337_SpellsHinderOnHitChancePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_604515066", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 85, + ["max"] = 95, }, ["sign"] = "", - ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Talisman", + }, + ["5828_GeneralsCryCooldownRecoveryPinnaclePresence"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 7, - ["min"] = 5, + ["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", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 39, + ["max"] = 50, }, }, - ["implicit.stat_718638445"] = { + ["2689_LightningResistancePenetrationUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", + ["id"] = "implicit.stat_1598254831", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", }, ["specialCaseData"] = { }, - ["sign"] = "-", + ["sign"] = "", ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["min"] = 6, + ["max"] = 8, }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, }, - ["implicit.stat_114734841"] = { + ["1355_AllResistancesPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", + ["id"] = "implicit.stat_2251516251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all Elemental Resistances", }, - ["sign"] = "", - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["Chest"] = { + ["min"] = 21, + ["max"] = 28, }, + ["sign"] = "+", }, - ["implicit.stat_3032590688"] = { + ["8166_SeismicCryExertedDamageUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - }, - ["Quiver"] = { - ["max"] = 21, - ["min"] = 2.5, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_1505297139", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", }, ["sign"] = "", - ["Ring"] = { - ["max"] = 9, - ["min"] = 2.5, + ["Boots"] = { + ["min"] = 29, + ["max"] = 41, }, }, - ["implicit.stat_624954515"] = { + ["1419_ChaosDamageLifeLeechUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "implicit.stat_1172401338", + ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.9, }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, }, - ["implicit.stat_387439868"] = { + ["1609_ReducedIgniteDurationOnSelfPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["id"] = "implicit.stat_3042217102", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you", }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["min"] = 57, + ["max"] = 70, }, + ["sign"] = "", + }, + ["4127_FlatAccuracyPerFrenzyChargeUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_475859964", + ["text"] = "While a Unique Enemy is in your Presence, # to Accuracy Rating per Frenzy Charge", }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Gloves"] = { + ["min"] = 52, + ["max"] = 66, }, + ["sign"] = "+", }, - ["implicit.stat_2517001139"] = { + ["6180_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["id"] = "implicit.stat_3945581778", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 30, + ["sign"] = "", + ["Boots"] = { + ["min"] = 39, + ["max"] = 50, }, + }, + ["1583_ChanceToAvoidPoisonUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 30, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3553907672", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["sign"] = "", + ["Boots"] = { + ["min"] = 45, + ["max"] = 61, }, }, - ["implicit.stat_3574189159"] = { + ["1667_PhysicalDamageAddedAsChaosPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3574189159", - ["text"] = "Elemental Overload", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "implicit.stat_3490650294", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["Boots"] = { + ["min"] = 9, + ["max"] = 10, }, }, - ["implicit.stat_587431675"] = { + ["5567_EvasionRatingFromHelmetBoots"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "implicit.stat_623823763", + ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", }, - ["Amulet"] = { + ["Gloves"] = { + ["min"] = 33, ["max"] = 50, - ["min"] = 40, - ["subType"] = "Talisman", - }, - ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - ["subType"] = "Rune", - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 30, - ["subType"] = "Rune", - }, }, - ["implicit.stat_1124980805"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["5321_MalevolenceAuraEffectPinnaclePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1124980805", - ["text"] = "#% increased Cooldown Recovery Rate of Movement Skills", + ["id"] = "implicit.stat_1033279468", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", }, ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", + }, + ["4507_BattlemagesCryWarcryEffectPinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1455812442", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", }, + ["sign"] = "", ["Boots"] = { - ["max"] = 40, - ["min"] = 30, - ["subType"] = "Energy Shield", + ["min"] = 22, + ["max"] = 29, }, }, - ["implicit.stat_261342933"] = { + ["3063_WrathAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_261342933", - ["text"] = "Secrets of Suffering", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["id"] = "implicit.stat_1850144024", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - ["implicit.stat_1589917703"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Energy Shield", - }, + ["4070_TravelSkillCooldownRecoveryPinnaclePresence"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_850668052", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + }, ["sign"] = "", ["Boots"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["min"] = 39, + ["max"] = 50, + }, + }, + ["6890_GlobalMaimOnHitPinnaclePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["id"] = "implicit.stat_4065516297", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["Gloves"] = { + ["min"] = 85, + ["max"] = 95, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 12, + ["sign"] = "", + }, + ["1577_AvoidElementalStatusAilmentsUniquePresence"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 12, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3264420229", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - ["subType"] = "Energy Shield", + ["sign"] = "", + ["Boots"] = { + ["min"] = 27, + ["max"] = 41, }, }, - ["implicit.stat_1379411836"] = { + ["3064_GraceAuraEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "implicit.stat_81526858", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", + }, + ["1760_ChanceToShockPinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["max"] = 16, - ["min"] = 10, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2459490852", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", }, ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, + ["min"] = 35, + ["max"] = 50, }, + ["sign"] = "", }, - ["implicit.stat_2483795307"] = { + ["1313_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { ["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"] = "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, + }, }, - ["implicit.stat_3556824919"] = { + ["1403_PhysicalDamageLifeLeechPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["id"] = "implicit.stat_2500914030", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life", }, - ["Amulet"] = { - ["max"] = 36, - ["min"] = 24, - ["subType"] = "Talisman", + ["Gloves"] = { + ["min"] = 0.8, + ["max"] = 1.1, }, + ["sign"] = "", + }, + ["3067_DeterminationAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 15, - ["subType"] = "Thrusting", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2366356855", + ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 15, - ["subType"] = "Thrusting", + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, + ["sign"] = "", }, - ["implicit.stat_3917489142"] = { + ["1279_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, + ["id"] = "implicit.stat_1980216452", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, + ["min"] = 25, + ["max"] = 34, }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["Chest"] = { + ["min"] = 25, + ["max"] = 34, }, }, - ["implicit.stat_3372524247"] = { + ["5237_DamagePer100INTUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "implicit.stat_1894390763", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", }, + ["Gloves"] = { + ["min"] = 4, + ["max"] = 5, + }, + ["sign"] = "", + }, + ["1524_AdditionalPiercePinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4045839821", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["Gloves"] = { + ["min"] = 3, + ["max"] = 4, }, + ["sign"] = "", }, - ["implicit.stat_967627487"] = { - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["6180_IntimidatingCryCooldownRecovery"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["id"] = "implicit.stat_1134560807", + ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, }, + }, + ["4223_AncestralCryExertedDamagePinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["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", }, + ["sign"] = "", ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Armour/Energy Shield", + ["min"] = 38, + ["max"] = 47, }, }, - ["implicit.stat_736967255"] = { + ["5237_DamagePer100INT"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 3, + ["max"] = 4, }, ["sign"] = "", - ["Amulet"] = { - ["max"] = 31, - ["min"] = 19, - ["subType"] = "Talisman", - }, - ["Ring"] = { - ["max"] = 23, - ["min"] = 17, - }, }, - ["implicit.stat_1523888729"] = { + ["2980_WarcrySpeed"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1523888729", - ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["Boots"] = { + ["min"] = 15, + ["max"] = 26, }, }, - ["implicit.stat_4279053153"] = { + ["1687_ConvertPhysicalToFirePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4279053153", - ["text"] = "Right ring slot: #% increased Effect of Curses on you", + ["id"] = "implicit.stat_3764409984", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 30, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 65, }, ["sign"] = "", }, - ["implicit.stat_2763429652"] = { + ["1665_PhysicalAddedAsCold"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", }, ["sign"] = "", - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["implicit.stat_4077843608"] = { + ["1709_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", + ["id"] = "implicit.stat_1918872160", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge", }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 7, }, + ["sign"] = "", + }, + ["3066_HatredAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Talisman", + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1253537227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - }, - ["Eater"] = { - ["1649_PhysicalAddedAsFireUniquePresence"] = { + ["2164_PhysicalDamageTakenAsChaosUber"] = { ["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", + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", }, - ["sign"] = "", - ["Boots"] = { + ["Helmet"] = { ["min"] = 6, ["max"] = 8, }, + ["sign"] = "", }, - ["2965_WarcrySpeed"] = { + ["1403_PhysicalDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "implicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 26, + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.7, }, + ["sign"] = "", }, - ["3048_WrathAuraEffectPinnaclePresence"] = { + ["3959_PlayerReflectedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1850144024", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect", + ["id"] = "implicit.stat_1941017392", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken", }, ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 65, + ["max"] = 85, }, ["sign"] = "", }, - ["4639_BlindEffectUniquePresence"] = { + ["1416_LightningDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_886650454", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", }, ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + ["min"] = 0.2, + ["max"] = 0.7, }, ["sign"] = "", }, - ["3789_RallyingCryWarcryEffectPinnaclePresence"] = { + ["1664_PhysicalAddedAsFireUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2063107864", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", + ["id"] = "implicit.stat_3549954477", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", }, ["sign"] = "", ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["min"] = 6, + ["max"] = 8, }, }, - ["5508_EnemyLifeRegenerationRate"] = { + ["1760_ChanceToShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3903907406", - ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", }, ["Helmet"] = { - ["min"] = 65, - ["max"] = 82, + ["min"] = 5, + ["max"] = 30, }, ["sign"] = "", }, - ["5223_DamagePer100STR"] = { + ["5238_DamagePer100STR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -38647,55 +57151,87 @@ return { }, ["sign"] = "", }, - ["1306_ManaRegenerationUniquePresence"] = { + ["1419_ChaosDamageLifeLeechPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_760444887", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", + ["id"] = "implicit.stat_10259064", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", }, - ["Helmet"] = { - ["min"] = 34, - ["max"] = 48, + ["Gloves"] = { + ["min"] = 0.8, + ["max"] = 1.1, }, ["sign"] = "", }, - ["3053_DisciplineAuraEffectUniquePresence"] = { + ["2162_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_334238649", - ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", + ["id"] = "implicit.stat_3947691353", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage", + }, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 12, + }, + ["sign"] = "", + }, + ["906_SpellBlockPercentagePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2996280658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 11, + ["max"] = 14, }, ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["min"] = 11, + ["max"] = 14, + }, + }, + ["3906_ChanceToAvoidBleedingPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2610114836", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, + }, }, - ["5029_ColdExposureEffectOnHitPinnaclePresence"] = { + ["1524_AdditionalPierce"] = { ["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", + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", }, ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "-", + ["sign"] = "", }, - ["3049_GraceAuraEffectPinnaclePresence"] = { + ["3061_PurityOfIceEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_81526858", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect", + ["id"] = "implicit.stat_3786274521", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 49, @@ -38703,81 +57239,123 @@ return { }, ["sign"] = "", }, - ["5594_FasterBleedDamageUniquePresence"] = { + ["1419_ChaosDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_738837643", - ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", + ["id"] = "implicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.7, }, + ["sign"] = "", }, - ["7821_IncreasedAilmentEffectOnEnemies"] = { + ["1950_ManaReservationEfficiency"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["id"] = "implicit.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["min"] = 7, + ["max"] = 12, }, ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["min"] = 7, + ["max"] = 12, }, }, - ["1651_PhysicalAddedAsLightning"] = { + ["1174_IncreasedAccuracyPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + }, + ["Gloves"] = { + ["min"] = 9, + ["max"] = 20, + }, + ["sign"] = "", + }, + ["5610_FasterPoisonDamageUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3828039449", + ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", }, ["sign"] = "", ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 9, + ["max"] = 13, }, }, - ["7981_PrideAuraEffect"] = { + ["6158_InfernalCryWarcryAreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", + ["id"] = "implicit.stat_631097842", + ["text"] = "Infernal Cry has #% increased Area of Effect", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, + }, + }, + ["3068_DisciplineAuraEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_334238649", + ["text"] = "While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["2960_IncreasedStunThresholdPinnaclePresence"] = { + ["4408_AttackImpaleChancePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1513279759", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold", + ["id"] = "implicit.stat_2838459808", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, + ["Gloves"] = { + ["min"] = 35, ["max"] = 50, }, + ["sign"] = "", + }, + ["1407_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, + }, + ["sign"] = "", }, - ["1272_GlobalEvasionRatingPercentPinnaclePresence"] = { + ["1287_GlobalEvasionRatingPercentPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", ["id"] = "implicit.stat_2386062386", @@ -38795,35 +57373,49 @@ return { ["max"] = 40, }, }, - ["1397_ColdDamageLifeLeechUniquePresence"] = { + ["1608_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3357881628", - ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + }, + ["Helmet"] = { + ["min"] = 33, + ["max"] = 50, + }, + ["sign"] = "", + }, + ["6890_GlobalMaimOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", }, ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["min"] = 15, + ["max"] = 40, }, ["sign"] = "", }, - ["3050_HasteAuraEffectUniquePresence"] = { + ["5523_EnemyLifeRegenerationRatePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1060820709", - ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", + ["id"] = "implicit.stat_3407071583", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Helmet"] = { + ["min"] = 89, + ["max"] = 100, }, ["sign"] = "", }, - ["1935_ManaReservationEfficiencyUniquePresence"] = { + ["1950_ManaReservationEfficiencyUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", ["id"] = "implicit.stat_2358903592", @@ -38841,49 +57433,85 @@ return { ["max"] = 15, }, }, - ["1290_EnergyShieldRecoveryRate"] = { - ["specialCaseData"] = { - }, + ["7824_IncreasedAilmentEffectOnEnemies"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 14, + ["max"] = 29, + }, + ["Helmet"] = { + ["min"] = 14, + ["max"] = 29, + }, }, - ["5222_DamagePer100INTPinnaclePresence"] = { + ["1403_PhysicalDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2532279515", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", + ["id"] = "implicit.stat_2443166200", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", }, ["Gloves"] = { - ["min"] = 5, - ["max"] = 6, + ["min"] = 0.5, + ["max"] = 0.9, }, ["sign"] = "", }, - ["6887_GlobalMaimOnHit"] = { + ["5523_EnemyLifeRegenerationRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", + ["id"] = "implicit.stat_3903907406", + ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["Helmet"] = { + ["min"] = 65, + ["max"] = 82, + }, + ["sign"] = "", + }, + ["2687_FireResistancePenetrationUniquePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3425675761", + ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, + }, + }, + ["2975_IncreasedStunThresholdPinnaclePresence"] = { + ["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, + }, }, - ["2145_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { + ["2160_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -38897,95 +57525,123 @@ return { }, ["sign"] = "", }, - ["4660_BodyDamageTakenPerStrength"] = { + ["2161_PhysicalDamageTakenAsColdUberUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1871491972", - ["text"] = "1% less Damage Taken per # Strength", + ["id"] = "implicit.stat_848890513", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage", }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 10, }, ["sign"] = "", }, - ["872_BlockPercentUniquePresence"] = { + ["1665_PhysicalAddedAsColdUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_725501141", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", + ["id"] = "implicit.stat_3171354842", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 6, + ["max"] = 8, }, + }, + ["1407_FireDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3430693940", + ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.9, }, + ["sign"] = "", }, - ["3048_WrathAuraEffectUniquePresence"] = { + ["1666_PhysicalAddedAsLightningUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_399528178", - ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["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, + }, }, - ["3049_GraceAuraEffectUniquePresence"] = { + ["1416_LightningDamageLifeLeechPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3303144948", - ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", + ["id"] = "implicit.stat_1896842319", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Gloves"] = { + ["min"] = 0.8, + ["max"] = 1.1, }, ["sign"] = "", }, - ["1745_ChanceToShockUniquePresence"] = { + ["5527_EnergyShieldFromGlovesBootsUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2621869142", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", + ["id"] = "implicit.stat_4288334466", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", }, ["Helmet"] = { - ["min"] = 20, - ["max"] = 40, + ["min"] = 45, + ["max"] = 61, + }, + ["sign"] = "", + }, + ["1314_LifeRegenerationRatePinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_498250787", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 18, + }, + ["Boots"] = { + ["min"] = 15, + ["max"] = 18, + }, }, - ["1401_LightningDamageLifeLeechPinnaclePresence"] = { + ["2991_ArcaneSurgeEffectUniquePresence"] = { ["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"] = "implicit.stat_3163099942", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["Helmet"] = { + ["min"] = 14, + ["max"] = 23, }, ["sign"] = "", }, - ["5512_EnergyShieldFromGlovesBootsPinnaclePresence"] = { + ["5527_EnergyShieldFromGlovesBootsPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -38999,13 +57655,41 @@ return { }, ["sign"] = "", }, - ["6302_LightningExposureEffectOnHit"] = { + ["4278_ArmourFromHelmetGlovesPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_981753179", - ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", + ["id"] = "implicit.stat_3330140563", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, + }, + }, + ["1305_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, + }, + ["sign"] = "", + }, + ["5640_FireExposureEffectOnHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1309840354", + ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", }, ["Gloves"] = { ["min"] = 11, @@ -39013,69 +57697,97 @@ return { }, ["sign"] = "-", }, - ["1674_ConvertPhysicalToColdPinnaclePresence"] = { + ["3058_AngerAuraEffectUniquePresence"] = { ["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"] = "implicit.stat_778803098", + ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1594_ReducedIgniteDurationOnSelfPinnaclePresence"] = { + ["1665_PhysicalAddedAsColdPinnaclePresence"] = { ["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"] = "implicit.stat_1425454108", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 9, + ["max"] = 10, + }, }, - ["6180_IntimidatingCryCooldownRecoveryUniquePresence"] = { + ["6158_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3381588096", - ["text"] = "While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_1774377226", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect", }, ["sign"] = "", ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["min"] = 39, + ["max"] = 50, + }, + }, + ["2311_MarkEffectPinnaclePresence"] = { + ["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, + }, + ["sign"] = "", + }, + ["2162_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["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", + }, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 10, }, + ["sign"] = "", }, - ["1308_ManaRecoveryRatePinnaclePresence"] = { + ["3061_PurityOfIceEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4117139221", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", + ["id"] = "implicit.stat_1944316218", + ["text"] = "Purity of Ice has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 13, - ["max"] = 16, + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["3047_PurityOfLightningEffectUniquePresence"] = { + ["7984_PrideAuraEffectUniquePresence"] = { ["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"] = "implicit.stat_4039774101", + ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 34, @@ -39083,85 +57795,109 @@ return { }, ["sign"] = "", }, - ["1287_EnergyShieldRegeneration"] = { + ["968_SpellDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 21, - ["max"] = 26, + ["min"] = 14, + ["max"] = 29, }, ["Helmet"] = { - ["min"] = 21, - ["max"] = 26, + ["min"] = 14, + ["max"] = 29, }, }, - ["1650_PhysicalAddedAsColdPinnaclePresence"] = { + ["4462_GlobalCooldownRecoveryUniquePresence"] = { ["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", + ["id"] = "implicit.stat_2491353340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", }, ["sign"] = "", ["Boots"] = { ["min"] = 9, - ["max"] = 10, + ["max"] = 13, }, }, - ["7821_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { + ["2162_PhysicalDamageTakenAsLightningUber"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1016769968", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 32, - ["max"] = 41, + }, + ["1689_ConvertPhysicalToColdUniquePresence"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 32, - ["max"] = 41, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1153825002", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage", + }, + ["Gloves"] = { + ["min"] = 30, + ["max"] = 50, }, + ["sign"] = "", }, - ["5594_FasterBleedDamagePinnaclePresence"] = { + ["1689_ConvertPhysicalToColdImplicit"] = { ["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"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + }, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 35, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + }, + ["5321_MalevolenceAuraEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + }, + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, }, + ["sign"] = "", }, - ["4264_ArmourFromHelmetGloves"] = { + ["1666_PhysicalAddedAsLightning"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_791154540", - ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", }, ["sign"] = "", ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["min"] = 4, + ["max"] = 6, }, }, - ["2145_PhysicalDamageTakenAsFireUber"] = { + ["2160_PhysicalDamageTakenAsFireUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -39175,13 +57911,45 @@ return { }, ["sign"] = "", }, - ["5306_MalevolenceAuraEffect"] = { + ["2161_PhysicalDamageTakenAsColdUber"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + }, + ["Helmet"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["sign"] = "", + }, + ["1314_LifeRegenerationRate"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["Boots"] = { + ["min"] = 7, + ["max"] = 12, + }, + }, + ["7984_PrideAuraEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 19, @@ -39189,13 +57957,13 @@ return { }, ["sign"] = "", }, - ["5595_FasterPoisonDamage"] = { + ["4462_GlobalCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["id"] = "implicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", }, ["sign"] = "", ["Boots"] = { @@ -39203,31 +57971,27 @@ return { ["max"] = 10, }, }, - ["1579_IncreasedAilmentDurationPinnaclePresence"] = { + ["3578_EnduringCryCooldownRecoveryUniquePresence"] = { + ["specialCaseData"] = { + }, ["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"] = "implicit.stat_2792560229", + ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 36, - }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 36, + ["Boots"] = { + ["min"] = 27, + ["max"] = 41, }, }, - ["7981_PrideAuraEffectUniquePresence"] = { + ["3065_HasteAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4039774101", - ["text"] = "While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect", + ["id"] = "implicit.stat_1060820709", + ["text"] = "While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 34, @@ -39235,13 +57999,13 @@ return { }, ["sign"] = "", }, - ["1674_ConvertPhysicalToColdUniquePresence"] = { + ["1687_ConvertPhysicalToFireUniquePresence"] = { ["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"] = "implicit.stat_380027104", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage", }, ["Gloves"] = { ["min"] = 30, @@ -39249,67 +58013,63 @@ return { }, ["sign"] = "", }, - ["2147_PhysicalDamageTakenAsLightningUber"] = { + ["6304_LightningExposureEffectOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["id"] = "implicit.stat_1762412317", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Gloves"] = { + ["min"] = 19, + ["max"] = 22, }, - ["sign"] = "", + ["sign"] = "-", }, - ["1287_EnergyShieldRegenerationUniquePresence"] = { + ["3060_PurityOfFireEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3806837783", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate", + ["id"] = "implicit.stat_2034940983", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 29, - }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 29, - }, }, - ["1672_ConvertPhysicalToFireUniquePresence"] = { + ["1583_ChanceToAvoidPoison"] = { ["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"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, - ["Gloves"] = { - ["min"] = 30, + ["sign"] = "", + ["Boots"] = { + ["min"] = 33, ["max"] = 50, }, - ["sign"] = "", }, - ["4208_AncestralCryExertedDamage"] = { + ["3906_ChanceToAvoidBleedingUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2146663823", - ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["id"] = "implicit.stat_2651293339", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", }, ["sign"] = "", ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 45, + ["max"] = 61, }, }, - ["3044_PurityOfElementsEffect"] = { + ["3059_PurityOfElementsEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -39323,613 +58083,727 @@ return { }, ["sign"] = "", }, - ["1672_ConvertPhysicalToFireImplicit"] = { + ["5609_FasterBleedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, }, - ["4493_BattlemagesCryWarcryEffectUniquePresence"] = { + ["2980_WarcrySpeedPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3173180145", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["id"] = "implicit.stat_2117066923", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", }, ["sign"] = "", ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["min"] = 27, + ["max"] = 34, }, }, - ["4055_TravelSkillCooldownRecoveryUniquePresence"] = { + ["4223_AncestralCryExertedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2986495340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", + ["id"] = "implicit.stat_3598887112", + ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage", }, ["sign"] = "", ["Boots"] = { - ["min"] = 27, + ["min"] = 29, ["max"] = 41, }, }, - ["2669_ArmourPenetrationPinnaclePresence"] = { + ["1321_ManaRegenerationPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_469487616", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Overwhelm #% Physical Damage Reduction", + ["id"] = "implicit.stat_4222133389", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", }, - ["Gloves"] = { - ["min"] = 24, - ["max"] = 31, + ["Helmet"] = { + ["min"] = 49, + ["max"] = 60, }, ["sign"] = "", }, - ["2262_FasterIgniteDamagePinnaclePresence"] = { + ["1687_ConvertPhysicalToFireImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1053495752", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster", + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 35, }, + ["sign"] = "", }, - ["4112_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { + ["4223_AncestralCryExertedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_490830332", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, # to Accuracy Rating per Frenzy Charge", + ["id"] = "implicit.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", }, - ["Gloves"] = { - ["min"] = 61, - ["max"] = 72, + ["sign"] = "", + ["Boots"] = { + ["min"] = 20, + ["max"] = 35, }, - ["sign"] = "+", }, - ["1674_ConvertPhysicalToColdImplicit"] = { + ["4674_BodyDamageTakenPerStrengthPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "implicit.stat_125264229", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["Chest"] = { + ["min"] = 140, + ["max"] = 170, }, ["sign"] = "", }, - ["2672_FireResistancePenetration"] = { + ["7824_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "implicit.stat_2950684886", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 23, + ["max"] = 35, }, ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 23, + ["max"] = 35, }, }, - ["8725_ZealotryAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1279_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2293353005", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", + ["id"] = "implicit.stat_1371764251", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 33, + ["max"] = 40, + }, + ["Chest"] = { + ["min"] = 33, + ["max"] = 40, + }, }, - ["4208_AncestralCryExertedDamageUniquePresence"] = { + ["4507_BattlemagesCryWarcryEffect"] = { ["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", + ["id"] = "implicit.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", }, ["sign"] = "", ["Boots"] = { - ["min"] = 29, - ["max"] = 41, + ["min"] = 6, + ["max"] = 17, }, }, - ["1159_IncreasedAccuracyPercentUniquePresence"] = { + ["906_SpellBlockPercentage"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, + }, + }, + ["1594_IncreasedAilmentDurationPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2423625781", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", + ["id"] = "implicit.stat_867827325", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 24, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 29, + ["max"] = 36, + }, + ["Helmet"] = { + ["min"] = 29, + ["max"] = 36, + }, }, - ["1306_ManaRegenerationPinnaclePresence"] = { + ["1709_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4222133389", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate", + ["id"] = "implicit.stat_2425364074", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge", }, ["Helmet"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 7, + ["max"] = 8, }, ["sign"] = "", }, - ["4659_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["1305_EnergyShieldRecoveryRateUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_553122931", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence", + ["id"] = "implicit.stat_587322642", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", }, ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + ["min"] = 10, + ["max"] = 14, }, ["sign"] = "", }, - ["2859_PoisonOnHitPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["943_AttackDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_532792006", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", }, - ["Gloves"] = { - ["min"] = 35, - ["max"] = 50, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["3045_PurityOfFireEffectUniquePresence"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 14, + ["max"] = 29, + }, + ["Helmet"] = { + ["min"] = 14, + ["max"] = 29, }, + }, + ["2688_ColdResistancePenetrationPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1926772156", - ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", + ["id"] = "implicit.stat_403285636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 9, + ["max"] = 10, + }, + ["Helmet"] = { + ["min"] = 9, + ["max"] = 10, + }, }, - ["1306_ManaRegeneration"] = { + ["2975_IncreasedStunThreshold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - }, - ["Helmet"] = { - ["min"] = 19, - ["max"] = 36, + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, + }, }, - ["2672_FireResistancePenetrationUniquePresence"] = { + ["892_ChanceToSuppressSpellsPinnaclePresence"] = { + ["Gloves"] = { + ["min"] = 12, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3425675761", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance", + ["id"] = "implicit.stat_2998245080", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Suppress Spell Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 12, + ["max"] = 15, }, }, - ["3053_DisciplineAuraEffectPinnaclePresence"] = { + ["3064_GraceAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2752131673", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", + ["id"] = "implicit.stat_3303144948", + ["text"] = "While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1652_PhysicalDamageAddedAsChaosUniquePresence"] = { + ["3804_RallyingCryWarcryEffectPinnaclePresence"] = { ["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"] = "implicit.stat_2063107864", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect", }, ["sign"] = "", ["Boots"] = { - ["min"] = 6, - ["max"] = 8, + ["min"] = 22, + ["max"] = 29, }, }, - ["1652_PhysicalDamageAddedAsChaos"] = { + ["3959_PlayerReflectedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["id"] = "implicit.stat_3846810663", + ["text"] = "#% reduced Reflected Damage taken", + }, + ["Chest"] = { + ["min"] = 45, + ["max"] = 70, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1753_ChanceToIgniteUniquePresence"] = { + ["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, }, + ["sign"] = "", }, - ["1392_FireDamageLifeLeechPinnaclePresence"] = { + ["2202_ChanceToBleedPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1954944666", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life", + ["id"] = "implicit.stat_4014428128", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", }, ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["min"] = 35, + ["max"] = 50, }, ["sign"] = "", }, - ["1649_PhysicalAddedAsFirePinnaclePresence"] = { + ["2684_ArmourPenetrationPinnaclePresence"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_469487616", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Overwhelm #% Physical Damage Reduction", + }, + ["Gloves"] = { + ["min"] = 24, + ["max"] = 31, + }, + ["sign"] = "", + }, + ["3066_HatredAuraEffectUniquePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4218330172", + ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + }, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, + }, + ["sign"] = "", + }, + ["4507_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"] = 9, - ["max"] = 10, + ["min"] = 14, + ["max"] = 23, }, }, - ["1388_PhysicalDamageLifeLeechPinnaclePresence"] = { + ["5523_EnemyLifeRegenerationRateUniquePresence"] = { ["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"] = "implicit.stat_2570471069", + ["text"] = "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["Helmet"] = { + ["min"] = 77, + ["max"] = 91, }, ["sign"] = "", }, - ["6180_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { + ["4127_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3945581778", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_490830332", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, # to Accuracy Rating per Frenzy Charge", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["Gloves"] = { + ["min"] = 61, + ["max"] = 72, }, + ["sign"] = "+", }, - ["5454_ExertedAttackDamagePinnaclePresence"] = { + ["3060_PurityOfFireEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_376260015", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", + ["id"] = "implicit.stat_1926772156", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 38, - ["max"] = 47, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1159_IncreasedAccuracyPercentPinnaclePresence"] = { + ["3062_PurityOfLightningEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2086047206", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", + ["id"] = "implicit.stat_908556575", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 21, - ["max"] = 28, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["4658_BodyDamageTakenPerDexterityUniquePresence"] = { - ["specialCaseData"] = { - }, + ["2687_FireResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1682072497", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 6, + }, }, - ["1676_ConvertPhysicalToLightningUniquePresence"] = { + ["5237_DamagePer100INTPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1516273114", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", + ["id"] = "implicit.stat_2532279515", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence", }, ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", }, - ["7743_MinionReflectedDamageUniquePresence"] = { + ["3068_DisciplineAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1499657170", - ["text"] = "While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage", + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 65, - ["max"] = 85, + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["6887_GlobalMaimOnHitUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1950_ManaReservationEfficiencyPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_720015764", - ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", + ["id"] = "implicit.stat_4213793369", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 18, + }, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 18, + }, }, - ["891_SpellBlockPercentage"] = { + ["2689_LightningResistancePenetrationPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "implicit.stat_550672859", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 5, + ["min"] = 9, ["max"] = 10, }, - ["Chest"] = { - ["min"] = 5, + ["Helmet"] = { + ["min"] = 9, ["max"] = 10, }, }, - ["2673_ColdResistancePenetration"] = { + ["2684_ArmourPenetration"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "implicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 19, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + }, + ["1174_IncreasedAccuracyPercentUniquePresence"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2423625781", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating", + }, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 24, }, + ["sign"] = "", }, - ["1283_GlobalEnergyShieldPercent"] = { + ["8166_SeismicCryExertedDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "implicit.stat_1714653952", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", }, + ["sign"] = "", + ["Boots"] = { + ["min"] = 38, + ["max"] = 47, + }, + }, + ["4672_BodyDamageTakenPerDexterityPinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 17, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2216092051", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", }, ["Chest"] = { - ["min"] = 6, - ["max"] = 17, + ["min"] = 140, + ["max"] = 170, }, + ["sign"] = "", }, - ["2965_WarcrySpeedUniquePresence"] = { + ["3578_EnduringCryCooldownRecoveryPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2255001736", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", + ["id"] = "implicit.stat_906749304", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", }, ["sign"] = "", ["Boots"] = { - ["min"] = 21, - ["max"] = 30, + ["min"] = 39, + ["max"] = 50, }, }, - ["891_SpellBlockPercentageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1358320252", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", - }, + ["4674_BodyDamageTakenPerStrengthUniquePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3389591826", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", }, ["Chest"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 160, + ["max"] = 200, }, + ["sign"] = "", }, - ["1298_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { + ["1667_PhysicalDamageAddedAsChaosUniquePresence"] = { ["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", + ["id"] = "implicit.stat_620552892", + ["text"] = "While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage", }, ["sign"] = "", ["Boots"] = { - ["min"] = 0.4, - ["max"] = 0.5, + ["min"] = 6, + ["max"] = 8, }, }, - ["953_SpellDamage"] = { + ["887_BlockPercentPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_3326567914", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["min"] = 11, + ["max"] = 14, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["Chest"] = { + ["min"] = 11, + ["max"] = 14, }, }, - ["5223_DamagePer100STRPinnaclePresence"] = { + ["8728_ZealotryAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3183308031", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", + ["id"] = "implicit.stat_2293353005", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 6, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, ["sign"] = "", }, - ["5625_FireExposureEffectOnHitUniquePresence"] = { + ["2874_PoisonOnHitPinnaclePresence"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_532792006", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit", }, ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["min"] = 35, + ["max"] = 50, }, - ["sign"] = "-", + ["sign"] = "", }, - ["8334_SpellsHinderOnHitChance"] = { + ["1691_ConvertPhysicalToLightningUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["id"] = "implicit.stat_1516273114", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage", }, ["Gloves"] = { - ["min"] = 15, - ["max"] = 40, + ["min"] = 30, + ["max"] = 50, }, ["sign"] = "", }, - ["3789_RallyingCryWarcryEffect"] = { + ["1709_IncreasedManaRegenerationPerPowerCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4147277532", - ["text"] = "#% increased Rallying Cry Buff Effect", + ["id"] = "implicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + }, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + }, + ["3062_PurityOfLightningEffectPinnaclePresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1445513967", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + }, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - ["1272_GlobalEvasionRatingPercent"] = { + ["1279_GlobalPhysicalDamageReductionRatingPercent"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", }, ["specialCaseData"] = { }, @@ -39943,247 +58817,239 @@ return { ["max"] = 28, }, }, - ["3044_PurityOfElementsEffectUniquePresence"] = { + ["3067_DeterminationAuraEffect"] = { ["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"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["1579_IncreasedAilmentDuration"] = { + ["7746_MinionReflectedDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", + ["id"] = "implicit.stat_505327219", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage", + }, + ["Chest"] = { + ["min"] = 85, + ["max"] = 100, + }, + ["sign"] = "", + }, + ["1302_EnergyShieldRegenerationPinnaclePresence"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_26006636", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 13, - ["max"] = 24, + ["min"] = 29, + ["max"] = 32, }, ["Helmet"] = { - ["min"] = 13, - ["max"] = 24, + ["min"] = 29, + ["max"] = 32, }, }, - ["6180_IntimidatingCryCooldownRecovery"] = { + ["1321_ManaRegenerationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1134560807", - ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_760444887", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["Helmet"] = { + ["min"] = 34, + ["max"] = 48, }, + ["sign"] = "", }, - ["1679_PhysicalDamageConvertToChaosImplicit"] = { + ["1321_ManaRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["Helmet"] = { + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["5595_FasterPoisonDamagePinnaclePresence"] = { + ["1313_LifeRegenerationPercentPerEnduranceCharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_995369618", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", }, ["sign"] = "", ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["min"] = 0.2, + ["max"] = 0.3, }, }, - ["4448_GlobalCooldownRecovery"] = { - ["specialCaseData"] = { + ["892_ChanceToSuppressSpellsUniquePresence"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 12, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_3998961962", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Suppress Spell Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 12, }, }, - ["3044_PurityOfElementsEffectPinnaclePresence"] = { + ["3063_WrathAuraEffectUniquePresence"] = { ["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"] = "implicit.stat_399528178", + ["text"] = "While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1579_IncreasedAilmentDurationUniquePresence"] = { + ["5609_FasterBleedDamagePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3341892633", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_4106235309", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 21, - ["max"] = 30, - }, - ["Helmet"] = { - ["min"] = 21, - ["max"] = 30, + ["Boots"] = { + ["min"] = 13, + ["max"] = 16, }, }, - ["3048_WrathAuraEffect"] = { + ["8728_ZealotryAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", + ["id"] = "implicit.stat_3550578554", + ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1676_ConvertPhysicalToLightningImplicit"] = { + ["1609_ReducedIgniteDurationOnSelfUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["id"] = "implicit.stat_2520245478", + ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 35, + ["Helmet"] = { + ["min"] = 45, + ["max"] = 61, }, ["sign"] = "", }, - ["1694_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["5467_ElusiveEffectPinnaclePresence"] = { ["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"] = "implicit.stat_3173079195", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", }, ["sign"] = "", - }, - ["1264_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1371764251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour", + ["Boots"] = { + ["min"] = 22, + ["max"] = 29, }, + }, + ["5469_ExertedAttackDamagePinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 33, - ["max"] = 40, - }, - ["Chest"] = { - ["min"] = 33, - ["max"] = 40, - }, - }, - ["1299_LifeRegenerationRatePinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_498250787", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate", + ["id"] = "implicit.stat_376260015", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 38, + ["max"] = 47, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 18, - }, - ["Boots"] = { - ["min"] = 15, - ["max"] = 18, - }, }, - ["3944_PlayerReflectedDamage"] = { + ["1667_PhysicalDamageAddedAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3846810663", - ["text"] = "#% reduced Reflected Damage taken", - }, - ["Chest"] = { - ["min"] = 45, - ["max"] = 70, + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 4, + ["max"] = 6, + }, }, - ["3050_HasteAuraEffectPinnaclePresence"] = { + ["6890_GlobalMaimOnHitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1065477979", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", + ["id"] = "implicit.stat_720015764", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 70, }, ["sign"] = "", }, - ["1594_ReducedIgniteDurationOnSelf"] = { + ["3804_RallyingCryWarcryEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + ["id"] = "implicit.stat_1381761351", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 14, + ["max"] = 23, + }, }, - ["2296_MarkEffect"] = { + ["2311_MarkEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -40197,305 +59063,321 @@ return { }, ["sign"] = "", }, - ["5595_FasterPoisonDamageUniquePresence"] = { + ["3068_DisciplineAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3828039449", - ["text"] = "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster", + ["id"] = "implicit.stat_2752131673", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - ["2976_ArcaneSurgeEffectPinnaclePresence"] = { + ["1691_ConvertPhysicalToLightningImplicit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_664899091", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, - ["Helmet"] = { - ["min"] = 22, - ["max"] = 29, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 35, }, ["sign"] = "", }, - ["5029_ColdExposureEffectOnHitUniquePresence"] = { + ["1689_ConvertPhysicalToColdPinnaclePresence"] = { ["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", + ["id"] = "implicit.stat_3567752586", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage", }, ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["min"] = 50, + ["max"] = 65, }, - ["sign"] = "-", + ["sign"] = "", }, - ["1287_EnergyShieldRegenerationPinnaclePresence"] = { + ["1753_ChanceToIgnitePinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_26006636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate", + ["id"] = "implicit.stat_1030674088", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 35, + ["max"] = 50, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 32, + }, + ["8728_ZealotryAuraEffect"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 32, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", + }, + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, }, + ["sign"] = "", }, - ["4055_TravelSkillCooldownRecovery"] = { + ["5610_FasterPoisonDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2308278768", - ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["id"] = "implicit.stat_995369618", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster", }, ["sign"] = "", ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["min"] = 13, + ["max"] = 16, }, }, - ["3043_AngerAuraEffectPinnaclePresence"] = { + ["7746_MinionReflectedDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1167349834", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", + ["id"] = "implicit.stat_3056045252", + ["text"] = "Minions take #% reduced Reflected Damage", }, ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 45, + ["max"] = 70, }, ["sign"] = "", }, - ["1741_ChanceToFreeze"] = { + ["5469_ExertedAttackDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "implicit.stat_3291139981", + ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 30, + ["Gloves"] = { + ["min"] = 29, + ["max"] = 41, }, ["sign"] = "", }, - ["2296_MarkEffectUniquePresence"] = { + ["5567_EvasionRatingHelmetBootsUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_505694848", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", + ["id"] = "implicit.stat_2408490382", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", }, ["Gloves"] = { - ["min"] = 14, - ["max"] = 23, + ["min"] = 45, + ["max"] = 61, }, ["sign"] = "", }, - ["3891_ChanceToAvoidBleedingPinnaclePresence"] = { + ["1664_PhysicalAddedAsFirePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2610114836", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding", + ["id"] = "implicit.stat_1335630001", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage", }, ["sign"] = "", ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["min"] = 9, + ["max"] = 10, }, }, - ["8163_SeismicCryExertedDamage"] = { + ["5043_ColdExposureEffectOnHitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3252913608", - ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", + ["id"] = "implicit.stat_1699220089", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 19, }, + ["sign"] = "-", }, - ["1392_FireDamageLifeLeechHundredThousand"] = { + ["1756_ChanceToFreezeUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["id"] = "implicit.stat_1096728982", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 40, }, ["sign"] = "", }, - ["3891_ChanceToAvoidBleedingUniquePresence"] = { + ["3065_HasteAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2651293339", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding", + ["id"] = "implicit.stat_1065477979", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Chest"] = { + ["min"] = 49, + ["max"] = 60, }, + ["sign"] = "", }, - ["1283_GlobalEnergyShieldPercentPinnaclePresence"] = { + ["1583_ChanceToAvoidPoisonPinnaclePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1917716710", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2714750784", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 22, - ["max"] = 29, - }, - ["Chest"] = { - ["min"] = 22, - ["max"] = 29, + ["Boots"] = { + ["min"] = 57, + ["max"] = 70, }, }, - ["1290_EnergyShieldRecoveryRateUniquePresence"] = { + ["4672_BodyDamageTakenPerDexterityUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_587322642", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate", + ["id"] = "implicit.stat_1682072497", + ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity", }, ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + ["min"] = 160, + ["max"] = 200, }, ["sign"] = "", }, - ["1272_GlobalEvasionRatingPercentUniquePresence"] = { + ["5043_ColdExposureEffectOnHit"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3394288644", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Evasion Rating", + ["id"] = "implicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + }, + ["Gloves"] = { + ["min"] = 11, + ["max"] = 16, }, + ["sign"] = "-", + }, + ["4127_IncreasedAccuracyPerFrenzy"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 34, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3126680545", + ["text"] = "# to Accuracy Rating per Frenzy Charge", }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 34, + ["Gloves"] = { + ["min"] = 43, + ["max"] = 60, }, + ["sign"] = "+", }, - ["1401_LightningDamageLifeLeechUniquePresence"] = { + ["8337_SpellsHinderOnHitChanceUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2824722288", - ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", + ["id"] = "implicit.stat_3423886807", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells", }, ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["min"] = 50, + ["max"] = 70, }, ["sign"] = "", }, - ["1594_ReducedIgniteDurationOnSelfUniquePresence"] = { + ["2991_ArcaneSurgeEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2520245478", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you", + ["id"] = "implicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", }, ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + ["min"] = 6, + ["max"] = 17, }, ["sign"] = "", }, - ["1614_SkillEffectDurationUniquePresence"] = { + ["5527_EnergyShieldFromGlovesBoots"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "implicit.stat_1234687045", + ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", }, - ["Amulet"] = { - ["min"] = 15, - ["max"] = 24, + ["Helmet"] = { + ["min"] = 33, + ["max"] = 50, }, ["sign"] = "", }, - ["7981_PrideAuraEffectPinnaclePresence"] = { + ["7746_MinionReflectedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2163876658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect", + ["id"] = "implicit.stat_1499657170", + ["text"] = "While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage", }, ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["min"] = 65, + ["max"] = 85, }, ["sign"] = "", }, - ["1614_SkillEffectDurationPinnaclePresence"] = { + ["8337_SpellsHinderOnHitChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", }, - ["Amulet"] = { - ["min"] = 23, - ["max"] = 30, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 40, }, ["sign"] = "", }, - ["4394_AttackImpaleChanceUniquePresence"] = { + ["2202_ChanceToBleedUniquePresence"] = { ["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", + ["id"] = "implicit.stat_64193828", + ["text"] = "While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding", }, ["Gloves"] = { ["min"] = 20, @@ -40503,343 +59385,331 @@ return { }, ["sign"] = "", }, - ["2146_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1298_GlobalEnergyShieldPercentUniquePresence"] = { ["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"] = "implicit.stat_1114962813", + ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 14, + ["max"] = 23, + }, + ["Chest"] = { + ["min"] = 14, + ["max"] = 23, + }, }, - ["2965_WarcrySpeedPinnaclePresence"] = { + ["4070_TravelSkillCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2117066923", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed", + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", }, ["sign"] = "", ["Boots"] = { - ["min"] = 27, - ["max"] = 34, + ["min"] = 15, + ["max"] = 32, }, }, - ["3043_AngerAuraEffect"] = { + ["1298_GlobalEnergyShieldPercent"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 17, + }, + ["Chest"] = { + ["min"] = 6, + ["max"] = 17, + }, + }, + ["968_SpellDamagePinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", + ["id"] = "implicit.stat_817495383", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 44, + ["max"] = 53, + }, + ["Helmet"] = { + ["min"] = 44, + ["max"] = 53, + }, }, - ["3944_PlayerReflectedDamagePinnaclePresence"] = { + ["1407_FireDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3178090061", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken", + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", }, - ["Chest"] = { - ["min"] = 85, - ["max"] = 100, + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.7, }, ["sign"] = "", }, - ["1300_LifeRecoveryRateUniquePresence"] = { + ["2277_FasterIgniteDamagePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1481249164", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Recovery rate", - }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + ["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, + }, }, - ["1694_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { + ["1760_ChanceToShockUniquePresence"] = { ["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", + ["id"] = "implicit.stat_2621869142", + ["text"] = "While a Unique Enemy is in your Presence, #% chance to Shock", }, ["Helmet"] = { - ["min"] = 7, - ["max"] = 8, + ["min"] = 20, + ["max"] = 40, }, ["sign"] = "", }, - ["1651_PhysicalAddedAsLightningPinnaclePresence"] = { + ["5828_GeneralsCryCooldownRecovery"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_3637727672", + ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", }, ["sign"] = "", ["Boots"] = { - ["min"] = 9, - ["max"] = 10, + ["min"] = 15, + ["max"] = 32, }, }, - ["1290_EnergyShieldRecoveryRatePinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1594_IncreasedAilmentDurationUniquePresence"] = { ["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"] = "implicit.stat_3341892633", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies", }, - ["sign"] = "", - }, - ["1388_PhysicalDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2443166200", - ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 21, + ["max"] = 30, }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["Helmet"] = { + ["min"] = 21, + ["max"] = 30, }, - ["sign"] = "", }, - ["2145_PhysicalDamageTakenAsFireUberUniquePresence"] = { + ["5321_MalevolenceAuraEffectUniquePresence"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_1327020319", + ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1568_ChanceToAvoidPoisonPinnaclePresence"] = { + ["2980_WarcrySpeedUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2714750784", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned", + ["id"] = "implicit.stat_2255001736", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Warcry Speed", }, ["sign"] = "", ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["min"] = 21, + ["max"] = 30, }, }, - ["1283_GlobalEnergyShieldPercentUniquePresence"] = { + ["1287_GlobalEvasionRatingPercent"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1114962813", - ["text"] = "While a Unique Enemy is in your Presence, #% increased maximum Energy Shield", + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 14, - ["max"] = 23, + ["min"] = 17, + ["max"] = 28, }, ["Chest"] = { - ["min"] = 14, - ["max"] = 23, - }, - }, - ["953_SpellDamageUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4136821316", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, - }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 41, - }, - }, - ["5508_EnemyLifeRegenerationRateUniquePresence"] = { - ["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", - }, - ["Helmet"] = { - ["min"] = 77, - ["max"] = 91, + ["min"] = 17, + ["max"] = 28, }, - ["sign"] = "", }, - ["3051_HatredAuraEffectUniquePresence"] = { + ["4673_BodyDamageTakenPerIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4218330172", - ["text"] = "While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect", + ["id"] = "implicit.stat_2874488491", + ["text"] = "1% less Damage Taken per # Intelligence", }, ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["min"] = 180, + ["max"] = 230, }, ["sign"] = "", }, - ["4264_ArmourFromHelmetGlovesPinnaclePresence"] = { + ["3906_ChanceToAvoidBleeding"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3330140563", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", }, ["sign"] = "", ["Boots"] = { - ["min"] = 57, - ["max"] = 70, + ["min"] = 33, + ["max"] = 50, }, }, - ["1392_FireDamageLifeLeechUniquePresence"] = { + ["3063_WrathAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3430693940", - ["text"] = "While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life", + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["Chest"] = { + ["min"] = 19, + ["max"] = 36, }, ["sign"] = "", }, - ["6158_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { + ["5043_ColdExposureEffectOnHitPinnaclePresence"] = { ["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", + ["id"] = "implicit.stat_3658662726", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["Gloves"] = { + ["min"] = 19, + ["max"] = 22, }, + ["sign"] = "-", }, - ["1649_PhysicalAddedAsFire"] = { - ["specialCaseData"] = { - }, + ["2688_ColdResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Helmet"] = { ["min"] = 4, ["max"] = 6, }, }, - ["3046_PurityOfIceEffectUniquePresence"] = { + ["1323_ManaRecoveryRatePinnaclePresence"] = { ["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"] = "implicit.stat_4117139221", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate", }, ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["min"] = 13, + ["max"] = 16, }, ["sign"] = "", }, - ["1308_ManaRecoveryRate"] = { + ["2874_PoisonOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 30, }, ["sign"] = "", }, - ["2146_PhysicalDamageTakenAsColdUber"] = { + ["6158_InfernalCryWarcryAreaOfEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "implicit.stat_3199255605", + ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 27, + ["max"] = 41, + }, }, - ["5306_MalevolenceAuraEffectUniquePresence"] = { + ["5567_EvasionRatingHelmetBootsPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1327020319", - ["text"] = "While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect", + ["id"] = "implicit.stat_2980409921", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Gloves"] = { + ["min"] = 57, + ["max"] = 70, }, ["sign"] = "", }, - ["5813_GeneralsCryCooldownRecoveryUniquePresence"] = { + ["4070_TravelSkillCooldownRecoveryUniquePresence"] = { ["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", + ["id"] = "implicit.stat_2986495340", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", }, ["sign"] = "", ["Boots"] = { @@ -40847,69 +59717,87 @@ return { ["max"] = 41, }, }, - ["3050_HasteAuraEffect"] = { + ["1416_LightningDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1240056437", - ["text"] = "Haste has #% increased Aura Effect", + ["id"] = "implicit.stat_2824722288", + ["text"] = "While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.9, }, ["sign"] = "", }, - ["4112_IncreasedAccuracyPerFrenzy"] = { + ["5640_FireExposureEffectOnHitUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3126680545", - ["text"] = "# to Accuracy Rating per Frenzy Charge", + ["id"] = "implicit.stat_732411542", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance", }, ["Gloves"] = { - ["min"] = 43, - ["max"] = 60, + ["min"] = 15, + ["max"] = 19, }, - ["sign"] = "+", + ["sign"] = "-", }, - ["3045_PurityOfFireEffect"] = { + ["3067_DeterminationAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2539726203", - ["text"] = "Purity of Fire has #% increased Aura Effect", + ["id"] = "implicit.stat_1324460486", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", }, ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["min"] = 49, + ["max"] = 60, }, ["sign"] = "", }, - ["1679_ConvertPhysicalToChaosPinnaclePresence"] = { + ["892_ChanceToSuppressSpells"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 5, + ["max"] = 10, + }, + }, + ["1629_SkillEffectDuration"] = { ["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", + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["Amulet"] = { + ["min"] = 7, + ["max"] = 18, }, ["sign"] = "", }, - ["4448_GlobalCooldownRecoveryUniquePresence"] = { + ["5609_FasterBleedDamageUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2491353340", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_738837643", + ["text"] = "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster", }, ["sign"] = "", ["Boots"] = { @@ -40917,13 +59805,13 @@ return { ["max"] = 13, }, }, - ["3051_HatredAuraEffect"] = { + ["3065_HasteAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", + ["id"] = "implicit.stat_1240056437", + ["text"] = "Haste has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 19, @@ -40931,123 +59819,123 @@ return { }, ["sign"] = "", }, - ["1672_ConvertPhysicalToFirePinnaclePresence"] = { + ["1412_ColdDamageLifeLeechUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3764409984", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage", + ["id"] = "implicit.stat_3357881628", + ["text"] = "While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life", }, ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["min"] = 0.5, + ["max"] = 0.9, }, ["sign"] = "", }, - ["2146_PhysicalDamageTakenAsColdUberUniquePresence"] = { + ["3059_PurityOfElementsEffectUniquePresence"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_348693938", + ["text"] = "While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect", }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["Chest"] = { + ["min"] = 34, + ["max"] = 48, }, ["sign"] = "", }, - ["1651_PhysicalAddedAsLightningUniquePresence"] = { + ["5467_ElusiveEffect"] = { ["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", + ["id"] = "implicit.stat_240857668", + ["text"] = "#% increased Elusive Effect", }, ["sign"] = "", ["Boots"] = { ["min"] = 6, - ["max"] = 8, + ["max"] = 17, }, }, - ["1299_LifeRegenerationRate"] = { + ["968_SpellDamageUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "implicit.stat_4136821316", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Spell Damage", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 7, - ["max"] = 12, + ["min"] = 29, + ["max"] = 41, }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 12, + ["Helmet"] = { + ["min"] = 29, + ["max"] = 41, }, }, - ["5221_DamagePer100DEXUniquePresence"] = { + ["5238_DamagePer100STRPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_535580777", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", + ["id"] = "implicit.stat_3183308031", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength", }, ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["min"] = 5, + ["max"] = 6, }, ["sign"] = "", }, - ["6302_LightningExposureEffectOnHitPinnaclePresence"] = { + ["1174_IncreasedAccuracyPercentPinnaclePresence"] = { ["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"] = "implicit.stat_2086047206", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating", }, ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["min"] = 21, + ["max"] = 28, }, - ["sign"] = "-", + ["sign"] = "", }, - ["3051_HatredAuraEffectPinnaclePresence"] = { + ["4278_ArmourFromHelmetGlovesUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1253537227", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["id"] = "implicit.stat_1586470077", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 45, + ["max"] = 61, + }, }, - ["2149_PhysicalDamageTakenAsChaosUber"] = { + ["1315_LifeRecoveryRatePinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "implicit.stat_2761472996", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Chest"] = { + ["min"] = 13, + ["max"] = 16, }, ["sign"] = "", }, - ["3049_GraceAuraEffect"] = { + ["3064_GraceAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -41061,31 +59949,27 @@ return { }, ["sign"] = "", }, - ["877_ChanceToSuppressSpellsUniquePresence"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 12, + ["6304_LightningExposureEffectOnHitUniquePresence"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3998961962", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Suppress Spell Damage", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2876365933", + ["text"] = "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 15, + ["max"] = 19, }, + ["sign"] = "-", }, - ["3045_PurityOfFireEffectPinnaclePresence"] = { + ["3058_AngerAuraEffectPinnaclePresence"] = { ["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"] = "implicit.stat_1167349834", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect", }, ["Chest"] = { ["min"] = 49, @@ -41093,2575 +59977,2690 @@ return { }, ["sign"] = "", }, - ["1694_IncreasedManaRegenerationPerPowerCharge"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2847548062", - ["text"] = "#% increased Mana Regeneration Rate per Power Charge", - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 6, - }, - ["sign"] = "", - }, - ["1650_PhysicalAddedAsColdUniquePresence"] = { + ["3804_RallyingCryWarcryEffect"] = { ["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", + ["id"] = "implicit.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", }, ["sign"] = "", ["Boots"] = { ["min"] = 6, - ["max"] = 8, - }, - }, - ["1568_ChanceToAvoidPoison"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["max"] = 17, }, }, - ["1935_ManaReservationEfficiency"] = { + ["1314_LifeRegenerationRateUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["id"] = "implicit.stat_1916766878", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 7, - ["max"] = 12, + ["min"] = 11, + ["max"] = 15, }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 12, + ["Boots"] = { + ["min"] = 11, + ["max"] = 15, }, }, - ["1738_ChanceToIgnite"] = { + ["3578_EnduringCryCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 30, + ["id"] = "implicit.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 15, + ["max"] = 32, + }, }, - ["1300_LifeRecoveryRatePinnaclePresence"] = { + ["1694_ConvertPhysicalToChaosUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2761472996", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate", + ["id"] = "implicit.stat_1623369100", + ["text"] = "While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage", }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 16, + ["Gloves"] = { + ["min"] = 30, + ["max"] = 50, }, ["sign"] = "", }, - ["2674_LightningResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - }, + ["1756_ChanceToFreezePinnaclePresence"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["7821_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2950684886", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 23, - ["max"] = 35, + ["id"] = "implicit.stat_4146719724", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", }, ["Helmet"] = { - ["min"] = 23, - ["max"] = 35, + ["min"] = 35, + ["max"] = 50, }, + ["sign"] = "", }, - ["2262_FasterIgniteDamageUniquePresence"] = { + ["2202_ChanceToBleed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2349328837", - ["text"] = "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster", + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 13, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 30, }, + ["sign"] = "", }, - ["5625_FireExposureEffectOnHitPinnaclePresence"] = { + ["5236_DamagePer100DEXUniquePresence"] = { ["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"] = "implicit.stat_535580777", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity", }, ["Gloves"] = { - ["min"] = 19, - ["max"] = 22, + ["min"] = 4, + ["max"] = 5, }, - ["sign"] = "-", + ["sign"] = "", }, - ["2960_IncreasedStunThreshold"] = { + ["2277_FasterIgniteDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", }, ["sign"] = "", ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["min"] = 5, + ["max"] = 10, }, }, - ["3563_EnduringCryCooldownRecovery"] = { + ["2684_ArmourPenetrationUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3617955571", - ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_2909740133", + ["text"] = "While a Unique Enemy is in your Presence, Overwhelm #% Physical Damage Reduction", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 25, }, + ["sign"] = "", }, - ["1308_ManaRecoveryRateUniquePresence"] = { + ["1608_ReducedFreezeDurationPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1217759839", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Recovery rate", + ["id"] = "implicit.stat_928972227", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you", }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 14, + ["Helmet"] = { + ["min"] = 57, + ["max"] = 70, }, ["sign"] = "", }, - ["2187_ChanceToBleedPinnaclePresence"] = { + ["2164_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4014428128", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding", + ["id"] = "implicit.stat_3904394775", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage", }, - ["Gloves"] = { - ["min"] = 35, - ["max"] = 50, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 12, }, ["sign"] = "", }, - ["877_ChanceToSuppressSpellsPinnaclePresence"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 15, - }, + ["2689_LightningResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2998245080", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Suppress Spell Damage", + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", }, ["specialCaseData"] = { }, - ["sign"] = "+", + ["sign"] = "", ["Amulet"] = { - ["min"] = 12, - ["max"] = 15, - }, - }, - ["1614_SkillEffectDuration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["min"] = 4, + ["max"] = 6, }, - ["Amulet"] = { - ["min"] = 7, - ["max"] = 18, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["2976_ArcaneSurgeEffect"] = { + ["4672_BodyDamageTakenPerDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", + ["id"] = "implicit.stat_824762042", + ["text"] = "1% less Damage Taken per # Dexterity", }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 17, + ["Chest"] = { + ["min"] = 180, + ["max"] = 230, }, ["sign"] = "", }, - ["2149_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { + ["1756_ChanceToFreeze"] = { ["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"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", }, ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + ["min"] = 5, + ["max"] = 30, }, ["sign"] = "", }, - ["4660_BodyDamageTakenPerStrengthPinnaclePresence"] = { + ["4408_AttackImpaleChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_125264229", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength", + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 30, }, ["sign"] = "", }, - ["872_BlockPercent"] = { + ["7824_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["id"] = "implicit.stat_1016769968", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 32, + ["max"] = 41, }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 32, + ["max"] = 41, }, }, - ["1738_ChanceToIgniteUniquePresence"] = { - ["specialCaseData"] = { - }, + ["887_BlockPercentUniquePresence"] = { ["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"] = "implicit.stat_725501141", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage", }, - ["sign"] = "", - }, - ["1679_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", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 12, }, - ["Gloves"] = { - ["min"] = 30, - ["max"] = 50, + ["Chest"] = { + ["min"] = 8, + ["max"] = 12, }, - ["sign"] = "", }, - ["3053_DisciplineAuraEffect"] = { + ["1694_ConvertPhysicalToChaosPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", + ["id"] = "implicit.stat_2204282073", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["Gloves"] = { + ["min"] = 50, + ["max"] = 65, }, ["sign"] = "", }, - ["1935_ManaReservationEfficiencyPinnaclePresence"] = { + ["1594_IncreasedAilmentDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4213793369", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills", + ["id"] = "implicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 15, - ["max"] = 18, + ["min"] = 13, + ["max"] = 24, }, ["Helmet"] = { - ["min"] = 15, - ["max"] = 18, + ["min"] = 13, + ["max"] = 24, }, }, - ["1300_LifeRecoveryRate"] = { + ["4653_BlindEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["id"] = "implicit.stat_4122616021", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 22, + ["max"] = 29, }, ["sign"] = "", }, - ["3047_PurityOfLightningEffect"] = { + ["2991_ArcaneSurgeEffectPinnaclePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_45589825", - ["text"] = "Purity of Lightning has #% increased Aura Effect", + ["id"] = "implicit.stat_664899091", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["Helmet"] = { + ["min"] = 22, + ["max"] = 29, }, ["sign"] = "", }, - ["2674_LightningResistancePenetrationPinnaclePresence"] = { + ["4653_BlindEffectUniquePresence"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_550672859", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance", + ["id"] = "implicit.stat_886650454", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Blind Effect", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 14, + ["max"] = 23, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, - }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, - }, }, - ["2262_FasterIgniteDamage"] = { + ["2311_MarkEffectUniquePresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["id"] = "implicit.stat_505694848", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Effect of your Marks", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["Gloves"] = { + ["min"] = 14, + ["max"] = 23, }, + ["sign"] = "", }, - ["5223_DamagePer100STRUniquePresence"] = { + }, + ["Corrupted"] = { + ["5148_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4224921626", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength", + ["id"] = "implicit.stat_240289863", + ["text"] = "#% to Critical Strike Multiplier during any Flask Effect", }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["sign"] = "+", + ["Belt"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", }, - ["3563_EnduringCryCooldownRecoveryUniquePresence"] = { + ["2235_CurseOnHitLevelTemporalChains"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2792560229", - ["text"] = "While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1340_AllResistances"] = { + ["2238_CurseOnHitLevelElementalWeakness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 16, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["3563_EnduringCryCooldownRecoveryPinnaclePresence"] = { + ["1961_AreaOfEffectDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_906749304", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_3001376862", + ["text"] = "#% reduced Area Damage taken from Hits", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["Shield"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["4660_BodyDamageTakenPerStrengthUniquePresence"] = { + ["2160_PhysicalDamageTakenAsFirePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3389591826", - ["text"] = "While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength", - }, - ["Chest"] = { - ["min"] = 160, - ["max"] = 200, + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, ["sign"] = "", - }, - ["2669_ArmourPenetrationUniquePresence"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["min"] = 6, + ["max"] = 8, }, + }, + ["4731_CorruptedBloodImmunity"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2909740133", - ["text"] = "While a Unique Enemy is in your Presence, Overwhelm #% Physical Damage Reduction", + ["id"] = "implicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["specialCaseData"] = { + }, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 25, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["8725_ZealotryAuraEffect"] = { - ["specialCaseData"] = { - }, + ["1607_ReducedShockDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", + ["id"] = "implicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, }, - ["4658_BodyDamageTakenPerDexterity"] = { + ["2564_CorruptFish"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_824762042", - ["text"] = "1% less Damage Taken per # Dexterity", + ["id"] = "implicit.stat_2451060005", + ["text"] = "You can catch Corrupted Fish", }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + ["FishingRod"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["3052_DeterminationAuraEffect"] = { + ["1965_ChaosDamageTakenPercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", + ["id"] = "implicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", }, ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["min"] = 4, + ["max"] = 6, }, ["sign"] = "", }, - ["5813_GeneralsCryCooldownRecoveryPinnaclePresence"] = { + ["1977_TrapsAllowed"] = { ["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", + ["id"] = "implicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["8334_SpellsHinderOnHitChancePinnaclePresence"] = { + ["8002_IncreasedProjectileDamageForEachChain"] = { ["specialCaseData"] = { }, ["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", - }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["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, + }, }, - ["2673_ColdResistancePenetrationUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1477049675", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance", + ["315_DisplaySocketedGemsGetAddedFireDamage"] = { + ["2HMace"] = { + ["min"] = 12, + ["max"] = 12, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 12, + ["max"] = 12, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, + ["2HAxe"] = { + ["min"] = 12, + ["max"] = 12, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Staff"] = { + ["min"] = 12, + ["max"] = 12, }, - }, - ["5452_ElusiveEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 12, + ["max"] = 12, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2413932980", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", + ["id"] = "implicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["Bow"] = { + ["min"] = 12, + ["max"] = 12, }, - }, - ["1562_AvoidElementalStatusAilmentsPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 12, + ["max"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4241033239", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments", + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 12, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["specialCaseData"] = { }, }, - ["2976_ArcaneSurgeEffectUniquePresence"] = { + ["1816_AddedColdDamageToBowAttacksCorrupted"] = { ["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"] = "implicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 13, + ["max"] = 48.5, + }, }, - ["2672_FireResistancePenetrationPinnaclePresence"] = { + ["3067_IncreasedAuraEffectDeterminationCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1175129684", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance", + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, + ["min"] = 15, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["3046_PurityOfIceEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["929_IncreasedStrengthIntelligenceCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3786274521", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", }, - ["sign"] = "", - }, - ["1264_GlobalPhysicalDamageReductionRatingPercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 17, - ["max"] = 28, + ["min"] = 4, + ["max"] = 6, }, - ["Chest"] = { - ["min"] = 17, - ["max"] = 28, + ["Belt"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["3891_ChanceToAvoidBleeding"] = { - ["specialCaseData"] = { - }, + ["1608_ReducedFreezeDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 33, - ["max"] = 50, + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", }, - }, - ["1397_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", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "", }, - ["4208_AncestralCryExertedDamagePinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["1227_CriticalStrikeMultiplier"] = { ["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", + ["id"] = "implicit.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 38, - ["max"] = 47, + ["1HWeapon"] = { + ["min"] = 25, + ["max"] = 30, }, - }, - ["4493_BattlemagesCryWarcryEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2426838124", - ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 25, + ["max"] = 30, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["Claw"] = { + ["min"] = 25, + ["max"] = 30, }, }, - ["5813_GeneralsCryCooldownRecovery"] = { - ["specialCaseData"] = { - }, + ["931_IncreasedStrengthIntelligenceCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3637727672", - ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1738_ChanceToIgnitePinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1030674088", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + ["Belt"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "", }, - ["1159_IncreasedAccuracyPercent"] = { - ["specialCaseData"] = { - }, + ["1578_ChanceToAvoidFreezeAndChill"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Gloves"] = { - ["min"] = 9, - ["max"] = 20, + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", }, - ["sign"] = "", - }, - ["5454_ExertedAttackDamage"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["Gloves"] = { + ["AnyJewel"] = { ["min"] = 20, - ["max"] = 35, + ["max"] = 25, }, - ["sign"] = "", }, - ["928_AttackDamage"] = { + ["1564_PowerChargeOnCriticalStrikeChance"] = { + ["Wand"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 29, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Helmet"] = { - ["min"] = 14, - ["max"] = 29, + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, }, - ["4394_AttackImpaleChance"] = { + ["3905_BleedingImmunity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["872_BlockPercentPinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3326567914", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", - }, - ["specialCaseData"] = { + ["2686_ElementalPenetration"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 14, + ["1HSword"] = { + ["min"] = 8, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 14, + ["Wand"] = { + ["min"] = 8, + ["max"] = 10, }, - }, - ["8163_SeismicCryExertedDamageUniquePresence"] = { - ["specialCaseData"] = { + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1505297139", - ["text"] = "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage", + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 29, - ["max"] = 41, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["specialCaseData"] = { }, }, - ["928_AttackDamagePinnaclePresence"] = { + ["5321_IncreasedAuraEffectMalevolenceCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3133935886", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage", + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["min"] = 15, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 44, - ["max"] = 53, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["8334_SpellsHinderOnHitChanceUniquePresence"] = { + ["108_LocalIncreaseSocketedFireGemLevelCorrupted"] = { ["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"] = "implicit.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 70, + ["Helmet"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1652_PhysicalDamageAddedAsChaosPinnaclePresence"] = { + ["109_LocalIncreaseSocketedColdGemLevelCorrupted"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 9, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 2, + ["max"] = 2, }, + ["sign"] = "+", }, - ["1404_ChaosDamageLifeLeechUniquePresence"] = { - ["specialCaseData"] = { - }, + ["936_IncreasedDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1172401338", - ["text"] = "While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life", + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.9, + ["Chest"] = { + ["min"] = 40, + ["max"] = 50, + }, + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 5, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 5, + }, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 5, + }, }, - ["2147_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { + ["1116_AddedColdDamageToSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 12, + ["Ring"] = { + ["min"] = 5, + ["max"] = 22, }, ["sign"] = "", }, - ["5552_EvasionRatingHelmetBootsUniquePresence"] = { + ["1676_LifeRegenerationRatePercentage"] = { ["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"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", }, - ["Gloves"] = { - ["min"] = 45, - ["max"] = 61, + ["Helmet"] = { + ["min"] = 1.6, + ["max"] = 2, }, ["sign"] = "", }, - ["1340_AllResistancesPinnaclePresence"] = { + ["1150_AddedLightningDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2251516251", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% to all Elemental Resistances", + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", }, - ["Chest"] = { - ["min"] = 21, - ["max"] = 28, + ["Ring"] = { + ["min"] = 7.5, + ["max"] = 28.5, }, - ["sign"] = "+", + ["sign"] = "", }, - ["1401_LightningDamageLifeLeechHundredThousand"] = { + ["2887_MovementSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["id"] = "implicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 8, + ["max"] = 12, + }, }, - ["1593_ReducedFreezeDurationUniquePresence"] = { - ["specialCaseData"] = { + ["1131_LocalChaosDamage"] = { + ["1HSword"] = { + ["min"] = 2, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3985862221", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you", + ["Bow"] = { + ["min"] = 2, + ["max"] = 17, }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + ["2HMace"] = { + ["min"] = 2, + ["max"] = 17, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 17, + }, + ["1HMace"] = { + ["min"] = 2, + ["max"] = 17, }, ["sign"] = "", - }, - ["4659_BodyDamageTakenPerIntelligencePinnaclePresence"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 2, + ["max"] = 17, + }, + ["Claw"] = { + ["min"] = 2, + ["max"] = 17, + }, + ["2HSword"] = { + ["min"] = 2, + ["max"] = 17, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3801851872", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence", - }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", }, - ["sign"] = "", - }, - ["1741_ChanceToFreezeUniquePresence"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1096728982", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Freeze", + ["Wand"] = { + ["min"] = 2, + ["max"] = 17, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 40, + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 17, }, - ["sign"] = "", - }, - ["4448_GlobalCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 17, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_668321613", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate", + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 17, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 13, - ["max"] = 16, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, }, - ["6887_GlobalMaimOnHitPinnaclePresence"] = { + ["1798_AddedPhysicalDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4065516297", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit", - }, - ["Gloves"] = { - ["min"] = 85, - ["max"] = 95, + ["id"] = "implicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 4.5, + ["max"] = 15.5, + }, }, - ["2674_LightningResistancePenetrationUniquePresence"] = { + ["319_DisplaySocketedGemGetsElementalProliferation"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1598254831", - ["text"] = "While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance", + ["id"] = "implicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Helmet"] = { - ["min"] = 6, - ["max"] = 8, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1562_AvoidElementalStatusAilmentsUniquePresence"] = { + ["5714_GainFrenzyChargeAfterSpending200Mana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3264420229", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments", + ["id"] = "implicit.stat_3868549606", + ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["6302_LightningExposureEffectOnHitUniquePresence"] = { + ["2458_ProjectileDamageTaken"] = { ["specialCaseData"] = { }, ["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", + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", }, - ["Gloves"] = { - ["min"] = 15, - ["max"] = 19, + ["sign"] = "", + ["Shield"] = { + ["min"] = 4, + ["max"] = 6, }, - ["sign"] = "-", }, - ["1299_LifeRegenerationRateUniquePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1916766878", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Life Regeneration rate", + ["214_SupportedByLifeGainOnHit"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 10, + ["max"] = 10, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 15, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 10, }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 15, + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, - }, - ["4055_TravelSkillCooldownRecoveryPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_850668052", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills", - }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 39, - ["max"] = 50, + ["id"] = "implicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", }, - }, - ["5512_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", + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, }, - ["Helmet"] = { - ["min"] = 45, - ["max"] = 61, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", }, - ["1741_ChanceToFreezePinnaclePresence"] = { + ["1479_ManaGainPerTarget"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4146719724", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze", + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + ["Ring"] = { + ["min"] = 1, + ["max"] = 6, }, ["sign"] = "", }, - ["7743_MinionReflectedDamagePinnaclePresence"] = { - ["specialCaseData"] = { + ["1766_CullingStrike"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_505327219", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage", + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", }, - ["Chest"] = { - ["min"] = 85, - ["max"] = 100, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["5221_DamagePer100DEX"] = { + ["2241_CurseOnHitDespair"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", }, ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1676_ConvertPhysicalToLightningPinnaclePresence"] = { + ["975_PhysicalDamagePercent"] = { ["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"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, - ["Gloves"] = { - ["min"] = 50, - ["max"] = 65, + ["Ring"] = { + ["min"] = 15, + ["max"] = 25, }, ["sign"] = "", }, - ["6158_InfernalCryWarcryAreaOfEffect"] = { - ["specialCaseData"] = { - }, + ["3058_IncreasedAuraEffectAngerCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_631097842", - ["text"] = "Infernal Cry has #% increased Area of Effect", + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { + ["Amulet"] = { ["min"] = 15, - ["max"] = 32, + ["max"] = 20, + }, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["2147_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["110_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { ["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"] = "implicit.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", }, ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", + ["sign"] = "+", }, - ["5452_ElusiveEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["3063_IncreasedAuraEffectWrathCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3173079195", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect", + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, - }, - ["5512_EnergyShieldFromGlovesBoots"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1234687045", - ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", }, - ["1264_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { + ["335_SupportedByFork"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1980216452", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", + ["id"] = "implicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 25, - ["max"] = 34, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { - ["min"] = 25, - ["max"] = 34, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["5306_MalevolenceAuraEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2338_FrenzyChargeOnKillChance"] = { + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 11, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1033279468", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect", + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 11, + }, + ["Bow"] = { + ["min"] = 9, + ["max"] = 11, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 9, + ["max"] = 11, + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 11, + }, }, - ["1298_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { - ["specialCaseData"] = { + ["1410_ColdDamageLifeLeechPermyriad"] = { + ["2HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1123587207", - ["text"] = "While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge", + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 0.3, - ["max"] = 0.4, + ["Dagger"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Bow"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - }, - ["953_SpellDamagePinnaclePresence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_817495383", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage", + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 44, - ["max"] = 53, + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["1HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["Wand"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Staff"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["1HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["Helmet"] = { - ["min"] = 44, - ["max"] = 53, + ["min"] = 0.5, + ["max"] = 0.5, + }, + ["2HWeapon"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["1HWeapon"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Claw"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, }, - ["1593_ReducedFreezeDurationPinnaclePresence"] = { + ["2162_PhysicalDamageTakenAsLightningPercent"] = { ["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"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["8163_SeismicCryExertedDamagePinnaclePresence"] = { + ["2204_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3944782785", + ["text"] = "#% increased Attack Damage against Bleeding Enemies", + }, + ["1HWeapon"] = { + ["min"] = 30, + ["max"] = 40, + }, + ["2HWeapon"] = { + ["min"] = 30, + ["max"] = 40, + }, ["specialCaseData"] = { }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 30, + ["max"] = 40, + }, + ["1HAxe"] = { + ["min"] = 30, + ["max"] = 40, + }, + }, + ["1250_ReducedExtraDamageFromCrits"] = { ["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"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 38, - ["max"] = 47, + ["Chest"] = { + ["min"] = 50, + ["max"] = 50, + }, + ["Shield"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["3046_PurityOfIceEffect"] = { + ["8197_ShockEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1944316218", - ["text"] = "Purity of Ice has #% increased Aura Effect", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", }, - ["Chest"] = { - ["min"] = 19, - ["max"] = 36, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 30, }, ["sign"] = "", }, - ["3944_PlayerReflectedDamageUniquePresence"] = { + ["3089_ColdDamageTakenPercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1941017392", - ["text"] = "While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken", + ["id"] = "implicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", }, ["Chest"] = { - ["min"] = 65, - ["max"] = 85, + ["min"] = 4, + ["max"] = 6, }, ["sign"] = "", }, - ["1568_ChanceToAvoidPoisonUniquePresence"] = { - ["specialCaseData"] = { + ["1705_MinionDamage"] = { + ["BaseJewel"] = { + ["min"] = 4, + ["max"] = 5, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3553907672", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Helmet"] = { + ["min"] = 15, + ["max"] = 20, }, - }, - ["4493_BattlemagesCryWarcryEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 4, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1455812442", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect", + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 22, - ["max"] = 29, + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["AnyJewel"] = { + ["min"] = 4, + ["max"] = 5, }, }, - ["2859_PoisonOnHit"] = { - ["specialCaseData"] = { + ["1151_IncreasedAttackSpeed"] = { + ["Gloves"] = { + ["min"] = 8, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", }, - ["sign"] = "", - }, - ["5454_ExertedAttackDamageUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3291139981", - ["text"] = "While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 10, }, - ["Gloves"] = { - ["min"] = 29, - ["max"] = 41, + ["Ring"] = { + ["min"] = 8, + ["max"] = 10, }, - ["sign"] = "", }, - ["2960_IncreasedStunThresholdUniquePresence"] = { - ["specialCaseData"] = { - }, + ["3066_IncreasedAuraEffectHatredCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_266654028", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Stun Threshold", + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, - }, - ["4112_FlatAccuracyPerFrenzyChargeUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_475859964", - ["text"] = "While a Unique Enemy is in your Presence, # to Accuracy Rating per Frenzy Charge", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 52, - ["max"] = 66, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "+", }, - ["3052_DeterminationAuraEffectUniquePresence"] = { - ["specialCaseData"] = { - }, + ["2833_ChanceToTakeCriticalStrike"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2366356855", - ["text"] = "While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect", + ["id"] = "implicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1509_AdditionalPiercePinnaclePresence"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["min"] = 60, + ["max"] = 100, + }, + ["AnyJewel"] = { + ["min"] = 60, + ["max"] = 100, }, + }, + ["7984_IncreasedAuraEffectPrideCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4045839821", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets", + ["id"] = "implicit.stat_4247488219", + ["text"] = "Pride has #% increased Aura Effect", }, - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - }, - ["3052_DeterminationAuraEffectPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1324460486", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", }, - ["5594_FasterBleedDamage"] = { - ["specialCaseData"] = { - }, + ["2800_ChaosDamagePerCorruptedItem"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "implicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["6158_InfernalCryWarcryAreaOfEffectUniquePresence"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["1532_MovementVelocity"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3199255605", - ["text"] = "While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 2, + ["max"] = 10, + }, ["Boots"] = { - ["min"] = 27, - ["max"] = 41, + ["min"] = 2, + ["max"] = 10, }, }, - ["2187_ChanceToBleedUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1538_MaximumEnduranceCharges"] = { ["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"] = "implicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", }, - ["sign"] = "", - }, - ["4639_BlindEffectPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4122616021", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect", + ["sign"] = "+", + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 22, - ["max"] = 29, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["5029_ColdExposureEffectOnHit"] = { + ["1548_IncreasedMaximumPowerCharges"] = { + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3005701891", - ["text"] = "Inflict Cold Exposure on Hit, applying #% to Cold Resistance", + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 11, - ["max"] = 16, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "-", - }, - ["2296_MarkEffectPinnaclePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["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"] = "implicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", }, - ["sign"] = "", - }, - ["5552_EvasionRatingFromHelmetBoots"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_623823763", - ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Gloves"] = { - ["min"] = 33, - ["max"] = 50, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1340_AllResistancesUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1199_CriticalStrikeChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2358153166", - ["text"] = "While a Unique Enemy is in your Presence, #% to all Elemental Resistances", + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, - ["Chest"] = { - ["min"] = 13, - ["max"] = 22, + ["AbyssJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["sign"] = "+", - }, - ["1388_PhysicalDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["AnyJewel"] = { + ["min"] = 8, + ["max"] = 10, }, - ["sign"] = "", }, - ["7743_MinionReflectedDamage"] = { - ["specialCaseData"] = { - }, + ["1582_AvoidShock"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3056045252", - ["text"] = "Minions take #% reduced Reflected Damage", + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, - ["Chest"] = { - ["min"] = 45, - ["max"] = 70, + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", - }, - ["5552_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", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["Gloves"] = { - ["min"] = 57, - ["max"] = 70, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", }, - ["1298_LifeRegenerationPercentPerEnduranceCharge"] = { - ["specialCaseData"] = { - }, + ["331_SupportedByProjectileSpeed"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["id"] = "implicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 0.2, - ["max"] = 0.3, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, }, - }, - ["1404_ChaosDamageLifeLeechPinnaclePresence"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, + }, + ["2801_LifeLeechRatePerCorruptedItem"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_10259064", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life", + ["id"] = "implicit.stat_3815042054", + ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", }, - ["Gloves"] = { - ["min"] = 0.8, - ["max"] = 1.1, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, + }, }, - ["2673_ColdResistancePenetrationPinnaclePresence"] = { + ["906_SpellBlockPercentage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_403285636", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + }, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 4, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 9, - ["max"] = 10, + ["min"] = 2, + ["max"] = 5, }, - ["Helmet"] = { - ["min"] = 9, - ["max"] = 10, + ["Shield"] = { + ["min"] = 2, + ["max"] = 5, }, }, - ["2669_ArmourPenetration"] = { - ["specialCaseData"] = { - }, + ["1606_ReducedChillDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", + ["id"] = "implicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 19, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 5, + }, }, - ["5508_EnemyLifeRegenerationRatePinnaclePresence"] = { + ["1308_MaximumLifeIncreasePercent"] = { ["specialCaseData"] = { }, ["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", - }, - ["Helmet"] = { - ["min"] = 89, - ["max"] = 100, + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", }, ["sign"] = "", - }, - ["4659_BodyDamageTakenPerIntelligence"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 6, + ["max"] = 8, }, + }, + ["1585_AvoidStun"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2874488491", - ["text"] = "1% less Damage Taken per # Intelligence", + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", }, - ["Chest"] = { - ["min"] = 180, - ["max"] = 230, + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", - }, - ["1745_ChanceToShockPinnaclePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2459490852", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 35, - ["max"] = 50, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["sign"] = "", }, - ["928_AttackDamageUniquePresence"] = { + ["2689_LightningResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4061200499", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Attack Damage", + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + }, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 29, - ["max"] = 41, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Helmet"] = { - ["min"] = 29, - ["max"] = 41, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1509_AdditionalPierceUniquePresence"] = { - ["specialCaseData"] = { - }, + ["1952_ReservationEfficiencyForJewel"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3924473787", - ["text"] = "While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets", + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", }, - ["Gloves"] = { + ["AbyssJewel"] = { ["min"] = 2, - ["max"] = 3, + ["max"] = 2, }, - ["sign"] = "", - }, - ["5222_DamagePer100INTUniquePresence"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1894390763", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 2, }, - ["Gloves"] = { - ["min"] = 4, - ["max"] = 5, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "", }, - ["5222_DamagePer100INT"] = { - ["specialCaseData"] = { - }, + ["2796_VaalSkillDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", }, - ["Gloves"] = { - ["min"] = 3, - ["max"] = 4, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["877_ChanceToSuppressSpells"] = { - ["Gloves"] = { + ["BaseJewel"] = { ["min"] = 5, ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { + ["AnyJewel"] = { ["min"] = 5, ["max"] = 10, }, }, - ["3047_PurityOfLightningEffectPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["4427_AvoidMaimChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1445513967", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect", + ["id"] = "implicit.stat_1126826428", + ["text"] = "You cannot be Maimed", }, - ["Chest"] = { - ["min"] = 49, - ["max"] = 60, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["5452_ElusiveEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_240857668", - ["text"] = "#% increased Elusive Effect", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 6, - ["max"] = 17, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["5221_DamagePer100DEXPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["2731_ChargeDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1870591253", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity", + ["id"] = "implicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 6, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 3, + ["max"] = 7, + }, + ["AnyJewel"] = { + ["min"] = 3, + ["max"] = 7, + }, }, - ["2187_ChanceToBleed"] = { + ["976_LocalPhysicalDamagePercent"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 20, }, - ["Gloves"] = { - ["min"] = 5, - ["max"] = 30, + ["Bow"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - }, - ["3789_RallyingCryWarcryEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1381761351", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect", + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 14, - ["max"] = 23, + ["1HSword"] = { + ["min"] = 10, + ["max"] = 20, }, }, - ["1650_PhysicalAddedAsCold"] = { + ["8291_AdditionalCriticalStrikeChanceWithSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "implicit.stat_791835907", + ["text"] = "#% to Spell Critical Strike Chance", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 4, - ["max"] = 6, + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.8, }, + ["sign"] = "+", }, - ["4658_BodyDamageTakenPerDexterityPinnaclePresence"] = { - ["specialCaseData"] = { - }, + ["887_BlockPercent"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2216092051", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", }, - ["Chest"] = { - ["min"] = 140, - ["max"] = 170, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", - }, - ["4394_AttackImpaleChancePinnaclePresence"] = { ["specialCaseData"] = { }, - ["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", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Gloves"] = { - ["min"] = 35, - ["max"] = 50, + ["Staff"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", }, - ["1562_AvoidElementalStatusAilments"] = { - ["specialCaseData"] = { - }, + ["1609_ReducedIgniteDurationOnSelf"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Boots"] = { - ["min"] = 15, - ["max"] = 32, + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, + }, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, }, - ["3043_AngerAuraEffectUniquePresence"] = { - ["specialCaseData"] = { + ["2454_LocalMeleeWeaponRange"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["sign"] = "+", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Bow"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 2, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_778803098", - ["text"] = "While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect", + ["id"] = "implicit.stat_350598685", + ["text"] = "# to Weapon Range", }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 2, }, - ["sign"] = "", - }, - ["1404_ChaosDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { }, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 2, + }, + }, + ["7824_IncreasedAilmentEffectOnEnemies"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["AbyssJewel"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["AnyJewel"] = { + ["min"] = 5, + ["max"] = 7, + }, }, - ["1593_ReducedFreezeDuration"] = { + ["1186_IncreasedCastSpeedFishing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["Helmet"] = { - ["min"] = 33, - ["max"] = 50, + ["FishingRod"] = { + ["min"] = 10, + ["max"] = 20, }, ["sign"] = "", }, - ["4639_BlindEffect"] = { + ["1573_CannotBeIgnited"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", }, - ["Gloves"] = { - ["min"] = 6, - ["max"] = 17, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1509_AdditionalPierce"] = { + ["1115_AddedFireDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 2, + ["Ring"] = { + ["min"] = 5, + ["max"] = 25.5, }, ["sign"] = "", }, - ["8725_ZealotryAuraEffectUniquePresence"] = { + ["2161_PhysicalDamageTakenAsCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3550578554", - ["text"] = "While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect", - }, - ["Chest"] = { - ["min"] = 34, - ["max"] = 48, + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["1745_ChanceToShock"] = { - ["specialCaseData"] = { + ["4928_GainEnduranceChargeOnStunChance"] = { + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "implicit.stat_1582887649", + ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", }, - ["Helmet"] = { + ["2HMace"] = { ["min"] = 5, - ["max"] = 30, + ["max"] = 7, }, - ["sign"] = "", - }, - ["891_SpellBlockPercentagePinnaclePresence"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2996280658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["2HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 11, - ["max"] = 14, + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Chest"] = { - ["min"] = 11, - ["max"] = 14, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, }, }, - ["4264_ArmourFromHelmetGlovesUniquePresence"] = { - ["specialCaseData"] = { + ["1113_LocalColdDamage"] = { + ["Bow"] = { + ["min"] = 14.5, + ["max"] = 43.5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1586470077", - ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves", + ["Wand"] = { + ["min"] = 9.5, + ["max"] = 31.5, + }, + ["2HMace"] = { + ["min"] = 9.5, + ["max"] = 31.5, + }, + ["2HAxe"] = { + ["min"] = 9.5, + ["max"] = 31.5, + }, + ["1HMace"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 45, - ["max"] = 61, + ["Dagger"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, - }, - ["5625_FireExposureEffectOnHit"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 14.5, + ["max"] = 43.5, + }, + ["2HSword"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1309840354", - ["text"] = "Inflict Fire Exposure on Hit, applying #% to Fire Resistance", + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, - ["Gloves"] = { - ["min"] = 11, - ["max"] = 16, + ["1HSword"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, - ["sign"] = "-", - }, - ["2149_PhysicalDamageTakenAsChaosUberUniquePresence"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, - ["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", + ["1HAxe"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, - ["Helmet"] = { - ["min"] = 8, - ["max"] = 10, + ["2HWeapon"] = { + ["min"] = 9.5, + ["max"] = 43.5, + }, + ["1HWeapon"] = { + ["min"] = 9.5, + ["max"] = 31.5, }, - ["sign"] = "", - }, - ["1397_ColdDamageLifeLeechHundredThousand"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + }, + ["325_SupportedByCastOnCrit"] = { + ["Gloves"] = { + ["min"] = 12, + ["max"] = 12, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "implicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", }, - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["2859_PoisonOnHitUniquePresence"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 12, + ["max"] = 12, }, + }, + ["1687_ConvertPhysicalToFire"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2433754249", - ["text"] = "While a Unique Enemy is in your Presence, #% chance to Poison on Hit", + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", }, - ["Gloves"] = { - ["min"] = 20, - ["max"] = 40, + ["Quiver"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "", - }, - }, - ["Corrupted"] = { - ["1946_AreaOfEffectDamageTaken"] = { ["specialCaseData"] = { }, + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, + }, + ["929_IncreasedDexterityStrengthCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3001376862", - ["text"] = "#% reduced Area Damage taken from Hits", + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + }, + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, + }, + ["Belt"] = { ["min"] = 4, ["max"] = 6, }, }, - ["1549_PowerChargeOnCriticalStrikeChance"] = { + ["328_SupportedByStun"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_689720069", + ["text"] = "Socketed Gems are supported by Level # Stun", }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["2HMace"] = { + ["min"] = 6, + ["max"] = 6, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 6, + ["max"] = 6, }, - }, - ["1801_AddedColdDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", - }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 13, - ["max"] = 48.5, + ["1HWeapon"] = { + ["min"] = 6, + ["max"] = 6, + }, + ["1HMace"] = { + ["min"] = 6, + ["max"] = 6, }, }, - ["3053_IncreasedAuraEffectDisciplineCorrupted"] = { + ["2684_ArmourPenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", + ["id"] = "implicit.stat_2495041954", + ["text"] = "Overwhelm #% Physical Damage Reduction", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["AbyssJewel"] = { + ["min"] = 2, + ["max"] = 2, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 2, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, }, }, - ["1783_AddedPhysicalDamageToBowAttacksCorrupted"] = { + ["116_LocalIncreaseSocketedProjectileLevelCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1760576992", - ["text"] = "# to # Added Physical Damage with Bow Attacks", - }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 4.5, - ["max"] = 15.5, + ["id"] = "implicit.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", }, + ["sign"] = "+", }, - ["892_BlockWhileDualWielding"] = { + ["334_SupportedByCriticalMultiplier"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2166444903", - ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", + ["id"] = "implicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 10, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 14, + ["max"] = 14, }, - ["2HWeapon"] = { - ["min"] = 3, - ["max"] = 6, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 14, }, }, - ["2872_MovementSpeedDuringFlaskEffect"] = { - ["specialCaseData"] = { - }, + ["323_SupportedByBlind"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", + ["id"] = "implicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, }, - ["7821_IncreasedAilmentEffectOnEnemies"] = { + ["2795_ImmuneToSilence"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["id"] = "implicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", }, ["AbyssJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", ["BaseJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 1, + ["max"] = 1, }, ["AnyJewel"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 1, + ["max"] = 1, }, }, - ["916_IncreasedStrengthIntelligenceCorrupted"] = { + ["1898_CurseEffectOnYouJewel"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, }, - ["1962_TrapsAllowed"] = { - ["specialCaseData"] = { - }, + ["343_DisplaySocketedGemsGetFasterCast"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2224292784", - ["text"] = "Can have up to # additional Trap placed at a time", + ["id"] = "implicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 10, }, }, - ["3052_IncreasedAuraEffectDeterminationCorrupted"] = { + ["1583_ChanceToAvoidPoison"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, }, - ["1950_ChaosDamageTakenPercentage"] = { + ["4002_PhysicalDamageReductionWhileNotMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", + ["id"] = "implicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", }, ["Chest"] = { - ["min"] = 4, - ["max"] = 6, + ["min"] = 3, + ["max"] = 5, }, ["sign"] = "", }, - ["2549_CorruptFish"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2451060005", - ["text"] = "You can catch Corrupted Fish", - }, - }, - ["3890_BleedingImmunity"] = { - ["specialCaseData"] = { + ["1543_MaximumFrenzyCharges"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", + ["id"] = "implicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", }, - ["Ring"] = { + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Boots"] = { ["min"] = 1, ["max"] = 1, }, }, - ["5306_IncreasedAuraEffectMalevolenceCorrupted"] = { + ["2803_ManaLeechRatePerCorrupteditem"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "implicit.stat_2679819855", + ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["2818_ChanceToTakeCriticalStrike"] = { + ["115_IncreasedSocketedAoEGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_165218607", - ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["id"] = "implicit.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1649_FireDamageAsPortionOfDamage"] = { + ["4305_AdditionalCriticalStrikeChanceWithAttacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have #% to Critical Strike Chance", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 0.5, + ["max"] = 0.8, }, + ["sign"] = "+", }, - ["8725_IncreasedAuraEffectZealotryCorrupted"] = { + ["2797_DamageWhileDead"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4096052153", - ["text"] = "Zealotry has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["id"] = "implicit.stat_3582580206", + ["text"] = "#% increased Damage while Dead", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 30, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["7999_IncreasedProjectileDamageForEachChain"] = { - ["specialCaseData"] = { - }, + ["2687_FireResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1923210508", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained", + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 20, - ["max"] = 25, + ["AbyssJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["1135_AddedLightningDamageSpellsAndAttacks"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Ring"] = { - ["min"] = 7.5, - ["max"] = 28.5, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1661_LifeRegenerationRatePercentage"] = { + ["5120_IncreasedCriticalStrikeUnderFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - }, - ["Helmet"] = { - ["min"] = 1.6, - ["max"] = 2, + ["id"] = "implicit.stat_2898434123", + ["text"] = "#% increased Critical Strike Chance during any Flask Effect", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 35, + ["max"] = 40, + }, }, - ["1564_ChanceToAvoidFreezeAndChill"] = { - ["BaseJewel"] = { + ["3906_ChanceToAvoidBleeding"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + }, + ["AbyssJewel"] = { ["min"] = 20, ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "", - ["AnyJewel"] = { + ["BaseJewel"] = { ["min"] = 20, ["max"] = 25, }, - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["AbyssJewel"] = { + ["AnyJewel"] = { ["min"] = 20, ["max"] = 25, }, - ["Ring"] = { - ["min"] = 10, - ["max"] = 20, - }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 20, - }, + }, + ["1955_ReducedReservationForJewel"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["AnyJewel"] = { + ["min"] = 2, + ["max"] = 2, }, }, - ["1464_ManaGainPerTarget"] = { + ["8332_DodgeSpellHitsWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "implicit.stat_2907896585", + ["text"] = "#% chance to Suppress Spell Damage while moving", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 6, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 6, + ["max"] = 10, }, - ["sign"] = "", }, - ["1101_AddedColdDamageToSpellsAndAttacks"] = { + ["2406_DamageRemovedFromManaBeforeLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 22, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 5, }, ["sign"] = "", }, - ["2443_ProjectileDamageTaken"] = { + ["2558_FishingRarity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1425651005", - ["text"] = "#% reduced Damage taken from Projectile Hits", + ["id"] = "implicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 4, - ["max"] = 6, + ["FishingRod"] = { + ["min"] = 5, + ["max"] = 10, }, + ["sign"] = "", }, - ["2671_ElementalPenetration"] = { + ["8682_YouCannotBeHindered"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_721014846", + ["text"] = "You cannot be Hindered", }, ["AbyssJewel"] = { ["min"] = 1, @@ -43669,585 +62668,587 @@ return { }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 8, - ["max"] = 10, + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 1, }, ["AnyJewel"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1563_ChanceToAvoidFreezeAndChill"] = { + ["131_LocalSocketedWarcryGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", + ["id"] = "implicit.stat_1672793731", + ["text"] = "# to Level of Socketed Warcry Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["3043_IncreasedAuraEffectAngerCorrupted"] = { + ["1522_AdditionalArrowChain"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain # times", + }, + ["sign"] = "+", + ["Quiver"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["1329_IncreasedItemQuantity"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", }, ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 3, + ["max"] = 5, }, ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 3, + ["max"] = 5, }, }, - ["199_SupportedByLifeGainOnHit"] = { + ["1530_ProjectileSpeed"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2032386732", - ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["min"] = 4, + ["max"] = 8, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Wand"] = { + ["min"] = 4, + ["max"] = 8, }, }, - ["315_SupportedByMultistrike"] = { + ["1377_MaximumResistances"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2501237765", - ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { + ["sign"] = "+", + ["Amulet"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2716_ChargeDuration"] = { - ["specialCaseData"] = { + ["1580_AvoidIgnite"] = { + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2839036860", - ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["1941_PhysicalAttackDamageTaken"] = { + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", }, - ["specialCaseData"] = { + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 25, + }, + ["Chest"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "-", ["Amulet"] = { ["min"] = 10, - ["max"] = 17, + ["max"] = 20, }, ["Shield"] = { ["min"] = 10, - ["max"] = 17, + ["max"] = 20, }, }, - ["960_PhysicalDamagePercent"] = { + ["891_ChanceToSuppressSpellsOld"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 25, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 3, + ["max"] = 6, }, - ["sign"] = "", }, - ["2391_DamageRemovedFromManaBeforeLife"] = { + ["1831_AddedChaosDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "implicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", }, ["sign"] = "", - }, - ["915_IncreasedDexterityStrengthCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["Quiver"] = { + ["min"] = 30, + ["max"] = 36, }, + }, + ["887_MonsterBlock"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, - }, - }, - ["914_IncreasedDexterityStrengthCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", }, - ["sign"] = "", ["Amulet"] = { ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["max"] = 5, }, + ["sign"] = "", }, - ["3049_IncreasedAuraEffectGraceCorrupted"] = { + ["1525_AdditionalArrowPierce"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["921_IncreasedDamage"] = { + ["103_LocalIncreaseSocketedGemLevel"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - }, - ["Chest"] = { - ["min"] = 40, - ["max"] = 50, + ["id"] = "implicit.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", }, - ["AbyssJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["3051_IncreasedAuraEffectHatredCorrupted"] = { + ["1689_ConvertPhysicalToCold"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["Ring"] = { - ["min"] = 15, + ["Quiver"] = { + ["min"] = 10, ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, + ["1HWeapon"] = { + ["min"] = 10, ["max"] = 20, }, - ["Belt"] = { - ["min"] = 15, + ["1HMace"] = { + ["min"] = 10, ["max"] = 20, }, }, - ["2181_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - }, + ["123_LocalIncreaseSocketedCurseLevelCorrupted"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 20, - }, - ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 20, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", }, + ["sign"] = "+", }, - ["1235_ReducedExtraDamageFromCrits"] = { + ["127_LocalIncreaseSocketedVaalGemLevel"] = { + ["Gloves"] = { + ["min"] = 1, + ["max"] = 2, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "implicit.stat_1170386874", + ["text"] = "# to Level of Socketed Vaal Gems", + }, + ["Shield"] = { + ["min"] = 1, + ["max"] = 2, + }, + ["Helmet"] = { + ["min"] = 1, + ["max"] = 2, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Chest"] = { - ["min"] = 50, - ["max"] = 50, + ["min"] = 1, + ["max"] = 2, }, - ["Shield"] = { - ["min"] = 20, - ["max"] = 30, + ["Boots"] = { + ["min"] = 1, + ["max"] = 2, }, }, - ["99_IncreaseSocketedDurationGemLevel"] = { + ["330_SupportedByMultistrike"] = { + ["2HMace"] = { + ["min"] = 1, + ["max"] = 1, + }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2115168758", - ["text"] = "# to Level of Socketed Duration Gems", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", - }, - ["1533_IncreasedMaximumPowerCharges"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "implicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, }, ["2HWeapon"] = { ["min"] = 1, ["max"] = 1, }, - ["Helmet"] = { + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HSword"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["8194_ShockEffect"] = { - ["specialCaseData"] = { + ["324_SupportedByMeleeSplash"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 10, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Effect of Shock", + ["1HMace"] = { + ["min"] = 10, + ["max"] = 10, }, - ["Helmet"] = { - ["min"] = 25, - ["max"] = 30, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", - }, - ["7981_IncreasedAuraEffectPrideCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4247488219", - ["text"] = "Pride has #% increased Aura Effect", + ["id"] = "implicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", }, - ["Ring"] = { - ["min"] = 15, - ["max"] = 20, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 10, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 15, - ["max"] = 20, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 10, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["specialCaseData"] = { }, }, - ["2323_FrenzyChargeOnKillChance"] = { + ["326_SupportedByCastOnStun"] = { + ["Gloves"] = { + ["min"] = 12, + ["max"] = 12, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["id"] = "implicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 11, - }, - ["2HWeapon"] = { - ["min"] = 9, - ["max"] = 11, + ["Helmet"] = { + ["min"] = 12, + ["max"] = 12, }, }, - ["1751_CullingStrike"] = { + ["1824_AddedLightningDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2524254339", - ["text"] = "Culling Strike", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 19.5, + ["max"] = 57, }, }, - ["2147_PhysicalDamageTakenAsLightningPercent"] = { + ["120_LocalIncreaseSocketedAuraLevelCorrupted"] = { ["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"] = "implicit.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", }, + ["sign"] = "+", }, - ["1567_AvoidShock"] = { + ["3064_IncreasedAuraEffectGraceCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["316_SupportedByProjectileSpeed"] = { + ["119_LocalIncreaseSocketedMinionGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["id"] = "implicit.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["1136_IncreasedAttackSpeed"] = { - ["Gloves"] = { - ["min"] = 8, - ["max"] = 10, + ["1376_ChaosResistance"] = { + ["BaseJewel"] = { + ["min"] = 1, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["2HMace"] = { + ["min"] = 2, + ["max"] = 4, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 10, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 10, + ["Bow"] = { + ["min"] = 2, + ["max"] = 4, }, - }, - ["354_SocketedSkillsManaMultiplier"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 90, - ["max"] = 90, + ["1HSword"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Chest"] = { - ["min"] = 95, - ["max"] = 95, + ["Wand"] = { + ["min"] = 2, + ["max"] = 4, }, - }, - ["2226_CurseOnHitDespair"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 2, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", + ["2HSword"] = { + ["min"] = 2, + ["max"] = 4, }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["2HAxe"] = { + ["min"] = 2, + ["max"] = 4, }, - }, - ["1592_ReducedShockDuration"] = { - ["specialCaseData"] = { + ["FishingRod"] = { + ["min"] = 2, + ["max"] = 4, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_99927264", - ["text"] = "#% reduced Shock Duration on you", + ["Claw"] = { + ["min"] = 2, + ["max"] = 4, }, - ["sign"] = "", - }, - ["2785_ChaosDamagePerCorruptedItem"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4004011170", - ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["1HWeapon"] = { + ["min"] = 2, + ["max"] = 4, + }, + ["AnyJewel"] = { + ["min"] = 1, + ["max"] = 4, }, - ["sign"] = "", }, - ["1517_MovementVelocity"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["338_SupportedByReducedMana"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 2, + ["2HAxe"] = { + ["min"] = 10, ["max"] = 10, }, - ["Boots"] = { - ["min"] = 2, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 10, ["max"] = 10, }, - }, - ["1184_CriticalStrikeChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", }, - ["AbyssJewel"] = { - ["min"] = 8, + ["Bow"] = { + ["min"] = 10, ["max"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 8, + ["1HWeapon"] = { + ["min"] = 10, ["max"] = 10, }, - ["AnyJewel"] = { - ["min"] = 8, + ["1HSword"] = { + ["min"] = 10, ["max"] = 10, }, }, - ["2786_LifeLeechRatePerCorruptedItem"] = { - ["specialCaseData"] = { + ["2698_ChanceToGainOnslaughtOnKill"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 15, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3815042054", - ["text"] = "#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", + ["1HMace"] = { + ["min"] = 10, + ["max"] = 15, }, ["sign"] = "", - }, - ["2674_LightningResistancePenetration"] = { + ["Dagger"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 15, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 10, + ["max"] = 15, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { }, }, - ["2227_CurseOnHitEnfeeble"] = { + ["2242_CurseOnHitEnfeeble"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -44260,490 +63261,630 @@ return { ["max"] = 1, }, }, - ["1570_AvoidStun"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["1769_HitsCauseMonsterFlee"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 5, }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Wand"] = { + ["min"] = 5, + ["max"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 5, + ["max"] = 5, }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Claw"] = { + ["min"] = 5, + ["max"] = 5, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 5, }, - }, - ["1937_ReservationEfficiencyForJewel"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "implicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 5, + ["max"] = 5, }, - ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 5, }, - ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 5, }, - }, - ["1399_LightningDamageLifeLeechPermyriad"] = { ["2HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["min"] = 5, + ["max"] = 5, }, ["1HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, - }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["min"] = 5, + ["max"] = 5, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, - }, - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, - }, }, - ["2781_VaalSkillDamage"] = { + ["2164_PhysicalDamageTakenAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["4413_AvoidMaimChance"] = { + ["1259_ImmuneToKnockback"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1126826428", - ["text"] = "You cannot be Maimed", + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", }, - ["AbyssJewel"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["specialCaseData"] = { - }, - ["BaseJewel"] = { + ["Boots"] = { ["min"] = 1, ["max"] = 1, }, - ["AnyJewel"] = { + }, + ["3069_CannotBePoisoned"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + }, + ["Ring"] = { ["min"] = 1, ["max"] = 1, }, }, - ["6254_LifeRegenerationWhileMoving"] = { + ["8003_ProjectileDamagePerEnemyPierced"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2841027131", - ["text"] = "Regenerate # Life per second while moving", + ["id"] = "implicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", }, ["sign"] = "", - ["Boots"] = { - ["min"] = 100, - ["max"] = 100, + ["Quiver"] = { + ["min"] = 8, + ["max"] = 10, }, }, - ["311_SupportedByCastOnStun"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 12, + ["8780_PointBlank"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1079148723", - ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2896346114", + ["text"] = "Point Blank", }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 12, - ["max"] = 12, + ["Quiver"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["313_SupportedByStun"] = { + ["5444_IncreasedWeaponElementalDamagePercent"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_689720069", - ["text"] = "Socketed Gems are supported by Level # Stun", + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["Amulet"] = { ["min"] = 6, - ["max"] = 6, + ["max"] = 24, }, - ["2HWeapon"] = { + ["Ring"] = { ["min"] = 6, - ["max"] = 6, + ["max"] = 12, }, }, - ["8796_ResoluteTechnique"] = { - ["specialCaseData"] = { + ["1104_LocalFireDamage"] = { + ["Staff"] = { + ["min"] = 17.5, + ["max"] = 50, + }, + ["Bow"] = { + ["min"] = 17.5, + ["max"] = 50, + }, + ["2HMace"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["1HSword"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["1HMace"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["Claw"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["2HSword"] = { + ["min"] = 11.5, + ["max"] = 38, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3943945975", - ["text"] = "Resolute Technique", + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + }, + ["Wand"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["2HAxe"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["1HAxe"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["2HWeapon"] = { + ["min"] = 11.5, + ["max"] = 50, }, ["1HWeapon"] = { + ["min"] = 11.5, + ["max"] = 38, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + }, + ["215_SocketedGemsSupportedByLifetap"] = { + ["2HMace"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { + ["1HMace"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["1593_ReducedFreezeDuration"] = { - ["specialCaseData"] = { + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["Bow"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - }, - ["4914_GainEnduranceChargeOnStunChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1582887649", - ["text"] = "#% chance to gain an Endurance Charge when you Stun an Enemy", + ["id"] = "implicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 1, + ["max"] = 1, + }, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1690_MinionDamage"] = { + ["1614_AreaOfEffect"] = { ["BaseJewel"] = { ["min"] = 4, ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["2HMace"] = { + ["min"] = 25, + ["max"] = 30, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 25, + ["max"] = 30, }, - ["Helmet"] = { + ["Claw"] = { ["min"] = 15, ["max"] = 20, }, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + }, ["AbyssJewel"] = { ["min"] = 4, ["max"] = 5, }, - ["specialCaseData"] = { + ["1HAxe"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", - ["Amulet"] = { + ["1HSword"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Wand"] = { ["min"] = 15, ["max"] = 20, }, + ["Staff"] = { + ["min"] = 25, + ["max"] = 30, + }, + ["2HSword"] = { + ["min"] = 25, + ["max"] = 30, + }, ["AnyJewel"] = { ["min"] = 4, ["max"] = 5, }, - }, - ["308_SupportedByBlind"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 15, + ["max"] = 20, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", + ["Bow"] = { + ["min"] = 25, + ["max"] = 30, }, - ["2HWeapon"] = { - ["min"] = 10, + ["Belt"] = { + ["min"] = 4, ["max"] = 10, }, - ["sign"] = "", - }, - ["1171_IncreasedCastSpeedFishing"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 25, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 15, + ["max"] = 20, }, - ["sign"] = "", }, - ["4717_CorruptedBloodImmunity"] = { + ["2196_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 20, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 20, }, ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 20, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 20, + ["max"] = 20, }, }, - ["2669_ArmourPenetration"] = { + ["1609_ReducedBurnDuration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2495041954", - ["text"] = "Overwhelm #% Physical Damage Reduction", - }, - ["AbyssJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", }, ["specialCaseData"] = { }, ["sign"] = "", ["BaseJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 3, + ["max"] = 5, }, ["AnyJewel"] = { - ["min"] = 2, - ["max"] = 2, + ["min"] = 3, + ["max"] = 5, }, }, - ["1365_ChillEffectivenessOnSelf"] = { + ["126_IncreasedSocketedTrapOrMineGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", + ["id"] = "implicit.stat_150668988", + ["text"] = "# to Level of Socketed Trap or Mine Gems", }, - ["sign"] = "", + ["sign"] = "+", }, - ["2782_DamageWhileDead"] = { + ["3003_AttackSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3582580206", - ["text"] = "#% increased Damage while Dead", + ["id"] = "implicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", }, ["sign"] = "", - }, - ["3074_ColdDamageTakenPercentage"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["min"] = 8, + ["max"] = 12, }, + }, + ["901_BlockingBlocksSpells"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", }, - ["Chest"] = { - ["min"] = 4, - ["max"] = 6, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["Shield"] = { + ["min"] = 6, + ["max"] = 8, + }, }, - ["1883_CurseEffectOnYouJewel"] = { + ["1666_LightningDamageAsPortionOfDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 8, + ["max"] = 12, + }, }, - ["1568_ChanceToAvoidPoison"] = { + ["5840_AddedEvasionWhileMovingCorrupted"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["id"] = "implicit.stat_3825877290", + ["text"] = "# to Global Evasion Rating while moving", }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 35, + ["max"] = 322, + }, + }, + ["340_SupportedByFortify"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 10, }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, }, - }, - ["8288_AdditionalCriticalStrikeChanceWithSpells"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 10, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_791835907", - ["text"] = "#% to Spell Critical Strike Chance", + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.8, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "+", - }, - ["1314_IncreasedItemQuantity"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, - ["Ring"] = { - ["min"] = 3, - ["max"] = 5, + }, + ["1405_FireDamageLifeLeechPermyriad"] = { + ["2HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, - }, - ["Belt"] = { - ["min"] = 3, - ["max"] = 5, + ["Dagger"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - }, - ["5006_ChillEffect"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", + ["id"] = "implicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + }, + ["1HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["1HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["Wand"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Staff"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["1HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["Helmet"] = { - ["min"] = 25, - ["max"] = 30, + ["min"] = 0.5, + ["max"] = 0.5, + }, + ["2HWeapon"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["1HWeapon"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Claw"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, - ["sign"] = "", }, - ["1591_ReducedChillDuration"] = { + ["3088_LightningDamageTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "implicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + }, + ["Chest"] = { + ["min"] = 4, + ["max"] = 6, }, ["sign"] = "", }, - ["116_LocalSocketedWarcryGemLevel"] = { - ["specialCaseData"] = { - }, + ["968_SpellDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1672793731", - ["text"] = "# to Level of Socketed Warcry Gems", + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 50, + ["max"] = 60, + }, + ["1HWeapon"] = { + ["min"] = 50, + ["max"] = 60, }, - ["sign"] = "+", }, - ["1507_AdditionalArrowChain"] = { + ["2680_ImmunityToBlind"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1001077145", - ["text"] = "Arrows Chain # times", + ["id"] = "implicit.stat_1436284579", + ["text"] = "Cannot be Blinded", }, - ["sign"] = "+", - ["Quiver"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2788_ManaLeechRatePerCorrupteditem"] = { + ["1298_GlobalEnergyShieldPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2679819855", - ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, ["sign"] = "", - }, - ["1340_AllResistancesCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - }, - ["Ring"] = { - ["min"] = 14, - ["max"] = 16, - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 14, - ["max"] = 16, - }, ["Belt"] = { - ["min"] = 14, - ["max"] = 16, + ["min"] = 8, + ["max"] = 10, }, }, - ["2672_FireResistancePenetration"] = { + ["2688_ColdResistancePenetration"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", }, ["AbyssJewel"] = { ["min"] = 1, @@ -44761,1931 +63902,2181 @@ return { ["max"] = 1, }, }, - ["323_SupportedByReducedMana"] = { + ["1129_ChaosDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1866911844", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + }, + ["Ring"] = { + ["min"] = 1.5, + ["max"] = 11, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["BaseJewel"] = { + ["min"] = 1.5, + ["max"] = 2, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["AnyJewel"] = { + ["min"] = 1.5, + ["max"] = 2, }, }, - ["1940_ReducedReservationForJewel"] = { + ["4766_CastSpeedDuringFlaskEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2587176568", - ["text"] = "#% increased Reservation Efficiency of Skills", + ["id"] = "implicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", }, ["sign"] = "", - }, - ["100_IncreasedSocketedAoEGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", + ["Belt"] = { + ["min"] = 8, + ["max"] = 12, }, - ["sign"] = "+", }, - ["872_MonsterBlock"] = { + ["5020_ChillEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 5, + ["Helmet"] = { + ["min"] = 25, + ["max"] = 30, }, ["sign"] = "", }, - ["8679_YouCannotBeHindered"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_721014846", - ["text"] = "You cannot be Hindered", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["1203_LocalCriticalStrikeChance"] = { + ["1HSword"] = { + ["min"] = 14, + ["max"] = 18, }, ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 14, + ["max"] = 18, }, - }, - ["101_LocalIncreaseSocketedProjectileLevelCorrupted"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 14, + ["max"] = 18, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", }, - ["sign"] = "+", - }, - ["1515_ProjectileSpeed"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 14, + ["max"] = 18, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["Bow"] = { + ["min"] = 14, + ["max"] = 18, }, - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 8, + ["Wand"] = { + ["min"] = 14, + ["max"] = 18, }, - ["sign"] = "", - }, - ["1565_AvoidIgnite"] = { - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["2HWeapon"] = { + ["min"] = 14, + ["max"] = 18, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 18, }, - ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Staff"] = { + ["min"] = 14, + ["max"] = 18, }, + }, + ["8728_IncreasedAuraEffectZealotryCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["id"] = "implicit.stat_4096052153", + ["text"] = "Zealotry has #% increased Aura Effect", }, - ["Chest"] = { - ["min"] = 10, + ["Ring"] = { + ["min"] = 15, ["max"] = 20, }, + ["specialCaseData"] = { + }, + ["sign"] = "", ["Amulet"] = { - ["min"] = 10, + ["min"] = 15, ["max"] = 20, }, - ["Shield"] = { - ["min"] = 10, + ["Belt"] = { + ["min"] = 15, ["max"] = 20, }, }, - ["1212_CriticalStrikeMultiplier"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", + ["1018_LocalPhysicalDamage"] = { + ["Wand"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, - ["1HWeapon"] = { - ["min"] = 25, - ["max"] = 30, + ["Bow"] = { + ["min"] = 1.5, + ["max"] = 11, }, - ["sign"] = "+", - }, - ["3891_ChanceToAvoidBleeding"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["1HSword"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, - ["AbyssJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Staff"] = { + ["min"] = 1.5, + ["max"] = 11, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, - ["AnyJewel"] = { - ["min"] = 20, - ["max"] = 25, + ["Claw"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, - }, - ["2139_EnemiesCantLifeLeech"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1.5, + ["max"] = 11, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4293455942", - ["text"] = "Enemies Cannot Leech Life From you", - }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", }, - }, - ["1754_HitsCauseMonsterFlee"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3181974858", - ["text"] = "#% chance to Cause Monsters to Flee", + ["2HAxe"] = { + ["min"] = 1.5, + ["max"] = 11, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 1.5, + ["max"] = 11, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["1HAxe"] = { + ["min"] = 1.5, + ["max"] = 9.5, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 5, + ["min"] = 1.5, + ["max"] = 11, + }, + ["1HWeapon"] = { + ["min"] = 1.5, + ["max"] = 9.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, }, - ["314_SupportedByAccuracy"] = { + ["1808_AddedFireDamageToBowAttacksCorrupted"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["id"] = "implicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", }, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 16, + ["max"] = 54, + }, + }, + ["1665_ColdDamageAsPortionOfDamage"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", }, - ["2HWeapon"] = { - ["min"] = 10, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 8, ["max"] = 12, }, }, - ["1674_ConvertPhysicalToCold"] = { + ["892_ChanceToSuppressSpells"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "implicit.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", }, ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, + ["min"] = 8, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 4, + ["max"] = 9, }, }, - ["105_LocalIncreaseSocketedAuraLevelCorrupted"] = { + ["1629_SkillEffectDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + }, + ["sign"] = "", + ["Belt"] = { + ["min"] = 5, + ["max"] = 15, }, - ["sign"] = "+", }, - ["914_IncreasedStrengthIntelligenceCorrupted"] = { + ["332_SupportedByLifeLeech"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["id"] = "implicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["1HWeapon"] = { + ["min"] = 15, + ["max"] = 15, }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["Claw"] = { + ["min"] = 15, + ["max"] = 15, }, }, - ["1390_FireDamageLifeLeechPermyriad"] = { - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["1414_LightningDamageLifeLeechPermyriad"] = { + ["2HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["1HMace"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Bow"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", + ["id"] = "implicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + }, + ["1HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, }, ["Amulet"] = { ["min"] = 0.2, ["max"] = 0.5, }, + ["1HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, ["Quiver"] = { ["min"] = 0.2, ["max"] = 0.5, }, + ["Wand"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["Staff"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HSword"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, + ["2HAxe"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, ["specialCaseData"] = { }, - ["sign"] = "", + ["Helmet"] = { + ["min"] = 0.5, + ["max"] = 0.5, + }, + ["2HWeapon"] = { + ["min"] = 0.2, + ["max"] = 0.2, + }, ["1HWeapon"] = { ["min"] = 0.2, ["max"] = 0.2, }, - ["2HWeapon"] = { + ["Claw"] = { ["min"] = 0.2, ["max"] = 0.2, }, }, - ["2149_PhysicalDamageTakenAsChaos"] = { - ["specialCaseData"] = { - }, + ["3077_UnholyMightOnKillPercentChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["Dagger"] = { + ["min"] = 10, + ["max"] = 15, + }, + ["Wand"] = { + ["min"] = 10, + ["max"] = 15, }, }, - ["872_BlockPercent"] = { + ["955_DamageOverTime"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 50, + ["max"] = 60, }, - ["Amulet"] = { - ["min"] = 2, - ["max"] = 4, + ["1HWeapon"] = { + ["min"] = 50, + ["max"] = 60, }, - ["sign"] = "", }, - ["1672_ConvertPhysicalToFire"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - }, - ["Quiver"] = { + ["226_SupportedByOnslaught"] = { + ["2HMace"] = { ["min"] = 10, - ["max"] = 20, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { + ["2HAxe"] = { ["min"] = 10, - ["max"] = 20, + ["max"] = 10, }, - }, - ["144_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["id"] = "implicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Onslaught", }, ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 10, + ["max"] = 10, }, - ["sign"] = "", - }, - ["876_ChanceToSuppressSpellsOld"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, }, + }, + ["369_SocketedSkillsManaMultiplier"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 3, - ["max"] = 6, + ["specialCaseData"] = { }, - }, - ["1528_MaximumFrenzyCharges"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Helmet"] = { + ["min"] = 90, + ["max"] = 90, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["Chest"] = { + ["min"] = 95, + ["max"] = 95, }, + }, + ["1298_MaximumEnergyShieldPercent"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", }, + ["sign"] = "", }, - ["321_SupportedByWeaponElementalDamage"] = { + ["1718_MaximumBlockChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["id"] = "implicit.stat_4124805414", + ["text"] = "#% to maximum Chance to Block Attack Damage", }, - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 12, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1318_IncreasedItemRarity"] = { + ["931_IncreasedIntelligenceDexterityCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", }, ["Ring"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 4, + ["max"] = 6, }, ["Belt"] = { - ["min"] = 20, - ["max"] = 30, + ["min"] = 4, + ["max"] = 6, }, }, - ["2543_FishingRarity"] = { - ["specialCaseData"] = { - }, + ["1691_MonsterConvertPhysicalDamageToLightning"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + }, + ["Quiver"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 20, + }, }, - ["2780_ImmuneToSilence"] = { + ["1380_ChillEffectivenessOnSelf"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1654414582", - ["text"] = "You cannot be Cursed with Silence", - }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "implicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", }, ["specialCaseData"] = { }, + ["sign"] = "", ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 20, + ["max"] = 25, }, ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 20, + ["max"] = 25, }, }, - ["94_LocalIncreaseSocketedColdGemLevelCorrupted"] = { - ["specialCaseData"] = { - }, + ["1582_ReducedShockChance"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Chest"] = { + ["min"] = 10, + ["max"] = 20, + }, + ["Belt"] = { + ["min"] = 10, + ["max"] = 20, }, - ["sign"] = "+", }, - ["8329_DodgeSpellHitsWhileMoving"] = { - ["specialCaseData"] = { + ["329_SupportedByAccuracy"] = { + ["Wand"] = { + ["min"] = 12, + ["max"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2907896585", - ["text"] = "#% chance to Suppress Spell Damage while moving", + ["1HSword"] = { + ["min"] = 12, + ["max"] = 12, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 6, + ["2HMace"] = { + ["min"] = 10, ["max"] = 10, }, - }, - ["1361_ChaosResistance"] = { + ["Claw"] = { + ["min"] = 12, + ["max"] = 12, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 12, + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["Bow"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 10, + ["max"] = 12, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "implicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", }, - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 12, + ["max"] = 12, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["Staff"] = { + ["min"] = 10, + ["max"] = 10, + }, + ["1HAxe"] = { + ["min"] = 10, + ["max"] = 12, }, ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["min"] = 10, + ["max"] = 12, }, - }, - ["108_LocalIncreaseSocketedCurseLevelCorrupted"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", + ["specialCaseData"] = { }, - ["sign"] = "+", }, - ["2542_FishingQuantity"] = { - ["specialCaseData"] = { + ["1124_LocalLightningDamage"] = { + ["Bow"] = { + ["min"] = 18.5, + ["max"] = 58, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", + ["Wand"] = { + ["min"] = 14, + ["max"] = 41, }, - ["sign"] = "", - }, - ["1594_ReducedBurnDuration"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["min"] = 14, + ["max"] = 41, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["2HAxe"] = { + ["min"] = 14, + ["max"] = 41, + }, + ["1HMace"] = { + ["min"] = 14, + ["max"] = 41, }, ["sign"] = "", - }, - ["1512_AdditionalArrows"] = { + ["Dagger"] = { + ["min"] = 14, + ["max"] = 41, + }, + ["Staff"] = { + ["min"] = 18.5, + ["max"] = 58, + }, + ["2HSword"] = { + ["min"] = 14, + ["max"] = 41, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 14, + ["max"] = 41, }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + ["Claw"] = { + ["min"] = 14, + ["max"] = 41, + }, + ["1HAxe"] = { + ["min"] = 14, + ["max"] = 41, }, - ["sign"] = "", ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 14, + ["max"] = 58, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 41, }, - }, - ["1816_AddedChaosDamageToBowAttacksCorrupted"] = { ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", }, + }, + ["3068_IncreasedAuraEffectDisciplineCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + }, + ["Ring"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["specialCaseData"] = { }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 30, - ["max"] = 36, + ["Amulet"] = { + ["min"] = 15, + ["max"] = 20, + }, + ["Belt"] = { + ["min"] = 15, + ["max"] = 20, }, }, - ["2189_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["1526_AdditionalProjectilesCorrupted"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3944782785", - ["text"] = "#% increased Attack Damage against Bleeding Enemies", + ["id"] = "implicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 30, - ["max"] = 40, - }, - ["2HWeapon"] = { - ["min"] = 30, - ["max"] = 40, + ["min"] = 1, + ["max"] = 1, }, }, - ["2146_PhysicalDamageTakenAsCold"] = { + ["1611_BurnDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 40, }, + ["sign"] = "", }, - ["891_SpellBlockPercentage"] = { + ["1333_IncreasedItemRarity"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 4, + ["Ring"] = { + ["min"] = 20, + ["max"] = 30, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 2, - ["max"] = 5, + ["min"] = 20, + ["max"] = 30, }, - ["Shield"] = { - ["min"] = 2, - ["max"] = 5, + ["Belt"] = { + ["min"] = 20, + ["max"] = 30, }, }, - ["2673_ColdResistancePenetration"] = { + ["114_IncreaseSocketedDurationGemLevel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "implicit.stat_2115168758", + ["text"] = "# to Level of Socketed Duration Gems", }, - ["AbyssJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "+", + }, + ["930_IncreasedIntelligenceDexterityCorrupted"] = { + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + }, + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, }, ["specialCaseData"] = { }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, }, - ["AnyJewel"] = { - ["min"] = 1, - ["max"] = 1, + ["Belt"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["1114_ChaosDamage"] = { - ["specialCaseData"] = { - }, + ["2168_PercentDamageGoesToMana"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "implicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", }, ["Ring"] = { - ["min"] = 1.5, - ["max"] = 11, + ["min"] = 3, + ["max"] = 6, }, - ["sign"] = "", - }, - ["1283_GlobalEnergyShieldPercent"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - }, ["sign"] = "", - ["Belt"] = { - ["min"] = 8, - ["max"] = 10, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["Shield"] = { + ["min"] = 3, + ["max"] = 6, }, }, - ["325_SupportedByFortify"] = { + ["2236_CurseOnHitLevelVulnerability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1362_MaximumResistances"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["1579_ChanceToAvoidFreezeAndChill"] = { + ["BaseJewel"] = { + ["min"] = 20, + ["max"] = 25, }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["AnyJewel"] = { + ["min"] = 20, + ["max"] = 25, }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 10, + ["max"] = 20, }, - }, - ["3048_IncreasedAuraEffectWrathCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", + ["AbyssJewel"] = { + ["min"] = 20, + ["max"] = 25, }, ["Ring"] = { - ["min"] = 15, + ["min"] = 10, ["max"] = 20, }, - ["specialCaseData"] = { - }, - ["sign"] = "", ["Amulet"] = { - ["min"] = 15, + ["min"] = 10, ["max"] = 20, }, - ["Belt"] = { - ["min"] = 15, - ["max"] = 20, + ["tradeMod"] = { + ["type"] = "implicit", + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", }, }, - ["3073_LightningDamageTaken"] = { - ["specialCaseData"] = { + ["907_BlockWhileDualWielding"] = { + ["2HMace"] = { + ["min"] = 3, + ["max"] = 6, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", + ["1HMace"] = { + ["min"] = 3, + ["max"] = 6, }, - ["Chest"] = { - ["min"] = 4, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 3, ["max"] = 6, }, - ["sign"] = "", - }, - ["5105_IncreasedCriticalStrikeUnderFlaskEffect"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["1HSword"] = { + ["min"] = 3, + ["max"] = 6, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2898434123", - ["text"] = "#% increased Critical Strike Chance during any Flask Effect", + ["id"] = "implicit.stat_2166444903", + ["text"] = "#% Chance to Block Attack Damage while Dual Wielding", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 35, - ["max"] = 40, + ["Wand"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["2HAxe"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["1HAxe"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 6, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 10, + }, + ["specialCaseData"] = { }, }, - ["1599_AreaOfEffect"] = { - ["BaseJewel"] = { + ["1186_IncreasedCastSpeed"] = { + ["Gloves"] = { ["min"] = 4, - ["max"] = 5, + ["max"] = 10, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 12, + ["max"] = 15, }, ["sign"] = "", - ["AnyJewel"] = { - ["min"] = 4, - ["max"] = 5, + ["Staff"] = { + ["min"] = 12, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["AbyssJewel"] = { + ["specialCaseData"] = { + }, + ["Ring"] = { ["min"] = 4, - ["max"] = 5, + ["max"] = 10, }, ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 30, + ["min"] = 12, + ["max"] = 15, }, ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 20, + ["min"] = 12, + ["max"] = 15, }, - ["Belt"] = { + ["Shield"] = { ["min"] = 4, - ["max"] = 10, + ["max"] = 6, }, }, - ["309_SupportedByMeleeSplash"] = { - ["specialCaseData"] = { - }, + ["159_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["id"] = "implicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["5825_AddedEvasionWhileMovingCorrupted"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["930_IncreasedDexterityStrengthCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_3825877290", - ["text"] = "# to Global Evasion Rating while moving", + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 35, - ["max"] = 322, + ["Ring"] = { + ["min"] = 4, + ["max"] = 6, }, - }, - ["1510_AdditionalArrowPierce"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 4, + ["max"] = 6, }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Belt"] = { + ["min"] = 4, + ["max"] = 6, }, }, - ["8000_ProjectileDamagePerEnemyPierced"] = { + ["6256_LifeRegenerationWhileMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", + ["id"] = "implicit.stat_2841027131", + ["text"] = "Regenerate # Life per second while moving", }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 10, + ["Boots"] = { + ["min"] = 100, + ["max"] = 100, }, }, - ["1100_AddedFireDamageSpellsAndAttacks"] = { - ["specialCaseData"] = { + ["1154_LocalIncreasedAttackSpeed"] = { + ["2HMace"] = { + ["min"] = 5, + ["max"] = 7, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Ring"] = { + ["1HSword"] = { ["min"] = 5, - ["max"] = 25.5, + ["max"] = 7, + }, + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 7, }, ["sign"] = "", - }, - ["1558_CannotBeIgnited"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Bow"] = { + ["min"] = 3, + ["max"] = 7, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 7, }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HWeapon"] = { + ["min"] = 3, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 7, + }, + ["Wand"] = { + ["min"] = 3, + ["max"] = 7, }, }, - ["1293_MaximumLifeIncreasePercent"] = { + ["2557_FishingQuantity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 6, - ["max"] = 8, + ["FishingRod"] = { + ["min"] = 5, + ["max"] = 10, }, + ["sign"] = "", }, - ["2988_AttackSpeedDuringFlaskEffect"] = { + ["1664_FireDamageAsPortionOfDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", }, ["sign"] = "", - ["Belt"] = { + ["Quiver"] = { ["min"] = 8, ["max"] = 12, }, }, - ["1511_AdditionalProjectilesCorrupted"] = { + ["4003_AddedArmourWhileStationary"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", + ["id"] = "implicit.stat_2551779822", + ["text"] = "# Armour while stationary", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 35, + ["max"] = 322, }, }, - ["953_SpellDamage"] = { - ["specialCaseData"] = { - }, + ["336_SupportedByWeaponElementalDamage"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "implicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", }, - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 60, + ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 12, + ["max"] = 12, + }, + ["1HMace"] = { + ["min"] = 12, + ["max"] = 12, + }, }, - ["8777_PointBlank"] = { + ["2154_EnemiesCantLifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_2896346114", - ["text"] = "Point Blank", + ["id"] = "implicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", }, - ["Quiver"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, }, - ["200_SocketedGemsSupportedByLifetap"] = { + ["8799_ResoluteTechnique"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, + }, ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_1079239905", - ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["id"] = "implicit.stat_3943945975", + ["text"] = "Resolute Technique", + }, + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { + ["2HWeapon"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { + ["1HWeapon"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2153_PercentDamageGoesToMana"] = { + ["1355_AllResistancesCorrupted"] = { ["tradeMod"] = { ["type"] = "implicit", - ["id"] = "implicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", }, ["Ring"] = { - ["min"] = 3, - ["max"] = 6, + ["min"] = 14, + ["max"] = 16, }, ["specialCaseData"] = { }, - ["sign"] = "", + ["sign"] = "+", ["Amulet"] = { - ["min"] = 3, - ["max"] = 6, + ["min"] = 14, + ["max"] = 16, }, - ["Shield"] = { - ["min"] = 3, - ["max"] = 6, + ["Belt"] = { + ["min"] = 14, + ["max"] = 16, }, }, - ["1651_LightningDamageAsPortionOfDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + }, + ["Scourge"] = { + ["8105_ChaosResistancePenetration"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 5, }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["Dagger"] = { + ["min"] = 3, + ["max"] = 5, }, - }, - ["1171_IncreasedCastSpeed"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["type"] = "scourge", + ["id"] = "scourge.stat_4264312960", + ["text"] = "Damage Penetrates #% Chaos Resistance", + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["Wand"] = { + ["min"] = 3, + ["max"] = 5, }, ["2HWeapon"] = { - ["min"] = 12, - ["max"] = 15, + ["min"] = 6, + ["max"] = 8, }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 10, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 5, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 12, - ["max"] = 15, + }, + ["5280_DamageTakenGainedAsLife"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["min"] = 4, - ["max"] = 6, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 12, }, + ["sign"] = "", }, - ["104_LocalIncreaseSocketedMinionGemLevel"] = { + ["8760_DivineShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["type"] = "scourge", + ["id"] = "scourge.stat_2048995720", + ["text"] = "Divine Shield", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "+", }, - ["320_SupportedByFork"] = { + ["357_DisplaySupportedByAddedColdDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2062753054", - ["text"] = "Socketed Gems are supported by Level # Fork", + ["type"] = "scourge", + ["id"] = "scourge.stat_4020144606", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", }, - ["2HWeapon"] = { + ["Gloves"] = { ["min"] = 1, - ["max"] = 1, + ["max"] = 22, }, ["sign"] = "", }, - ["1395_ColdDamageLifeLeechPermyriad"] = { - ["Helmet"] = { - ["min"] = 0.5, - ["max"] = 0.5, + ["8777_MinionInstability"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["type"] = "scourge", + ["id"] = "scourge.stat_433293234", + ["text"] = "Minion Instability", }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["1694_PhysicalDamageConvertedToChaos"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", }, - ["2HWeapon"] = { - ["min"] = 0.2, - ["max"] = 0.2, + ["Gloves"] = { + ["min"] = 25, + ["max"] = 25, }, + ["sign"] = "", }, - ["1244_ImmuneToKnockback"] = { + ["8797_WindDancer"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", + ["type"] = "scourge", + ["id"] = "scourge.stat_4170338365", + ["text"] = "Wind Dancer", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + }, + ["1486_MaximumManaOnKillPercent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + }, + ["Chest"] = { + ["min"] = 3, + ["max"] = 4, }, + ["sign"] = "", }, - ["3054_CannotBePoisoned"] = { + ["1372_LightningResistance"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 35, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 35, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["type"] = "scourge", + ["id"] = "scourge.stat_1671376347", + ["text"] = "#% to Lightning Resistance", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 35, }, - }, - ["1793_AddedFireDamageToBowAttacksCorrupted"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["1HSword"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", ["Quiver"] = { - ["min"] = 16, - ["max"] = 54, + ["min"] = 18, + ["max"] = 35, }, - }, - ["1614_SkillEffectDuration"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["Staff"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 15, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 35, }, - }, - ["2665_ImmunityToBlind"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1436284579", - ["text"] = "Cannot be Blinded", + ["Claw"] = { + ["min"] = 18, + ["max"] = 35, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 18, + ["max"] = 35, }, }, - ["93_LocalIncreaseSocketedFireGemLevelCorrupted"] = { + ["1204_CriticalStrikeChanceWithBows"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["type"] = "scourge", + ["id"] = "scourge.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 17, + ["max"] = 25, }, - ["sign"] = "+", }, - ["3062_UnholyMightOnKillPercentChance"] = { + ["5301_DaytimeFishSize"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "scourge", + ["id"] = "scourge.stat_1771018579", + ["text"] = "#% increased Size of Fish caught during Daytime", }, - ["1HWeapon"] = { + ["FishingRod"] = { ["min"] = 10, - ["max"] = 15, + ["max"] = 30, }, ["sign"] = "", }, - ["2220_CurseOnHitLevelTemporalChains"] = { + ["8774_LetheShade"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3433724931", - ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "scourge", + ["id"] = "scourge.stat_1678358883", + ["text"] = "Lethe Shade", }, - ["Gloves"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1523_MaximumEnduranceCharges"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - }, + ["4654_BlindEnemiesWhenHit"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_26216403", + ["text"] = "#% chance to Blind Enemies when they Hit you", }, + ["sign"] = "", ["Boots"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 11, + ["max"] = 40, }, }, - ["4752_CastSpeedDuringFlaskEffect"] = { + ["1916_BeltFlaskLifeRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "scourge", + ["id"] = "scourge.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", }, ["sign"] = "", ["Belt"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 12, + ["max"] = 20, }, }, - ["5699_GainFrenzyChargeAfterSpending200Mana"] = { - ["specialCaseData"] = { + ["140_IncreaseSocketedSupportGemQuality"] = { + ["2HMace"] = { + ["min"] = 9, + ["max"] = 12, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3868549606", - ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", + ["1HMace"] = { + ["min"] = 9, + ["max"] = 12, }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 9, + ["max"] = 12, }, - }, - ["886_BlockingBlocksSpells"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["Claw"] = { + ["min"] = 9, + ["max"] = 12, }, - ["specialCaseData"] = { + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1328548975", + ["text"] = "#% to Quality of Socketed Support Gems", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 8, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 12, }, - }, - ["1567_ReducedShockChance"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["Wand"] = { + ["min"] = 9, + ["max"] = 12, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 9, + ["max"] = 12, }, - ["sign"] = "", - ["Chest"] = { - ["min"] = 10, - ["max"] = 20, + ["2HSword"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Belt"] = { - ["min"] = 10, - ["max"] = 20, + ["Bow"] = { + ["min"] = 9, + ["max"] = 12, }, - }, - ["940_DamageOverTime"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["2HAxe"] = { + ["min"] = 9, + ["max"] = 12, }, - ["1HWeapon"] = { - ["min"] = 50, - ["max"] = 60, + ["2HWeapon"] = { + ["min"] = 9, + ["max"] = 12, }, - ["sign"] = "", - }, - ["916_IncreasedIntelligenceDexterityCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["1HWeapon"] = { + ["min"] = 9, + ["max"] = 12, }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, + ["Shield"] = { + ["min"] = 9, + ["max"] = 12, }, - ["specialCaseData"] = { + }, + ["1099_FireDamagePercentage"] = { + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, }, - }, - ["88_LocalIncreaseSocketedGemLevel"] = { - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["type"] = "scourge", + ["id"] = "scourge.stat_3962278098", + ["text"] = "#% increased Fire Damage", }, ["specialCaseData"] = { }, - ["sign"] = "+", - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["Boots"] = { - ["min"] = 1, - ["max"] = 1, - }, - }, - ["1881_AdditionalCurseOnEnemies"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 50, }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, }, - ["sign"] = "", }, - ["915_IncreasedIntelligenceDexterityCorrupted"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - }, - ["Ring"] = { - ["min"] = 4, - ["max"] = 6, - }, - ["specialCaseData"] = { + ["4481_FireExposureOnHit"] = { + ["Wand"] = { + ["min"] = 7, + ["max"] = 12, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 4, - ["max"] = 6, + ["Dagger"] = { + ["min"] = 7, + ["max"] = 12, }, - ["Belt"] = { - ["min"] = 4, - ["max"] = 6, + ["Staff"] = { + ["min"] = 10, + ["max"] = 18, }, - }, - ["300_DisplaySocketedGemsGetAddedFireDamage"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572192375", - ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "scourge", + ["id"] = "scourge.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 18, + }, ["1HWeapon"] = { - ["min"] = 12, + ["min"] = 7, ["max"] = 12, }, - ["2HWeapon"] = { - ["min"] = 12, + ["1HMace"] = { + ["min"] = 7, ["max"] = 12, }, }, - ["1676_MonsterConvertPhysicalDamageToLightning"] = { + ["1306_IncreasedLife"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "scourge", + ["id"] = "scourge.stat_3299347043", + ["text"] = "# to maximum Life", }, - ["Quiver"] = { - ["min"] = 10, - ["max"] = 20, + ["AbyssJewel"] = { + ["min"] = 23, + ["max"] = 40, }, ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 20, + ["sign"] = "+", + ["BaseJewel"] = { + ["min"] = 23, + ["max"] = 40, + }, + ["AnyJewel"] = { + ["min"] = 23, + ["max"] = 40, }, }, - ["1703_MaximumBlockChance"] = { + ["1579_ChanceToAvoidFreezeAndChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4124805414", - ["text"] = "#% to maximum Chance to Block Attack Damage", + ["type"] = "scourge", + ["id"] = "scourge.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, }, + ["sign"] = "", }, - ["2221_CurseOnHitLevelVulnerability"] = { + ["5454_ReducedElementalReflectTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "scourge", + ["id"] = "scourge.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["Chest"] = { + ["min"] = 41, + ["max"] = 60, }, + ["sign"] = "", }, - ["877_ChanceToSuppressSpells"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", - }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, - }, + ["2616_MinionAttackAndCastSpeed"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 4, - ["max"] = 9, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", }, - }, - ["112_LocalIncreaseSocketedVaalGemLevel"] = { ["Gloves"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 5, + ["max"] = 10, }, + ["sign"] = "", + }, + ["2496_TotemElementalResistances"] = { ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1170386874", - ["text"] = "# to Level of Socketed Vaal Gems", - }, - ["Shield"] = { - ["min"] = 1, - ["max"] = 2, - }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 2, + ["type"] = "scourge", + ["id"] = "scourge.stat_1809006367", + ["text"] = "Totems gain #% to all Elemental Resistances", }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Helmet"] = { - ["min"] = 1, - ["max"] = 2, + ["Amulet"] = { + ["min"] = 21, + ["max"] = 35, }, ["Boots"] = { - ["min"] = 1, - ["max"] = 2, + ["min"] = 21, + ["max"] = 35, }, }, - ["2683_ChanceToGainOnslaughtOnKill"] = { + ["1323_ManaRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "scourge", + ["id"] = "scourge.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", }, - ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 15, + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["1809_AddedLightningDamageToBowAttacksCorrupted"] = { - ["specialCaseData"] = { + ["1127_IncreasedChaosDamage"] = { + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "scourge", + ["id"] = "scourge.stat_736967255", + ["text"] = "#% increased Chaos Damage", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 19.5, - ["max"] = 57, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, + }, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, }, - ["3988_AddedArmourWhileStationary"] = { + ["2896_CannotBeSlowedBelowValue"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2551779822", - ["text"] = "# Armour while stationary", + ["type"] = "scourge", + ["id"] = "scourge.stat_3816382471", + ["text"] = "Action Speed cannot be modified to below #% base value", }, - ["sign"] = "+", + ["sign"] = "", ["Boots"] = { - ["min"] = 35, - ["max"] = 322, + ["min"] = 70, + ["max"] = 79, }, }, - ["3987_PhysicalDamageReductionWhileNotMoving"] = { - ["specialCaseData"] = { + ["1131_LocalChaosDamage"] = { + ["2HMace"] = { + ["min"] = 17.5, + ["max"] = 46, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", + ["Staff"] = { + ["min"] = 17.5, + ["max"] = 46, }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 5, + ["1HSword"] = { + ["min"] = 9, + ["max"] = 24, + }, + ["2HAxe"] = { + ["min"] = 17.5, + ["max"] = 46, + }, + ["1HMace"] = { + ["min"] = 9, + ["max"] = 24, }, ["sign"] = "", - }, - ["319_SupportedByCriticalMultiplier"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["min"] = 9, + ["max"] = 24, + }, + ["Bow"] = { + ["min"] = 13, + ["max"] = 46, + }, + ["2HSword"] = { + ["min"] = 17.5, + ["max"] = 46, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + }, + ["Claw"] = { + ["min"] = 9, + ["max"] = 24, + }, + ["Wand"] = { + ["min"] = 9, + ["max"] = 24, + }, + ["1HAxe"] = { + ["min"] = 9, + ["max"] = 24, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["2HWeapon"] = { + ["min"] = 13, + ["max"] = 46, }, ["1HWeapon"] = { - ["min"] = 14, - ["max"] = 14, + ["min"] = 9, + ["max"] = 24, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, - ["sign"] = "", }, - ["304_DisplaySocketedGemGetsElementalProliferation"] = { + ["1890_MaximumSkeletonCount"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "scourge", + ["id"] = "scourge.stat_2428829184", + ["text"] = "# to maximum number of Skeletons", }, - ["1HWeapon"] = { + ["sign"] = "+", + ["Boots"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "", }, - ["310_SupportedByCastOnCrit"] = { - ["Gloves"] = { - ["min"] = 12, - ["max"] = 12, + ["1002_ChaosDamageOverTimeMultiplier"] = { + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 24, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "scourge", + ["id"] = "scourge.stat_4055307827", + ["text"] = "#% to Chaos Damage over Time Multiplier", }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 11, + ["max"] = 16, }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 12, - ["max"] = 12, + ["Wand"] = { + ["min"] = 11, + ["max"] = 16, }, - }, - ["4291_AdditionalCriticalStrikeChanceWithAttacks"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have #% to Critical Strike Chance", - }, - ["Gloves"] = { - ["min"] = 0.5, - ["max"] = 0.8, - }, ["sign"] = "+", - }, - ["1283_MaximumEnergyShieldPercent"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 16, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["Staff"] = { + ["min"] = 16, + ["max"] = 24, }, - ["sign"] = "", }, - ["1596_BurnDamage"] = { + ["4751_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", + ["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", }, - ["Helmet"] = { - ["min"] = 30, - ["max"] = 40, + ["Amulet"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["317_SupportedByLifeLeech"] = { + ["1475_LifeGainPerTarget"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "scourge", + ["id"] = "scourge.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", }, - ["1HWeapon"] = { - ["min"] = 15, - ["max"] = 15, + ["Gloves"] = { + ["min"] = 2, + ["max"] = 10, }, ["sign"] = "", }, - ["211_SupportedByOnslaught"] = { + ["1305_EnergyShieldRecoveryRate"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Onslaught", + ["type"] = "scourge", + ["id"] = "scourge.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", }, - ["2HWeapon"] = { - ["min"] = 10, + ["Chest"] = { + ["min"] = 5, ["max"] = 10, }, ["sign"] = "", }, - ["1594_ReducedIgniteDurationOnSelf"] = { - ["specialCaseData"] = { + ["1349_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "scourge", + ["id"] = "scourge.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skill Gems", }, - ["sign"] = "", - }, - ["5133_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_240289863", - ["text"] = "#% to Critical Strike Multiplier during any Flask Effect", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, - ["max"] = 25, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["5429_IncreasedWeaponElementalDamagePercent"] = { - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + }, + ["975_PhysicalDamagePercent"] = { + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 24, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 12, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", }, - }, - ["2223_CurseOnHitLevelElementalWeakness"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, }, }, - ["95_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { + ["1361_FireResistance"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 35, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 35, + }, ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["type"] = "scourge", + ["id"] = "scourge.stat_3372524247", + ["text"] = "#% to Fire Resistance", }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 2, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "+", - }, - ["1650_ColdDamageAsPortionOfDamage"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["1HSword"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", ["Quiver"] = { - ["min"] = 8, - ["max"] = 12, + ["min"] = 18, + ["max"] = 35, }, - }, - ["111_IncreasedSocketedTrapOrMineGemLevel"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_150668988", - ["text"] = "# to Level of Socketed Trap or Mine Gems", + ["Staff"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "+", - }, - ["2145_PhysicalDamageTakenAsFirePercent"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 6, - ["max"] = 8, + ["Claw"] = { + ["min"] = 18, + ["max"] = 35, }, - }, - ["328_DisplaySocketedGemsGetFasterCast"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["min"] = 18, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "implicit", - ["id"] = "implicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["1HMace"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 35, }, ["1HWeapon"] = { - ["min"] = 10, - ["max"] = 10, + ["min"] = 18, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", }, - }, - ["Scourge"] = { - ["1363_MaximumElementalResistance"] = { + ["8009_ProjectilesSplitCount"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1978899297", - ["text"] = "#% to all maximum Elemental Resistances", + ["id"] = "scourge.stat_3464380325", + ["text"] = "Projectiles Split towards # targets", }, ["sign"] = "+", - ["Shield"] = { + ["Quiver"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1710_ProjectileDamage"] = { + ["6717_NearbyEnemyChaosDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "scourge.stat_1902595112", + ["text"] = "Nearby Enemies have #% to Chaos Resistance", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 15, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 4, + }, + ["sign"] = "-", + }, + ["2309_CurseEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 9, + ["max"] = 12, + }, }, - ["2145_PhysicalDamageTakenAsFirePercent"] = { + ["1405_FireDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["id"] = "scourge.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.5, }, ["sign"] = "", }, - ["8776_PainAttunement"] = { + ["100_LocalIncreaseSocketedStrengthGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_98977150", - ["text"] = "Pain Attunement", + ["id"] = "scourge.stat_916797432", + ["text"] = "# to Level of Socketed Strength Gems", }, - ["Chest"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["1304_AddedManaRegeneration"] = { + ["1577_AvoidElementalStatusAilments"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - }, - ["Helmet"] = { - ["min"] = 0.8, - ["max"] = 9.2, + ["id"] = "scourge.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 17, + ["max"] = 25, + }, }, - ["2965_WarcrySpeed"] = { + ["1410_ColdDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "scourge.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", }, ["Amulet"] = { - ["min"] = 16, - ["max"] = 30, + ["min"] = 0.2, + ["max"] = 0.5, }, ["sign"] = "", }, - ["1365_ChillEffectivenessOnSelf"] = { + ["2162_PhysicalDamageTakenAsLightningPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", + ["id"] = "scourge.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 40, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 5, }, ["sign"] = "", }, - ["4467_FireExposureOnHit"] = { + ["1355_AllResistances"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3602667353", - ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["id"] = "scourge.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + }, + ["Ring"] = { + ["min"] = 6, + ["max"] = 12, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, + ["sign"] = "+", + ["Amulet"] = { + ["min"] = 6, + ["max"] = 12, }, - ["1HWeapon"] = { - ["min"] = 7, + ["Shield"] = { + ["min"] = 6, ["max"] = 12, }, - ["sign"] = "", }, - ["8797_IronWill"] = { + ["4959_ChanceToUnnerveOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4092697134", - ["text"] = "Iron Will", + ["id"] = "scourge.stat_763611529", + ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 12, }, + ["sign"] = "", }, - ["1318_ItemFoundRarityIncrease"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - }, - ["specialCaseData"] = { + ["1346_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 15, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 15, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, }, - }, - ["1332_GlobalIncreaseFireSpellSkillGemLevel"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skill Gems", + ["id"] = "scourge.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skill Gems", }, ["specialCaseData"] = { }, @@ -46697,1129 +66088,1152 @@ return { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", - }, - ["8771_LetheShade"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1678358883", - ["text"] = "Lethe Shade", - }, - ["Chest"] = { + ["Wand"] = { ["min"] = 1, ["max"] = 1, }, }, - ["4466_ColdExposureOnHit"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 12, - }, + ["1753_ChanceToIgnite"] = { ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, - }, - }, - ["1212_CriticalStrikeMultiplier"] = { - ["specialCaseData"] = { + ["min"] = 7, + ["max"] = 15, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3556824919", - ["text"] = "#% to Global Critical Strike Multiplier", - }, - ["Amulet"] = { - ["min"] = 17, - ["max"] = 25, - }, - ["sign"] = "+", - }, - ["7821_IncreasedAilmentEffectOnEnemies"] = { - ["specialCaseData"] = { + ["id"] = "scourge.stat_1335054179", + ["text"] = "#% chance to Ignite", }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_782230869", - ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 10, - ["max"] = 18, + ["Wand"] = { + ["min"] = 5, + ["max"] = 10, }, - }, - ["8794_WindDancer"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4170338365", - ["text"] = "Wind Dancer", + ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["1402_ChaosDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { - }, + ["8228_BrandAttachmentRange"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_744082851", - ["text"] = "#% of Chaos Damage Leeched as Life", + ["id"] = "scourge.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["specialCaseData"] = { }, ["sign"] = "", - }, - ["2649_GlobalChanceToBlindOnHit"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", + ["Amulet"] = { + ["min"] = 12, + ["max"] = 20, }, - ["Quiver"] = { - ["min"] = 7, - ["max"] = 12, + ["Boots"] = { + ["min"] = 12, + ["max"] = 20, }, + }, + ["1492_GainLifeOnBlock"] = { ["specialCaseData"] = { }, - ["sign"] = "", - }, - ["4392_AttacksTauntOnHitChance"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 25, - }, - ["2HWeapon"] = { - ["min"] = 11, - ["max"] = 25, + ["id"] = "scourge.stat_762600725", + ["text"] = "# Life gained when you Block", + }, + ["sign"] = "", + ["Shield"] = { + ["min"] = 31, + ["max"] = 60, }, }, - ["2602_MinionAttackAndCastSpeed"] = { + ["1659_TrapThrowSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", + ["id"] = "scourge.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", }, ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 7, + ["max"] = 15, }, ["sign"] = "", }, - ["4640_BlindEnemiesWhenHit"] = { + ["8791_IronGrip"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_26216403", - ["text"] = "#% chance to Blind Enemies when they Hit you", + ["id"] = "scourge.stat_573347393", + ["text"] = "Iron Grip", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 11, - ["max"] = 40, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1290_EnergyShieldRecoveryRate"] = { + ["1582_AvoidShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", + ["id"] = "scourge.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, }, ["sign"] = "", }, - ["6887_GlobalMaimOnHit"] = { + ["4993_ChanceToChillAttackersOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", + ["id"] = "scourge.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 7, - ["max"] = 12, + ["Shield"] = { + ["min"] = 14, + ["max"] = 25, }, }, - ["2606_MinionElementalResistance"] = { + ["2171_AdditionalBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - }, - ["Gloves"] = { - ["min"] = 10, - ["max"] = 15, + ["id"] = "scourge.stat_1702195217", + ["text"] = "#% Chance to Block Attack Damage", }, ["sign"] = "+", - }, - ["5286_DaytimeFishSize"] = { - ["specialCaseData"] = { + ["Shield"] = { + ["min"] = 2, + ["max"] = 9, }, + }, + ["1308_MaximumLifeIncreasePercent"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1771018579", - ["text"] = "#% increased Size of Fish caught during Daytime", + ["id"] = "scourge.stat_983749596", + ["text"] = "#% increased maximum Life", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Chest"] = { + ["min"] = 5, + ["max"] = 8, + }, + ["Belt"] = { + ["min"] = 5, + ["max"] = 8, + }, }, - ["1344_MaximumFireResist"] = { - ["specialCaseData"] = { + ["2689_LightningResistancePenetration"] = { + ["Wand"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4095671657", - ["text"] = "#% to maximum Fire Resistance", + ["id"] = "scourge.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["specialCaseData"] = { + }, + ["1HMace"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 5, }, }, - ["8786_Solipsism"] = { + ["8749_PerfectAgony"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_112130960", - ["text"] = "Solipsism", + ["id"] = "scourge.stat_3884934810", + ["text"] = "Perfect Agony", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2294_CurseEffectiveness"] = { + ["2619_MinionLifeLeech"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", + ["id"] = "scourge.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 9, - ["max"] = 12, + ["Helmet"] = { + ["min"] = 0.2, + ["max"] = 0.7, }, + ["sign"] = "", }, - ["1563_ChanceToAvoidFreezeAndChill"] = { + ["2340_PowerChargeOnKillChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", + ["id"] = "scourge.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", }, ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["min"] = 5, + ["max"] = 12, }, ["sign"] = "", }, - ["4737_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { - ["specialCaseData"] = { + ["2277_FasterIgniteDamage"] = { + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 13, }, ["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", + ["id"] = "scourge.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", }, - ["Amulet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 9, }, - }, - ["1130_SpellAddedFireDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["Wand"] = { + ["min"] = 4, + ["max"] = 9, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 30.5, + ["min"] = 4, + ["max"] = 9, }, - ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45.5, + ["Staff"] = { + ["min"] = 8, + ["max"] = 13, }, }, - ["8220_BrandDuration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3089482869", - ["text"] = "Brand Skills have #% increased Duration", + ["2454_LocalMeleeWeaponRange"] = { + ["1HSword"] = { + ["min"] = 1, + ["max"] = 4, }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 4, }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, + ["2HMace"] = { + ["min"] = 1, + ["max"] = 4, }, - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["Staff"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["Claw"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["2HSword"] = { + ["min"] = 1, + ["max"] = 4, }, - }, - ["1132_SpellAddedLightningDamage"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "scourge.stat_350598685", + ["text"] = "# to Weapon Range", }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 4, + }, + ["1HAxe"] = { + ["min"] = 1, + ["max"] = 4, }, ["2HWeapon"] = { - ["min"] = 26, - ["max"] = 48.5, + ["min"] = 1, + ["max"] = 4, }, ["1HWeapon"] = { - ["min"] = 17.5, - ["max"] = 32.5, + ["min"] = 1, + ["max"] = 4, + }, + ["specialCaseData"] = { + }, + }, + ["2336_EnduranceChargeOnKillChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + }, + ["Ring"] = { + ["min"] = 5, + ["max"] = 12, }, ["sign"] = "", }, - ["1287_EnergyShieldRegeneration"] = { - ["Gloves"] = { - ["min"] = 11, - ["max"] = 25, + ["8796_WickedWard"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "scourge.stat_1109343199", + ["text"] = "Wicked Ward", }, ["Chest"] = { - ["min"] = 11, - ["max"] = 25, + ["min"] = 1, + ["max"] = 1, }, + }, + ["1370_MaximumLightningResistance"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 11, - ["max"] = 25, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1011760251", + ["text"] = "#% to maximum Lightning Resistance", }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 25, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["6715_NearbyEnemyChaosDamageResistance"] = { + ["8773_IronReflexes"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1902595112", - ["text"] = "Nearby Enemies have #% to Chaos Resistance", + ["id"] = "scourge.stat_326965591", + ["text"] = "Iron Reflexes", }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "-", }, - ["8788_IronGrip"] = { + ["8799_ResoluteTechnique"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_573347393", - ["text"] = "Iron Grip", + ["id"] = "scourge.stat_3943945975", + ["text"] = "Resolute Technique", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1570_AvoidStun"] = { - ["Gloves"] = { - ["min"] = 17, - ["max"] = 25, + ["1315_LifeRecoveryRate"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", + ["id"] = "scourge.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", }, - ["specialCaseData"] = { + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", - ["Helmet"] = { - ["min"] = 17, - ["max"] = 25, + }, + ["3007_EnemiesExplodeOnDeathPhysicalChance"] = { + ["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, }, + ["sign"] = "", }, - ["5595_FasterPoisonDamage"] = { + ["1350_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2907156609", - ["text"] = "Poisons you inflict deal Damage #% faster", + ["id"] = "scourge.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skill Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, + }, ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1235_ReducedExtraDamageFromCrits"] = { + ["3131_MinionAttacksTauntOnHitChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "scourge.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", }, ["sign"] = "", - ["Shield"] = { - ["min"] = 13, - ["max"] = 25, + ["Belt"] = { + ["min"] = 11, + ["max"] = 19, }, }, - ["103_LocalIncreaseSocketedMeleeGemLevel"] = { + ["1542_MinimumFrenzyCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_829382474", - ["text"] = "# to Level of Socketed Melee Gems", + ["id"] = "scourge.stat_658456881", + ["text"] = "# to Minimum Frenzy Charges", }, - ["Chest"] = { + ["Ring"] = { ["min"] = 1, ["max"] = 1, }, ["sign"] = "+", }, - ["1470_MaximumEnergyShieldOnKillPercent"] = { + ["8800_IronWill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", + ["id"] = "scourge.stat_4092697134", + ["text"] = "Iron Will", }, ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1386_PhysicalDamageLifeLeechPermyriad"] = { + ["7945_ReducedPhysicalReflectTaken"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["id"] = "scourge.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Chest"] = { + ["min"] = 41, + ["max"] = 60, }, ["sign"] = "", }, - ["1751_CullingStrike"] = { + ["1580_AvoidIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2524254339", - ["text"] = "Culling Strike", - }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, }, + ["sign"] = "", }, - ["1136_IncreasedAttackSpeed"] = { - ["Gloves"] = { - ["min"] = 4, - ["max"] = 10, + ["8763_ElementalOverload"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_681332047", - ["text"] = "#% increased Attack Speed", - }, - ["Quiver"] = { - ["min"] = 4, - ["max"] = 10, - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_3574189159", + ["text"] = "Elemental Overload", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 4, - ["max"] = 10, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1517_MovementVelocity"] = { + ["108_LocalIncreaseSocketedFireGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "scourge.stat_339179093", + ["text"] = "# to Level of Socketed Fire Gems", }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 8, - ["max"] = 15, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["4945_ChanceToUnnerveOnHit"] = { + ["109_LocalIncreaseSocketedColdGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_763611529", - ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", + ["id"] = "scourge.stat_1645459191", + ["text"] = "# to Level of Socketed Cold Gems", }, - ["Helmet"] = { - ["min"] = 7, - ["max"] = 12, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["984_ColdDamageOverTimeMultiplier"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1950806024", - ["text"] = "#% to Cold Damage over Time Multiplier", + ["1376_ChaosResistance"] = { + ["2HMace"] = { + ["min"] = 10, + ["max"] = 25, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["Dagger"] = { + ["min"] = 10, + ["max"] = 25, }, - }, - ["4979_ChanceToChillAttackersOnBlock"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 10, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_864879045", - ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["id"] = "scourge.stat_2923486259", + ["text"] = "#% to Chaos Resistance", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 14, + ["1HAxe"] = { + ["min"] = 10, ["max"] = 25, }, - }, - ["2672_FireResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - }, ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 10, + ["max"] = 25, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 10, + ["max"] = 25, }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["Quiver"] = { + ["min"] = 10, + ["max"] = 25, }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["Wand"] = { + ["min"] = 10, + ["max"] = 25, }, - ["sign"] = "", - }, - ["2146_PhysicalDamageTakenAsCold"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 10, + ["max"] = 25, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["2HSword"] = { + ["min"] = 10, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["2HAxe"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["Ring"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["1HMace"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["1HWeapon"] = { + ["min"] = 10, + ["max"] = 25, + }, + ["Belt"] = { + ["min"] = 10, + ["max"] = 25, }, - ["sign"] = "", }, - ["8748_AvatarOfFire"] = { + ["8769_GlancingBlows"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_346029096", - ["text"] = "Avatar of Fire", + ["id"] = "scourge.stat_4266776872", + ["text"] = "Glancing Blows", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2992_EnemiesExplodeOnDeathPhysicalChance"] = { - ["specialCaseData"] = { - }, + ["1929_AttackerTakesDamageNoRange"] = { ["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, - }, - ["sign"] = "", - }, - ["1419_ManaLeechPermyriad"] = { - ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "scourge.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["Shield"] = { + ["min"] = 20, + ["max"] = 100, }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Helmet"] = { + ["min"] = 20, + ["max"] = 100, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Chest"] = { + ["min"] = 20, + ["max"] = 100, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Belt"] = { + ["min"] = 20, + ["max"] = 100, }, }, - ["93_LocalIncreaseSocketedFireGemLevel"] = { + ["2230_FlammabilityOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_339179093", - ["text"] = "# to Level of Socketed Fire Gems", + ["id"] = "scourge.stat_654274615", + ["text"] = "Curse Enemies with Flammability on Hit", }, - ["Chest"] = { + ["Gloves"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1291_IncreasedLife"] = { + ["8762_ElementalEquilibrium"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "scourge.stat_1263158408", + ["text"] = "Elemental Equilibrium", }, - ["AbyssJewel"] = { - ["min"] = 23, - ["max"] = 40, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + }, + ["8786_SacredBastion"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["BaseJewel"] = { - ["min"] = 23, - ["max"] = 40, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3868073741", + ["text"] = "Imbalanced Guard", }, - ["AnyJewel"] = { - ["min"] = 23, - ["max"] = 40, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["8793_WickedWard"] = { + ["8792_SupremeEgo"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1109343199", - ["text"] = "Wicked Ward", + ["id"] = "scourge.stat_1421267186", + ["text"] = "Supreme Ego", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2521_OnslaughtWhenHitForDuration"] = { + ["4408_MonsterImpaleOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", + ["id"] = "scourge.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", }, - ["Chest"] = { - ["min"] = 2, - ["max"] = 4, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 12, }, ["sign"] = "", }, - ["1306_ManaRegeneration"] = { - ["Ring"] = { - ["min"] = 18, - ["max"] = 45, + ["1954_ReducedReservation"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "scourge.stat_4237190083", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", }, ["Amulet"] = { - ["min"] = 18, - ["max"] = 45, - }, - ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 45, - }, - ["specialCaseData"] = { + ["min"] = 6, + ["max"] = 12, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 45, - }, - ["Shield"] = { - ["min"] = 18, - ["max"] = 45, - }, }, - ["1219_CriticalStrikeMultiplierWithBows"] = { + ["6907_ManaFlaskPassiveChargeGain"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1712221299", - ["text"] = "#% to Critical Strike Multiplier with Bows", + ["id"] = "scourge.stat_1193925814", + ["text"] = "Mana Flasks gain # Charge every 3 seconds", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 17, - ["max"] = 25, + ["sign"] = "", + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1532_MinimumPowerCharges"] = { + ["3255_BasePenetrateElementalResistances"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1999711879", - ["text"] = "# to Minimum Power Charges", + ["id"] = "scourge.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "+", + ["sign"] = "", }, - ["8790_UnwaveringStance"] = { + ["8761_EldritchBattery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1683578560", - ["text"] = "Unwavering Stance", + ["id"] = "scourge.stat_2262736444", + ["text"] = "Eldritch Battery", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["2859_PoisonOnHit"] = { + ["8195_ChanceToShockAttackersOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 20, + ["id"] = "scourge.stat_575111651", + ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 14, + ["max"] = 25, + }, }, - ["971_GlobalDamageOverTimeMultiplier"] = { - ["specialCaseData"] = { + ["4482_LightningExposureOnHit"] = { + ["1HMace"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 18, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3988349707", - ["text"] = "#% to Damage over Time Multiplier", - }, - ["Amulet"] = { - ["min"] = 8, - ["max"] = 16, + ["id"] = "scourge.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", }, - ["sign"] = "+", - }, - ["1645_MineLayingSpeed"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 18, }, - ["Gloves"] = { + ["1HWeapon"] = { ["min"] = 7, - ["max"] = 15, + ["max"] = 12, + }, + ["Wand"] = { + ["min"] = 7, + ["max"] = 12, }, - ["sign"] = "", }, - ["2149_PhysicalDamageTakenAsChaos"] = { - ["specialCaseData"] = { + ["3077_UnholyMightOnKillPercentChance"] = { + ["2HWeapon"] = { + ["min"] = 8, + ["max"] = 10, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "scourge.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["Staff"] = { + ["min"] = 8, + ["max"] = 10, + }, + ["Wand"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["1HWeapon"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["Claw"] = { + ["min"] = 5, + ["max"] = 7, + }, }, - ["1709_GlobalKnockbackChance"] = { + ["6214_LifeFlaskPassiveChargeGain"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - }, - ["Gloves"] = { - ["min"] = 16, - ["max"] = 30, + ["id"] = "scourge.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 1, + ["max"] = 1, + }, }, - ["1672_ConvertPhysicalToFire"] = { + ["2622_MinionChaosResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["id"] = "scourge.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", }, ["Gloves"] = { - ["min"] = 25, + ["min"] = 14, ["max"] = 25, }, - ["sign"] = "", + ["sign"] = "+", }, - ["1302_MaximumManaIncreasePercent"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["6142_ImpaleEffect"] = { + ["2HMace"] = { + ["min"] = 7, + ["max"] = 18, }, - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 10, + ["max"] = 18, + }, + ["1HMace"] = { + ["min"] = 7, + ["max"] = 18, }, ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, + ["Dagger"] = { + ["min"] = 7, + ["max"] = 18, }, - ["Helmet"] = { - ["min"] = 5, - ["max"] = 8, + ["Claw"] = { + ["min"] = 7, + ["max"] = 18, }, - }, - ["1883_ReducedCurseEffect"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 7, + ["max"] = 18, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", + ["id"] = "scourge.stat_298173317", + ["text"] = "#% increased Impale Effect", }, - ["Ring"] = { - ["min"] = 16, - ["max"] = 25, + ["1HSword"] = { + ["min"] = 7, + ["max"] = 18, }, - ["sign"] = "", - }, - ["2543_FishingRarity"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 7, + ["max"] = 18, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", + ["1HAxe"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 18, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["1557_CannotBeFrozen"] = { + ["102_LocalIncreaseSocketedIntelligenceGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_876831634", - ["text"] = "Cannot be Frozen", + ["id"] = "scourge.stat_1719423857", + ["text"] = "# to Level of Socketed Intelligence Gems", }, - ["Boots"] = { + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["1873_MaximumZombieCount"] = { + ["8778_TheAgnostic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1652515349", - ["text"] = "# to maximum number of Raised Zombies", + ["id"] = "scourge.stat_462691314", + ["text"] = "The Agnostic", }, - ["sign"] = "+", - ["Boots"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1512_AdditionalArrows"] = { + ["2980_WarcrySpeed"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", - }, - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_1316278494", + ["text"] = "#% increased Warcry Speed", }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + ["Amulet"] = { + ["min"] = 16, + ["max"] = 30, }, ["sign"] = "", - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 1, - }, }, - ["1350_MaximumColdResist"] = { + ["3162_ChancetoGainPhasingOnKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3676141501", - ["text"] = "#% to maximum Cold Resistance", + ["id"] = "scourge.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Quiver"] = { + ["min"] = 11, + ["max"] = 25, }, }, - ["2673_ColdResistancePenetration"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, + ["6723_NearbyEnemyPhysicalDamageTaken"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", }, - ["Amulet"] = { + ["Helmet"] = { ["min"] = 3, - ["max"] = 5, + ["max"] = 4, }, + ["sign"] = "", }, - ["1333_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["2533_ReturningAttackProjectiles"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skill Gems", - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_1578737937", + ["text"] = "Attack Projectiles Return to you from final Target", }, - ["sign"] = "+", - ["1HWeapon"] = { + ["Quiver"] = { ["min"] = 1, ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, - }, }, - ["8389_StrengthAppliesToFishingReelSpeed"] = { + ["930_PercentageDexterity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4039414411", - ["text"] = "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", + ["id"] = "scourge.stat_4139681126", + ["text"] = "#% increased Dexterity", + }, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 7, }, + ["sign"] = "", }, - ["1567_AvoidShock"] = { + ["8770_HexMaster"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", + ["id"] = "scourge.stat_3849554033", + ["text"] = "Hex Master", }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["2598_MinionSpellBlockChance"] = { + ["103_LocalIncreaseSocketedGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2762046953", - ["text"] = "Minions have #% Chance to Block Spell Damage", + ["id"] = "scourge.stat_2843100721", + ["text"] = "# to Level of Socketed Gems", }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 19, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, ["sign"] = "+", }, - ["1293_MaximumLifeIncreasePercent"] = { + ["2291_SummonTotemCastSpeed"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "scourge.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Chest"] = { - ["min"] = 5, - ["max"] = 8, - }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, - }, - }, - ["953_SpellDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2974417149", - ["text"] = "#% increased Spell Damage", - }, - ["specialCaseData"] = { - }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["Amulet"] = { + ["min"] = 16, + ["max"] = 30, }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["Boots"] = { + ["min"] = 16, + ["max"] = 30, }, - ["sign"] = "", }, - ["3247_AuraEffect"] = { + ["1725_ProjectileDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["id"] = "scourge.stat_1839076647", + ["text"] = "#% increased Projectile Damage", }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 15, }, ["sign"] = "", }, - ["2541_FishingCastDistance"] = { + ["1601_SelfStatusAilmentDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_170497091", - ["text"] = "#% increased Fishing Range", + ["id"] = "scourge.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 17, + ["max"] = 25, + }, }, - ["1240_StunThresholdReduction"] = { + ["1760_ChanceToShock"] = { + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "scourge.stat_1538773178", + ["text"] = "#% chance to Shock", }, - ["2HWeapon"] = { + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Wand"] = { ["min"] = 5, ["max"] = 10, }, @@ -47830,414 +67244,299 @@ return { ["min"] = 5, ["max"] = 10, }, - ["Belt"] = { - ["min"] = 5, - ["max"] = 10, + ["Staff"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["104_LocalIncreaseSocketedMinionGemLevel"] = { - ["specialCaseData"] = { + ["1286_LocalEvasionRating"] = { + ["Gloves"] = { + ["min"] = 30, + ["max"] = 150, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3604946673", - ["text"] = "# to Level of Socketed Minion Gems", + ["id"] = "scourge.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 150, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "# to Evasion Rating", }, ["sign"] = "+", + ["Chest"] = { + ["min"] = 30, + ["max"] = 150, + }, + ["Boots"] = { + ["min"] = 30, + ["max"] = 150, + }, }, - ["1695_ElementalDamagePercent"] = { + ["5444_IncreasedWeaponElementalDamagePercent"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "scourge.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + }, + ["Ring"] = { + ["min"] = 8, + ["max"] = 24, + }, + ["Quiver"] = { + ["min"] = 8, + ["max"] = 24, }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 24, }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["Belt"] = { + ["min"] = 8, + ["max"] = 24, }, - ["sign"] = "", }, - ["8334_SpellsHinderOnHitChance"] = { + ["1494_GainEnergyShieldOnBlock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3002506763", - ["text"] = "#% chance to Hinder Enemies on Hit with Spells", - }, - ["Chest"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "scourge.stat_450695450", + ["text"] = "Gain # Energy Shield when you Block", }, ["sign"] = "", + ["Shield"] = { + ["min"] = 31, + ["max"] = 60, + }, }, - ["8765_KeystoneGhostReaver"] = { + ["1523_AdditionalChain"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4272248216", - ["text"] = "Ghost Reaver", + ["id"] = "scourge.stat_1787073323", + ["text"] = "Skills Chain # times", }, - ["Chest"] = { + ["sign"] = "+", + ["Quiver"] = { ["min"] = 1, ["max"] = 1, }, }, - ["6212_LifeFlaskPassiveChargeGain"] = { + ["1378_MaximumElementalResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["id"] = "scourge.stat_1978899297", + ["text"] = "#% to all maximum Elemental Resistances", }, - ["sign"] = "", - ["Belt"] = { + ["sign"] = "+", + ["Shield"] = { ["min"] = 1, ["max"] = 1, }, }, - ["95_LocalIncreaseSocketedLightningGemLevel"] = { + ["8767_GhostDance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4043416969", - ["text"] = "# to Level of Socketed Lightning Gems", + ["id"] = "scourge.stat_3590128077", + ["text"] = "Ghost Dance", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1679_PhysicalDamageConvertedToChaos"] = { + ["320_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["id"] = "scourge.stat_1647529598", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", }, ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["min"] = 1, + ["max"] = 22, }, ["sign"] = "", }, - ["85_LocalIncreaseSocketedStrengthGemLevel"] = { + ["2160_PhysicalDamageTakenAsFirePercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_916797432", - ["text"] = "# to Level of Socketed Strength Gems", + ["id"] = "scourge.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", }, ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, - }, - ["sign"] = "+", - }, - ["6142_ImpaleEffect"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_298173317", - ["text"] = "#% increased Impale Effect", - }, - ["specialCaseData"] = { + ["min"] = 4, + ["max"] = 5, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 7, - ["max"] = 18, - }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 18, - }, }, - ["1568_ChanceToAvoidPoison"] = { + ["1319_AddedManaRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", + ["id"] = "scourge.stat_4291461939", + ["text"] = "Regenerate # Mana per second", }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["Helmet"] = { + ["min"] = 0.8, + ["max"] = 9.2, }, ["sign"] = "", }, - ["4448_GlobalCooldownRecovery"] = { - ["specialCaseData"] = { + ["1174_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 20, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "scourge.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 3, - ["max"] = 6, + ["Quiver"] = { + ["min"] = 11, + ["max"] = 20, }, - }, - ["1747_AreaDamage"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4251717817", - ["text"] = "#% increased Area Damage", - }, - ["Amulet"] = { - ["min"] = 11, - ["max"] = 30, - }, ["sign"] = "", }, - ["915_PercentageDexterity"] = { + ["1417_ChaosDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "scourge.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", }, ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["min"] = 0.2, + ["max"] = 0.5, }, ["sign"] = "", }, - ["1676_ConvertPhysicalToLightning"] = { + ["8794_VaalPact"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["id"] = "scourge.stat_2257118425", + ["text"] = "Vaal Pact", }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["8102_ChaosResistancePenetration"] = { + ["1333_ItemFoundRarityIncrease"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4264312960", - ["text"] = "Damage Penetrates #% Chaos Resistance", - }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["id"] = "scourge.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", }, ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, - }, - ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, - }, ["sign"] = "", - }, - ["1586_SelfStatusAilmentDuration"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["Amulet"] = { + ["min"] = 8, + ["max"] = 15, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 17, - ["max"] = 25, + ["Ring"] = { + ["min"] = 8, + ["max"] = 15, }, }, - ["1171_IncreasedCastSpeed"] = { + ["1608_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "scourge.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", }, - ["Amulet"] = { - ["min"] = 5, - ["max"] = 8, + ["Helmet"] = { + ["min"] = 31, + ["max"] = 40, }, ["sign"] = "", }, - ["5851_GuardSkillCooldownRecovery"] = { + ["6890_GlobalMaimOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3150300096", - ["text"] = "Guard Skills have #% increased Cooldown Recovery Rate", - }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 14, - ["max"] = 19, - }, - }, - ["4468_LightningExposureOnHit"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4265906483", - ["text"] = "#% chance to inflict Lightning Exposure on Hit", - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", }, ["sign"] = "", - ["1HWeapon"] = { + ["Quiver"] = { ["min"] = 7, ["max"] = 12, }, - ["2HWeapon"] = { - ["min"] = 10, - ["max"] = 18, - }, }, - ["5452_ElusiveEffect"] = { + ["7824_IncreasedAilmentEffectOnEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_240857668", - ["text"] = "#% increased Elusive Effect", + ["id"] = "scourge.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", }, ["sign"] = "", ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["min"] = 10, + ["max"] = 18, }, }, - ["305_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1647529598", - ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", - }, + ["2664_GlobalChanceToBlindOnHit"] = { ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, - }, - ["sign"] = "", - }, - ["1357_LightningResistance"] = { - ["Quiver"] = { - ["min"] = 18, - ["max"] = 35, - }, - ["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, - }, - }, - ["5265_DamageTakenGainedAsLife"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - }, - ["Helmet"] = { ["min"] = 7, ["max"] = 12, }, - ["sign"] = "", - }, - ["1888_GainManaAsExtraEnergyShield"] = { - ["specialCaseData"] = { - }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2663376056", - ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", + ["id"] = "scourge.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 5, - ["max"] = 6, + ["Quiver"] = { + ["min"] = 7, + ["max"] = 12, }, - }, - ["1902_BeltFlaskManaRecoveryRate"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - }, ["sign"] = "", - ["Belt"] = { - ["min"] = 12, - ["max"] = 20, - }, }, - ["8764_GhostDance"] = { + ["1234_CriticalStrikeMultiplierWithBows"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3590128077", - ["text"] = "Ghost Dance", + ["id"] = "scourge.stat_1712221299", + ["text"] = "#% to Critical Strike Multiplier with Bows", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "+", + ["Quiver"] = { + ["min"] = 17, + ["max"] = 25, }, }, - ["6716_NearbyEnemyColdDamageResistance"] = { + ["6718_NearbyEnemyColdDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -48251,243 +67550,283 @@ return { }, ["sign"] = "-", }, - ["1471_MaximumManaOnKillPercent"] = { + ["2617_MinionAttackAndCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", + ["id"] = "scourge.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["Gloves"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", }, - ["1093_ColdDamagePercentage"] = { + ["1512_TotemDuration"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "scourge.stat_2357996603", + ["text"] = "#% increased Totem Duration", }, ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["sign"] = "", - ["1HWeapon"] = { + ["Amulet"] = { + ["min"] = 12, + ["max"] = 20, + }, + ["Boots"] = { + ["min"] = 12, + ["max"] = 20, + }, + }, + ["1108_ColdDamagePercentage"] = { + ["1HMace"] = { ["min"] = 23, ["max"] = 50, }, - ["2HWeapon"] = { + ["sign"] = "", + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Staff"] = { ["min"] = 34, ["max"] = 75, }, - }, - ["342_DisplaySupportedByAddedColdDamage"] = { - ["specialCaseData"] = { - }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4020144606", - ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["id"] = "scourge.stat_3291658075", + ["text"] = "#% increased Cold Damage", }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, + }, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, - ["sign"] = "", }, - ["1901_BeltFlaskLifeRecoveryRate"] = { + ["1634_StunRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "scourge.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", }, ["sign"] = "", ["Belt"] = { - ["min"] = 12, - ["max"] = 20, + ["min"] = 10, + ["max"] = 15, }, }, - ["2601_MinionAttackAndCastSpeed"] = { - ["specialCaseData"] = { + ["4458_BaseChanceToDealTripleDamage"] = { + ["1HMace"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", + ["Wand"] = { + ["min"] = 3, + ["max"] = 5, }, - ["Gloves"] = { + ["2HMace"] = { ["min"] = 5, - ["max"] = 10, + ["max"] = 7, + }, + ["1HSword"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "", - }, - ["1593_ReducedFreezeDuration"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 7, }, - ["Helmet"] = { - ["min"] = 31, - ["max"] = 40, + ["Staff"] = { + ["min"] = 5, + ["max"] = 7, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 7, }, - ["sign"] = "", - }, - ["987_ChaosDamageOverTimeMultiplier"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4055307827", - ["text"] = "#% to Chaos Damage over Time Multiplier", + ["id"] = "scourge.stat_2445189705", + ["text"] = "#% chance to deal Triple Damage", }, - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, + ["Dagger"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["1HAxe"] = { + ["min"] = 3, + ["max"] = 5, }, ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["min"] = 5, + ["max"] = 7, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["Bow"] = { + ["min"] = 5, + ["max"] = 7, }, }, - ["8006_ProjectilesSplitCount"] = { + ["2874_PoisonOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3464380325", - ["text"] = "Projectiles Split towards # targets", + ["id"] = "scourge.stat_795138349", + ["text"] = "#% chance to Poison on Hit", }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 20, }, + ["sign"] = "", }, - ["8757_DivineShield"] = { + ["2621_MinionElementalResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2048995720", - ["text"] = "Divine Shield", + ["id"] = "scourge.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 10, + ["max"] = 15, }, + ["sign"] = "+", }, - ["1564_ChanceToAvoidFreezeAndChill"] = { + ["4462_GlobalCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["id"] = "scourge.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", }, ["sign"] = "", + ["Belt"] = { + ["min"] = 3, + ["max"] = 6, + }, }, - ["4394_MonsterImpaleOnHit"] = { - ["specialCaseData"] = { + ["924_IntelligenceImplicit"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 35, }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["Claw"] = { + ["min"] = 20, + ["max"] = 35, }, - ["sign"] = "", - }, - ["2481_TotemElementalResistances"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1809006367", - ["text"] = "Totems gain #% to all Elemental Resistances", + ["Helmet"] = { + ["min"] = 20, + ["max"] = 35, }, - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 20, + ["max"] = 35, }, ["sign"] = "+", - ["Amulet"] = { - ["min"] = 21, + ["Dagger"] = { + ["min"] = 20, ["max"] = 35, }, ["Boots"] = { - ["min"] = 21, + ["min"] = 20, ["max"] = 35, }, - }, - ["6718_NearbyEnemyFireDamageResistance"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 20, + ["max"] = 35, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3914021960", - ["text"] = "Nearby Enemies have #% to Fire Resistance", + ["id"] = "scourge.stat_328541901", + ["text"] = "# to Intelligence", }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["Chest"] = { + ["min"] = 20, + ["max"] = 35, }, - ["sign"] = "-", - }, - ["2881_CannotBeSlowedBelowValue"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 20, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3816382471", - ["text"] = "Action Speed cannot be modified to below #% base value", + ["Ring"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Amulet"] = { + ["min"] = 20, + ["max"] = 35, }, - ["sign"] = "", - ["Boots"] = { - ["min"] = 70, - ["max"] = 79, + ["specialCaseData"] = { }, }, - ["1104_LightningDamagePercentage"] = { + ["8223_BrandDuration"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "scourge.stat_3089482869", + ["text"] = "Brand Skills have #% increased Duration", }, ["specialCaseData"] = { }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["Amulet"] = { + ["min"] = 12, + ["max"] = 20, }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["Boots"] = { + ["min"] = 12, + ["max"] = 20, }, }, - ["908_DexterityImplicit"] = { + ["923_DexterityImplicit"] = { ["Gloves"] = { ["min"] = 20, ["max"] = 35, }, - ["Quiver"] = { - ["min"] = 20, - ["max"] = 35, - }, ["specialCaseData"] = { }, ["sign"] = "+", + ["Dagger"] = { + ["min"] = 20, + ["max"] = 35, + }, ["Boots"] = { ["min"] = 20, ["max"] = 35, @@ -48497,11 +67836,39 @@ return { ["id"] = "scourge.stat_3261801346", ["text"] = "# to Dexterity", }, + ["Ring"] = { + ["min"] = 20, + ["max"] = 35, + }, ["Amulet"] = { ["min"] = 20, ["max"] = 35, }, - ["Ring"] = { + ["1HSword"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Quiver"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["1HAxe"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["2HSword"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Chest"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Claw"] = { ["min"] = 20, ["max"] = 35, }, @@ -48517,62 +67884,88 @@ return { ["min"] = 20, ["max"] = 35, }, - ["Chest"] = { + ["Bow"] = { ["min"] = 20, ["max"] = 35, }, }, - ["1112_IncreasedChaosDamage"] = { + ["111_LocalIncreaseSocketedChaosGemLevel"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "scourge.stat_2675603254", + ["text"] = "# to Level of Socketed Chaos Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", + }, + ["929_PercentageStrength"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_734614379", + ["text"] = "#% increased Strength", }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 7, }, + ["sign"] = "", }, - ["1460_LifeGainPerTarget"] = { + ["6721_NearbyEnemyLightningDamageResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "scourge.stat_1849749435", + ["text"] = "Nearby Enemies have #% to Lightning Resistance", }, - ["Gloves"] = { - ["min"] = 2, - ["max"] = 10, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 4, }, - ["sign"] = "", + ["sign"] = "-", }, - ["1131_SpellAddedColdDamage"] = { + ["1147_SpellAddedLightningDamage"] = { + ["Wand"] = { + ["min"] = 17.5, + ["max"] = 32.5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17.5, + ["max"] = 32.5, + }, + ["Staff"] = { + ["min"] = 26, + ["max"] = 48.5, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "scourge.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", }, ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 25, - ["max"] = 45.5, + ["min"] = 26, + ["max"] = 48.5, }, ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 30.5, + ["min"] = 17.5, + ["max"] = 32.5, + }, + ["1HMace"] = { + ["min"] = 17.5, + ["max"] = 32.5, }, - ["sign"] = "", }, - ["8745_Acrobatics"] = { + ["8748_Acrobatics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -48585,168 +67978,294 @@ return { ["max"] = 1, }, }, - ["960_PhysicalDamagePercent"] = { + ["1359_MaximumFireResist"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "scourge.stat_4095671657", + ["text"] = "#% to maximum Fire Resistance", + }, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["1278_LocalPhysicalDamageReductionRating"] = { + ["Gloves"] = { + ["min"] = 30, + ["max"] = 150, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3484657501", + ["text"] = "# to Armour (Local)", + }, + ["Helmet"] = { + ["min"] = 30, + ["max"] = 150, }, ["specialCaseData"] = { + ["overrideModLine"] = "# to Armour", }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 30, + ["max"] = 150, }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["Boots"] = { + ["min"] = 30, + ["max"] = 150, }, - ["sign"] = "", }, - ["1296_LifeRegeneration"] = { + ["8754_CallToArms"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3325883026", - ["text"] = "Regenerate # Life per second", + ["id"] = "scourge.stat_3292262540", + ["text"] = "Call to Arms", }, - ["AbyssJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["8779_PainAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_98977150", + ["text"] = "Pain Attunement", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["120_LocalIncreaseSocketedAuraLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2452998583", + ["text"] = "# to Level of Socketed Aura Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", + }, + ["1250_ReducedExtraDamageFromCrits"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + }, ["sign"] = "", - ["BaseJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, + ["Shield"] = { + ["min"] = 13, + ["max"] = 25, }, - ["AnyJewel"] = { - ["min"] = 10.8, - ["max"] = 26.7, + }, + ["118_LocalIncreaseSocketedMeleeGemLevel"] = { + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_829382474", + ["text"] = "# to Level of Socketed Melee Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", }, - ["8225_BrandAttachmentRange"] = { + ["1314_LifeRegenerationRate"] = { + ["Gloves"] = { + ["min"] = 7, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", + ["id"] = "scourge.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + }, + ["Helmet"] = { + ["min"] = 7, + ["max"] = 15, }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, + ["Chest"] = { + ["min"] = 7, + ["max"] = 15, }, ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["min"] = 7, + ["max"] = 15, }, }, - ["1308_ManaRecoveryRate"] = { + ["1485_MaximumEnergyShieldOnKillPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", + ["id"] = "scourge.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", }, ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 3, + ["max"] = 4, }, ["sign"] = "", }, - ["6719_NearbyEnemyLightningDamageResistance"] = { + ["1705_MinionDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1849749435", - ["text"] = "Nearby Enemies have #% to Lightning Resistance", + ["id"] = "scourge.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["Gloves"] = { + ["min"] = 8, + ["max"] = 15, }, - ["sign"] = "-", + ["sign"] = "", }, - ["1346_FireResistance"] = { + ["1151_IncreasedAttackSpeed"] = { + ["Gloves"] = { + ["min"] = 4, + ["max"] = 10, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_681332047", + ["text"] = "#% increased Attack Speed", + }, ["Quiver"] = { - ["min"] = 18, - ["max"] = 35, + ["min"] = 4, + ["max"] = 10, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Shield"] = { + ["min"] = 4, + ["max"] = 10, }, + }, + ["116_LocalIncreaseSocketedProjectileGemLevel"] = { ["specialCaseData"] = { }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2176571093", + ["text"] = "# to Level of Socketed Projectile Gems", + }, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 18, - ["max"] = 35, + }, + ["5609_FasterBleedDamage"] = { + ["2HMace"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["Bow"] = { + ["min"] = 8, + ["max"] = 13, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 13, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "scourge.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", }, - ["Ring"] = { - ["min"] = 18, - ["max"] = 35, + ["1HMace"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["1HAxe"] = { + ["min"] = 4, + ["max"] = 13, }, ["2HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + ["min"] = 4, + ["max"] = 13, }, ["1HWeapon"] = { - ["min"] = 18, - ["max"] = 35, + ["min"] = 4, + ["max"] = 13, }, - ["Amulet"] = { - ["min"] = 18, - ["max"] = 35, + ["1HSword"] = { + ["min"] = 4, + ["max"] = 13, }, }, - ["297_DisplaySocketedGemsGetAddedChaosDamage"] = { + ["1532_MovementVelocity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_411460446", - ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", - }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 22, + ["id"] = "scourge.stat_2250533757", + ["text"] = "#% increased Movement Speed", }, ["sign"] = "", + ["Boots"] = { + ["min"] = 8, + ["max"] = 15, + }, }, - ["105_LocalIncreaseSocketedAuraLevel"] = { + ["1484_MaximumLifeOnKillPercent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2452998583", - ["text"] = "# to Level of Socketed Aura Gems", + ["id"] = "scourge.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", }, ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 3, + ["max"] = 4, }, - ["sign"] = "+", + ["sign"] = "", }, - ["8751_CallToArms"] = { + ["110_LocalIncreaseSocketedLightningGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3292262540", - ["text"] = "Call to Arms", + ["id"] = "scourge.stat_4043416969", + ["text"] = "# to Level of Socketed Lightning Gems", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["4938_ChanceToIntimidateOnHit"] = { + ["4952_ChanceToIntimidateOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -48760,1037 +68279,1224 @@ return { ["max"] = 12, }, }, - ["1644_TrapThrowSpeed"] = { - ["specialCaseData"] = { + ["994_FireDamageOverTimeMultiplier"] = { + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 24, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", + ["id"] = "scourge.stat_3382807662", + ["text"] = "#% to Fire Damage over Time Multiplier", }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 15, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 16, + }, + ["Wand"] = { + ["min"] = 11, + ["max"] = 16, }, - ["sign"] = "", - }, - ["2323_FrenzyChargeOnKillChance"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["sign"] = "+", + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 16, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["Staff"] = { + ["min"] = 16, + ["max"] = 24, }, - ["sign"] = "", }, - ["1299_LifeRegenerationRate"] = { - ["Gloves"] = { - ["min"] = 7, - ["max"] = 15, + ["8785_Runebinder"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "scourge.stat_4080245957", + ["text"] = "Runebinder", }, ["Chest"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["specialCaseData"] = { - }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 7, - ["max"] = 15, - }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 15, + ["min"] = 1, + ["max"] = 1, }, }, - ["2147_PhysicalDamageTakenAsLightningPercent"] = { + ["1530_ProjectileSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - }, - ["Helmet"] = { - ["min"] = 4, - ["max"] = 5, + ["id"] = "scourge.stat_3759663284", + ["text"] = "#% increased Projectile Speed", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 14, + ["max"] = 25, + }, }, - ["1477_GainLifeOnBlock"] = { + ["131_LocalSocketedWarcryGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_762600725", - ["text"] = "# Life gained when you Block", + ["id"] = "scourge.stat_1672793731", + ["text"] = "# to Level of Socketed Warcry Gems", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["1331_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["999_ColdDamageOverTimeMultiplier"] = { + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 24, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skill Gems", + ["id"] = "scourge.stat_1950806024", + ["text"] = "#% to Cold Damage over Time Multiplier", + }, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 16, + }, + ["Wand"] = { + ["min"] = 11, + ["max"] = 16, }, ["specialCaseData"] = { }, ["sign"] = "+", ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["min"] = 11, + ["max"] = 16, }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["Staff"] = { + ["min"] = 16, + ["max"] = 24, }, }, - ["1738_ChanceToIgnite"] = { + ["1434_ManaLeechPermyriad"] = { + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1335054179", - ["text"] = "#% chance to Ignite", + ["id"] = "scourge.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["specialCaseData"] = { + }, + ["sign"] = "", + ["Amulet"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, + }, + ["1124_LocalLightningDamage"] = { + ["1HMace"] = { + ["min"] = 20.5, + ["max"] = 59.5, + }, + ["Wand"] = { + ["min"] = 20.5, + ["max"] = 59.5, + }, + ["2HMace"] = { + ["min"] = 38, + ["max"] = 113, + }, + ["1HSword"] = { + ["min"] = 20.5, + ["max"] = 59.5, }, ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 38, + ["max"] = 113, + }, + ["Staff"] = { + ["min"] = 38, + ["max"] = 113, + }, + ["2HSword"] = { + ["min"] = 38, + ["max"] = 113, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + }, + ["Claw"] = { + ["min"] = 20.5, + ["max"] = 59.5, + }, + ["Dagger"] = { + ["min"] = 20.5, + ["max"] = 59.5, + }, + ["1HAxe"] = { + ["min"] = 20.5, + ["max"] = 59.5, + }, + ["2HWeapon"] = { + ["min"] = 30.5, + ["max"] = 113, }, - ["sign"] = "", ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 20.5, + ["max"] = 59.5, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Bow"] = { + ["min"] = 30.5, + ["max"] = 113, }, }, - ["2674_LightningResistancePenetration"] = { + ["2161_PhysicalDamageTakenAsCold"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - }, - ["2HWeapon"] = { - ["min"] = 6, - ["max"] = 8, + ["id"] = "scourge.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", }, - ["specialCaseData"] = { + ["Helmet"] = { + ["min"] = 4, + ["max"] = 5, }, ["sign"] = "", - ["1HWeapon"] = { + }, + ["2687_FireResistancePenetration"] = { + ["1HMace"] = { ["min"] = 3, ["max"] = 5, }, - ["Amulet"] = { + ["sign"] = "", + ["Dagger"] = { ["min"] = 3, ["max"] = 5, }, - }, - ["8782_Runebinder"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4080245957", - ["text"] = "Runebinder", + ["id"] = "scourge.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 5, }, - }, - ["2325_PowerChargeOnKillChance"] = { - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 3, + ["max"] = 5, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["Amulet"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["specialCaseData"] = { }, - ["sign"] = "", }, - ["8746_PerfectAgony"] = { + ["1687_ConvertPhysicalToFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3884934810", - ["text"] = "Perfect Agony", + ["id"] = "scourge.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 25, + ["max"] = 25, }, + ["sign"] = "", }, - ["1355_MaximumLightningResistance"] = { - ["specialCaseData"] = { - }, + ["2498_TotemPhysicalDamageReduction"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1011760251", - ["text"] = "#% to maximum Lightning Resistance", - }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["id"] = "scourge.stat_3616562963", + ["text"] = "Totems have #% additional Physical Damage Reduction", }, - }, - ["1522_MinimumEnduranceCharges"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3706959521", - ["text"] = "# to Minimum Endurance Charges", + ["sign"] = "", + ["Amulet"] = { + ["min"] = 11, + ["max"] = 25, }, - ["Ring"] = { - ["min"] = 1, - ["max"] = 1, + ["Boots"] = { + ["min"] = 11, + ["max"] = 25, }, - ["sign"] = "+", }, - ["1300_LifeRecoveryRate"] = { + ["2536_OnslaughtWhenHitForDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["id"] = "scourge.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", }, ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 2, + ["max"] = 4, }, ["sign"] = "", }, - ["2262_FasterIgniteDamage"] = { + ["1660_MineLayingSpeed"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", + ["id"] = "scourge.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", }, - ["specialCaseData"] = { + ["Gloves"] = { + ["min"] = 7, + ["max"] = 15, }, ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 9, - }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 13, - }, }, - ["2321_EnduranceChargeOnKillChance"] = { + ["128_LocalIncreaseSocketedSupportGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["id"] = "scourge.stat_4154259475", + ["text"] = "# to Level of Socketed Support Gems", }, - ["Ring"] = { - ["min"] = 5, - ["max"] = 12, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", + ["sign"] = "+", }, - ["116_LocalSocketedWarcryGemLevel"] = { + ["8751_AvatarOfFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1672793731", - ["text"] = "# to Level of Socketed Warcry Gems", + ["id"] = "scourge.stat_346029096", + ["text"] = "Avatar of Fire", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["8770_IronReflexes"] = { + ["115_IncreasedSocketedAoEGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_326965591", - ["text"] = "Iron Reflexes", + ["id"] = "scourge.stat_2551600084", + ["text"] = "# to Level of Socketed AoE Gems", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["113_LocalIncreaseSocketedSupportGemLevel"] = { + ["1375_MaximumChaosResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4154259475", - ["text"] = "# to Level of Socketed Support Gems", + ["id"] = "scourge.stat_1301765461", + ["text"] = "#% to maximum Chaos Resistance", }, - ["Chest"] = { + ["sign"] = "+", + ["Shield"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["2604_MinionLifeLeech"] = { + ["1898_ReducedCurseEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2770782267", - ["text"] = "Minions Leech #% of Damage as Life", + ["id"] = "scourge.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", }, - ["Helmet"] = { - ["min"] = 0.2, - ["max"] = 0.7, + ["Ring"] = { + ["min"] = 16, + ["max"] = 25, }, ["sign"] = "", }, - ["8747_AncestralBond"] = { + ["2232_TemporalChainsOnHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2648570028", - ["text"] = "Ancestral Bond", + ["id"] = "scourge.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", }, - ["Chest"] = { + ["Gloves"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8781_ZealotsOath"] = { + ["1766_CullingStrike"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_632761194", - ["text"] = "Zealot's Oath", + ["1HSword"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { + ["Wand"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["5594_FasterBleedDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", - ["1HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 4, - ["max"] = 13, + ["Claw"] = { + ["min"] = 1, + ["max"] = 1, }, - }, - ["2217_TemporalChainsOnHit"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 1, + ["max"] = 1, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4139135963", - ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["id"] = "scourge.stat_2524254339", + ["text"] = "Culling Strike", }, - ["Gloves"] = { + ["Bow"] = { ["min"] = 1, ["max"] = 1, }, - }, - ["99_IncreaseSocketedDurationGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2115168758", - ["text"] = "# to Level of Socketed Duration Gems", + ["2HAxe"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { + ["1HAxe"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", - }, - ["8762_EternalYouth"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1308467455", - ["text"] = "Eternal Youth", + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { + ["2HMace"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8755_CrimsonDance"] = { + ["114_IncreaseSocketedDurationGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_300702212", - ["text"] = "Crimson Dance", + ["id"] = "scourge.stat_2115168758", + ["text"] = "# to Level of Socketed Duration Gems", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["1875_MaximumSkeletonCount"] = { + ["8784_ZealotsOath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2428829184", - ["text"] = "# to maximum number of Skeletons", + ["id"] = "scourge.stat_632761194", + ["text"] = "Zealot's Oath", }, - ["sign"] = "+", - ["Boots"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1508_AdditionalChain"] = { - ["specialCaseData"] = { + ["1321_ManaRegeneration"] = { + ["1HMace"] = { + ["min"] = 18, + ["max"] = 45, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1787073323", - ["text"] = "Skills Chain # times", + ["Wand"] = { + ["min"] = 18, + ["max"] = 45, }, - ["sign"] = "+", - ["Quiver"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 45, }, - }, - ["2597_MinionBlockChance"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 18, + ["max"] = 45, + }, + ["1HWeapon"] = { + ["min"] = 18, + ["max"] = 45, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3374054207", - ["text"] = "Minions have #% Chance to Block Attack Damage", - }, - ["Helmet"] = { - ["min"] = 11, - ["max"] = 19, + ["id"] = "scourge.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", }, - ["sign"] = "+", - }, - ["3891_ChanceToAvoidBleeding"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["Staff"] = { + ["min"] = 18, + ["max"] = 45, }, ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["min"] = 18, + ["max"] = 45, }, - ["sign"] = "", - }, - ["1509_AdditionalPierce"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["min"] = 18, + ["max"] = 45, + }, + ["Amulet"] = { + ["min"] = 18, + ["max"] = 45, + }, + ["Shield"] = { + ["min"] = 18, + ["max"] = 45, }, + }, + ["4406_AttacksTauntOnHitChance"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "scourge.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", }, - ["sign"] = "", - ["Quiver"] = { - ["min"] = 2, - ["max"] = 2, + ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 25, + }, + ["2HWeapon"] = { + ["min"] = 11, + ["max"] = 25, }, - }, - ["8789_SupremeEgo"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1421267186", - ["text"] = "Supreme Ego", + ["sign"] = "", + ["2HAxe"] = { + ["min"] = 11, + ["max"] = 25, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HAxe"] = { + ["min"] = 11, + ["max"] = 25, }, }, - ["1527_MinimumFrenzyCharges"] = { + ["8793_UnwaveringStance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_658456881", - ["text"] = "# to Minimum Frenzy Charges", + ["id"] = "scourge.stat_1683578560", + ["text"] = "Unwavering Stance", }, - ["Ring"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["1619_StunRecovery"] = { + ["1380_ChillEffectivenessOnSelf"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", + ["id"] = "scourge.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 10, - ["max"] = 15, + ["Ring"] = { + ["min"] = 31, + ["max"] = 40, }, + ["sign"] = "", }, - ["7942_ReducedPhysicalReflectTaken"] = { + ["312_DisplaySocketedGemsGetAddedChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_129035625", - ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["id"] = "scourge.stat_411460446", + ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", }, - ["Chest"] = { - ["min"] = 41, - ["max"] = 60, + ["Gloves"] = { + ["min"] = 1, + ["max"] = 22, }, ["sign"] = "", }, - ["8774_MinionInstability"] = { + ["8782_MonsterNemesisOndarsGuile"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_433293234", - ["text"] = "Minion Instability", + ["id"] = "scourge.stat_2606808909", + ["text"] = "Arrow Dancing", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["1390_FireDamageLifeLeechPermyriad"] = { + ["1524_AdditionalPierce"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - }, - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["id"] = "scourge.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", }, ["sign"] = "", + ["Quiver"] = { + ["min"] = 2, + ["max"] = 2, + }, }, - ["8772_Magebane"] = { + ["1537_MinimumEnduranceCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4180925106", - ["text"] = "Magebane", + ["id"] = "scourge.stat_3706959521", + ["text"] = "# to Minimum Endurance Charges", }, - ["Chest"] = { + ["Ring"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["8779_MonsterNemesisOndarsGuile"] = { + ["8756_Conduit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2606808909", - ["text"] = "Arrow Dancing", + ["id"] = "scourge.stat_1994392904", + ["text"] = "Conduit", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["5429_IncreasedWeaponElementalDamagePercent"] = { + ["1227_CriticalStrikeMultiplier"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attack Skills", - }, - ["Ring"] = { - ["min"] = 8, - ["max"] = 24, + ["id"] = "scourge.stat_3556824919", + ["text"] = "#% to Global Critical Strike Multiplier", }, - ["Quiver"] = { - ["min"] = 8, - ["max"] = 24, + ["Amulet"] = { + ["min"] = 17, + ["max"] = 25, }, + ["sign"] = "+", + }, + ["986_GlobalDamageOverTimeMultiplier"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 8, - ["max"] = 24, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3988349707", + ["text"] = "#% to Damage over Time Multiplier", }, - ["Belt"] = { + ["Amulet"] = { ["min"] = 8, - ["max"] = 24, + ["max"] = 16, }, + ["sign"] = "+", }, - ["1361_ChaosResistance"] = { - ["Quiver"] = { - ["min"] = 10, - ["max"] = 25, - }, + ["8392_StrengthAppliesToFishingReelSpeed"] = { ["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, + ["id"] = "scourge.stat_4039414411", + ["text"] = "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", }, - ["Amulet"] = { - ["min"] = 10, - ["max"] = 25, + ["FishingRod"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["3116_MinionAttacksTauntOnHitChance"] = { + ["1888_MaximumZombieCount"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2911442053", - ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["id"] = "scourge.stat_1652515349", + ["text"] = "# to maximum number of Raised Zombies", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 11, - ["max"] = 19, + ["sign"] = "+", + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1914_AttackerTakesDamageNoRange"] = { + ["1365_MaximumColdResist"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["id"] = "scourge.stat_3676141501", + ["text"] = "#% to maximum Cold Resistance", }, + ["sign"] = "+", ["Shield"] = { - ["min"] = 20, - ["max"] = 100, + ["min"] = 1, + ["max"] = 1, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 100, + }, + ["1347_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skill Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Helmet"] = { - ["min"] = 20, - ["max"] = 100, + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, }, - ["Belt"] = { - ["min"] = 20, - ["max"] = 100, + ["1HWeapon"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["1HMace"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["8760_ElementalOverload"] = { + ["1500_MinionLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3574189159", - ["text"] = "Elemental Overload", + ["id"] = "scourge.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 10, + ["max"] = 15, }, + ["sign"] = "", }, - ["2276_SummonTotemCastSpeed"] = { + ["1317_MaximumManaIncreasePercent"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "scourge.stat_2748665614", + ["text"] = "#% increased maximum Mana", }, ["specialCaseData"] = { }, ["sign"] = "", - ["Amulet"] = { - ["min"] = 16, - ["max"] = 30, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 8, }, - ["Boots"] = { - ["min"] = 16, - ["max"] = 30, + ["Chest"] = { + ["min"] = 5, + ["max"] = 8, }, }, - ["8753_Conduit"] = { + ["8795_VersatileCombatant"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1994392904", - ["text"] = "Conduit", + ["id"] = "scourge.stat_593845252", + ["text"] = "Versatile Combatant", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8796_ResoluteTechnique"] = { + ["8765_EternalYouth"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3943945975", - ["text"] = "Resolute Technique", + ["id"] = "scourge.stat_1308467455", + ["text"] = "Eternal Youth", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["5439_ReducedElementalReflectTaken"] = { + ["2202_ChanceToBleed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2160417795", - ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["id"] = "scourge.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", }, - ["Chest"] = { - ["min"] = 41, - ["max"] = 60, + ["Gloves"] = { + ["min"] = 12, + ["max"] = 20, }, ["sign"] = "", }, - ["1352_ColdResistance"] = { - ["Quiver"] = { - ["min"] = 18, + ["1594_IncreasedAilmentDuration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + }, + ["Gloves"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["sign"] = "", + }, + ["922_StrengthImplicit"] = { + ["Gloves"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["2HMace"] = { + ["min"] = 20, ["max"] = 35, }, ["specialCaseData"] = { }, ["sign"] = "+", - ["Belt"] = { - ["min"] = 18, + ["2HAxe"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Boots"] = { + ["min"] = 20, ["max"] = 35, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "scourge.stat_4080418644", + ["text"] = "# to Strength", }, ["Ring"] = { - ["min"] = 18, + ["min"] = 20, ["max"] = 35, }, - ["2HWeapon"] = { - ["min"] = 18, + ["Amulet"] = { + ["min"] = 20, ["max"] = 35, }, - ["1HWeapon"] = { - ["min"] = 18, + ["1HSword"] = { + ["min"] = 20, ["max"] = 35, }, - ["Amulet"] = { - ["min"] = 18, + ["Staff"] = { + ["min"] = 20, ["max"] = 35, }, - }, - ["87_LocalIncreaseSocketedIntelligenceGemLevel"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 20, + ["max"] = 35, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1719423857", - ["text"] = "# to Level of Socketed Intelligence Gems", + ["Chest"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["1HMace"] = { + ["min"] = 20, + ["max"] = 35, }, ["Helmet"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["2HWeapon"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["1HWeapon"] = { + ["min"] = 20, + ["max"] = 35, + }, + ["1HAxe"] = { + ["min"] = 20, + ["max"] = 35, + }, + }, + ["1348_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1HMace"] = { ["min"] = 1, ["max"] = 1, }, ["sign"] = "+", - }, - ["1741_ChanceToFreeze"] = { + ["Dagger"] = { + ["min"] = 1, + ["max"] = 1, + }, + ["Staff"] = { + ["min"] = 2, + ["max"] = 2, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2309614417", - ["text"] = "#% chance to Freeze", + ["id"] = "scourge.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skill Gems", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 2, + ["max"] = 2, + }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 1, + ["max"] = 1, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Wand"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["1493_IncreasedTotemLife"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_686254215", - ["text"] = "#% increased Totem Life", - }, + ["904_AdditionalSpellBlock"] = { ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 7, - ["max"] = 15, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_19803471", + ["text"] = "#% Chance to Block Spell Damage", }, - ["Boots"] = { - ["min"] = 7, - ["max"] = 15, + ["sign"] = "+", + ["Shield"] = { + ["min"] = 4, + ["max"] = 9, }, }, - ["1594_ReducedBurnDuration"] = { + ["1572_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "scourge.stat_876831634", + ["text"] = "Cannot be Frozen", }, - ["Ring"] = { - ["min"] = 31, - ["max"] = 40, + ["Boots"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["979_FireDamageOverTimeMultiplier"] = { + ["2612_MinionBlockChance"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3382807662", - ["text"] = "#% to Fire Damage over Time Multiplier", - }, - ["specialCaseData"] = { + ["id"] = "scourge.stat_3374054207", + ["text"] = "Minions have #% Chance to Block Attack Damage", }, - ["sign"] = "+", - ["1HWeapon"] = { + ["Helmet"] = { ["min"] = 11, - ["max"] = 16, - }, - ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["max"] = 19, }, + ["sign"] = "+", }, - ["1562_AvoidElementalStatusAilments"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", + ["968_SpellDamage"] = { + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, ["sign"] = "", - ["Shield"] = { - ["min"] = 17, - ["max"] = 25, + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, }, - }, - ["1497_TotemDuration"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2357996603", - ["text"] = "#% increased Totem Duration", + ["id"] = "scourge.stat_2974417149", + ["text"] = "#% increased Spell Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 12, - ["max"] = 20, + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, }, - ["Boots"] = { - ["min"] = 12, - ["max"] = 20, + ["1HWeapon"] = { + ["min"] = 23, + ["max"] = 50, }, - }, - ["1399_LightningDamageLifeLeechPermyriad"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, }, + }, + ["1316_IncreasedMana"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", + ["id"] = "scourge.stat_1050105434", + ["text"] = "# to maximum Mana", + }, + ["Ring"] = { + ["min"] = 23, + ["max"] = 40, + }, + ["specialCaseData"] = { }, + ["sign"] = "+", ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["min"] = 23, + ["max"] = 40, + }, + ["Belt"] = { + ["min"] = 23, + ["max"] = 40, }, - ["sign"] = "", }, - ["8773_ManaShield"] = { + ["123_IncreaseSocketedCurseGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_373964381", - ["text"] = "Mind Over Matter", + ["id"] = "scourge.stat_3691695237", + ["text"] = "# to Level of Socketed Curse Gems", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["2683_ChanceToGainOnslaughtOnKill"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["1018_LocalPhysicalDamage"] = { + ["Wand"] = { + ["min"] = 3.5, + ["max"] = 10.5, }, - ["Quiver"] = { - ["min"] = 5, - ["max"] = 10, + ["Bow"] = { + ["min"] = 6.5, + ["max"] = 20.5, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 3.5, + ["max"] = 10.5, + }, + ["Staff"] = { + ["min"] = 6.5, + ["max"] = 20.5, + }, + ["1HMace"] = { + ["min"] = 3.5, + ["max"] = 10.5, }, ["sign"] = "", - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["Dagger"] = { + ["min"] = 3.5, + ["max"] = 10.5, }, - }, - ["8769_Impaler"] = { - ["specialCaseData"] = { + ["Claw"] = { + ["min"] = 3.5, + ["max"] = 10.5, + }, + ["2HSword"] = { + ["min"] = 6.5, + ["max"] = 20.5, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1441799693", - ["text"] = "The Impaler", + ["id"] = "scourge.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["2HAxe"] = { + ["min"] = 6.5, + ["max"] = 20.5, + }, + ["2HMace"] = { + ["min"] = 6.5, + ["max"] = 20.5, + }, + ["1HAxe"] = { + ["min"] = 3.5, + ["max"] = 10.5, + }, + ["2HWeapon"] = { + ["min"] = 6.5, + ["max"] = 20.5, + }, + ["1HWeapon"] = { + ["min"] = 3.5, + ["max"] = 10.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, }, - ["2215_FlammabilityOnHit"] = { + ["2164_PhysicalDamageTakenAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_654274615", - ["text"] = "Curse Enemies with Flammability on Hit", + ["id"] = "scourge.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", }, - ["Gloves"] = { - ["min"] = 1, - ["max"] = 1, + ["Helmet"] = { + ["min"] = 4, + ["max"] = 5, }, + ["sign"] = "", }, - ["1335_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["990_PhysicalDamageOverTimeMultiplier"] = { + ["2HWeapon"] = { + ["min"] = 16, + ["max"] = 24, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skill Gems", + ["id"] = "scourge.stat_1314617696", + ["text"] = "#% to Physical Damage over Time Multiplier", }, - ["specialCaseData"] = { + ["Wand"] = { + ["min"] = 11, + ["max"] = 16, }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["1HMace"] = { + ["min"] = 11, + ["max"] = 16, + }, + ["specialCaseData"] = { }, + ["sign"] = "+", ["1HWeapon"] = { + ["min"] = 11, + ["max"] = 16, + }, + ["Staff"] = { + ["min"] = 16, + ["max"] = 24, + }, + }, + ["101_LocalIncreaseSocketedDexterityGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2718698372", + ["text"] = "# to Level of Socketed Dexterity Gems", + }, + ["Helmet"] = { ["min"] = 1, ["max"] = 1, }, ["sign"] = "+", }, - ["2483_TotemPhysicalDamageReduction"] = { + ["1384_LifeLeechPermyriad"] = { + ["Gloves"] = { + ["min"] = 0.2, + ["max"] = 0.5, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3616562963", - ["text"] = "Totems have #% additional Physical Damage Reduction", + ["id"] = "scourge.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["Quiver"] = { + ["min"] = 0.2, + ["max"] = 0.5, }, ["specialCaseData"] = { }, ["sign"] = "", ["Amulet"] = { - ["min"] = 11, - ["max"] = 25, + ["min"] = 0.2, + ["max"] = 0.5, }, - ["Boots"] = { - ["min"] = 11, - ["max"] = 25, + ["Ring"] = { + ["min"] = 0.2, + ["max"] = 0.5, }, }, - ["1674_ConvertPhysicalToCold"] = { + ["8780_PointBlank"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["id"] = "scourge.stat_2896346114", + ["text"] = "Point Blank", }, - ["Gloves"] = { - ["min"] = 25, - ["max"] = 25, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, - ["sign"] = "", }, - ["1395_ColdDamageLifeLeechPermyriad"] = { + ["1401_PhysicalDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "scourge.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", }, ["Amulet"] = { ["min"] = 0.2, @@ -49798,21 +69504,54 @@ return { }, ["sign"] = "", }, - ["1485_MinionLife"] = { + ["8768_KeystoneGhostReaver"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "scourge.stat_4272248216", + ["text"] = "Ghost Reaver", }, - ["Helmet"] = { - ["min"] = 10, - ["max"] = 15, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, + }, + }, + ["5610_FasterPoisonDamage"] = { + ["1HSword"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Dagger"] = { + ["min"] = 4, + ["max"] = 9, + }, + ["Claw"] = { + ["min"] = 4, + ["max"] = 9, + }, + ["2HSword"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + }, + ["2HWeapon"] = { + ["min"] = 4, + ["max"] = 13, + }, + ["1HWeapon"] = { + ["min"] = 4, + ["max"] = 13, + }, }, - ["1599_AreaOfEffect"] = { + ["1614_AreaOfEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -49826,563 +69565,731 @@ return { }, ["sign"] = "", }, - ["1369_LifeLeechPermyriad"] = { + ["1296_LocalEnergyShield"] = { ["Gloves"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["min"] = 8, + ["max"] = 30, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["id"] = "scourge.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", }, - ["Quiver"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Helmet"] = { + ["min"] = 8, + ["max"] = 30, }, ["specialCaseData"] = { + ["overrideModLine"] = "# to maximum Energy Shield", }, - ["sign"] = "", - ["Amulet"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 8, + ["max"] = 30, }, - ["Ring"] = { - ["min"] = 0.2, - ["max"] = 0.5, + ["Boots"] = { + ["min"] = 8, + ["max"] = 30, }, }, - ["8758_EldritchBattery"] = { + ["1609_ReducedBurnDuration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2262736444", - ["text"] = "Eldritch Battery", + ["id"] = "scourge.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 31, + ["max"] = 40, }, + ["sign"] = "", }, - ["907_StrengthImplicit"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, - }, + ["1762_AreaDamage"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Belt"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_4251717817", + ["text"] = "#% increased Area Damage", }, ["Amulet"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 11, + ["max"] = 30, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_4080418644", - ["text"] = "# to Strength", + ["sign"] = "", + }, + ["1144_SpellAddedPhysicalDamage"] = { + ["Wand"] = { + ["min"] = 17, + ["max"] = 30.5, }, - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17, + ["max"] = 30.5, }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 35, + ["Staff"] = { + ["min"] = 25, + ["max"] = 45.5, }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + }, + ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 25, + ["max"] = 45.5, }, ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 17, + ["max"] = 30.5, }, - ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["1HMace"] = { + ["min"] = 17, + ["max"] = 30.5, }, }, - ["6904_ManaFlaskPassiveChargeGain"] = { + ["1583_ChanceToAvoidPoison"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1193925814", - ["text"] = "Mana Flasks gain # Charge every 3 seconds", + ["id"] = "scourge.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 1, - ["max"] = 1, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, }, + ["sign"] = "", }, - ["8766_GlancingBlows"] = { + ["119_LocalIncreaseSocketedMinionGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4266776872", - ["text"] = "Glancing Blows", + ["id"] = "scourge.stat_3604946673", + ["text"] = "# to Level of Socketed Minion Gems", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, + ["sign"] = "+", }, - ["1939_ReducedReservation"] = { + ["2213_LightRadius"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["id"] = "scourge.stat_1263695895", + ["text"] = "#% increased Light Radius", }, - ["Amulet"] = { - ["min"] = 6, - ["max"] = 12, + ["Helmet"] = { + ["min"] = 16, + ["max"] = 35, }, ["sign"] = "", }, - ["3465_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { + ["931_PercentageIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3643913768", - ["text"] = "Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit", + ["id"] = "scourge.stat_656461285", + ["text"] = "#% increased Intelligence", }, - ["Chest"] = { - ["min"] = 8, - ["max"] = 19, + ["Amulet"] = { + ["min"] = 4, + ["max"] = 7, }, ["sign"] = "", }, - ["3905_FlaskChanceToNotConsumeCharges"] = { + ["8750_AncestralBond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", + ["id"] = "scourge.stat_2648570028", + ["text"] = "Ancestral Bond", }, - ["sign"] = "", - ["Belt"] = { - ["min"] = 5, - ["max"] = 8, + ["Chest"] = { + ["min"] = 1, + ["max"] = 1, }, }, - ["8750_BloodMagic"] = { + ["2556_FishingCastDistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2801937280", - ["text"] = "Blood Magic", + ["id"] = "scourge.stat_170497091", + ["text"] = "#% increased Fishing Range", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["FishingRod"] = { + ["min"] = 13, + ["max"] = 16, }, + ["sign"] = "", }, - ["2605_MinionLifeRegeneration"] = { + ["3906_ChanceToAvoidBleeding"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", + ["id"] = "scourge.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", }, - ["Helmet"] = { - ["min"] = 2, - ["max"] = 3.5, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, }, ["sign"] = "", }, - ["8777_PointBlank"] = { + ["8753_BloodMagic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2896346114", - ["text"] = "Point Blank", + ["id"] = "scourge.stat_2801937280", + ["text"] = "Blood Magic", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["8192_ChanceToShockAttackersOnBlock"] = { + ["1547_MinimumPowerCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_575111651", - ["text"] = "#% chance to Shock Attackers for 4 seconds on Block", + ["id"] = "scourge.stat_1999711879", + ["text"] = "# to Minimum Power Charges", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 14, - ["max"] = 25, + ["Ring"] = { + ["min"] = 1, + ["max"] = 1, }, + ["sign"] = "+", }, - ["1579_IncreasedAilmentDuration"] = { - ["specialCaseData"] = { + ["2688_ColdResistancePenetration"] = { + ["Wand"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["Staff"] = { + ["min"] = 6, + ["max"] = 8, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - }, - ["Gloves"] = { - ["min"] = 7, - ["max"] = 12, + ["id"] = "scourge.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", }, - ["sign"] = "", - }, - ["914_PercentageStrength"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_734614379", - ["text"] = "#% increased Strength", + ["1HMace"] = { + ["min"] = 3, + ["max"] = 5, + }, + ["2HWeapon"] = { + ["min"] = 6, + ["max"] = 8, + }, + ["1HWeapon"] = { + ["min"] = 3, + ["max"] = 5, }, ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["min"] = 3, + ["max"] = 5, }, - ["sign"] = "", }, - ["3062_UnholyMightOnKillPercentChance"] = { + ["1710_ElementalDamagePercent"] = { + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, + }, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["id"] = "scourge.stat_3141070085", + ["text"] = "#% increased Elemental Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, + }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 23, + ["max"] = 50, }, - ["2HWeapon"] = { - ["min"] = 8, - ["max"] = 10, + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, }, }, - ["916_PercentageIntelligence"] = { - ["specialCaseData"] = { + ["1597_StunDurationIncreasePercent"] = { + ["2HMace"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["1HMace"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Bow"] = { + ["min"] = 17, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "scourge.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", }, - ["Amulet"] = { - ["min"] = 4, - ["max"] = 7, + ["1HAxe"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["1HSword"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Quiver"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Wand"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Staff"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["2HSword"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["2HAxe"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Claw"] = { + ["min"] = 17, + ["max"] = 25, }, - ["sign"] = "", - }, - ["86_LocalIncreaseSocketedDexterityGemLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2718698372", - ["text"] = "# to Level of Socketed Dexterity Gems", + ["2HWeapon"] = { + ["min"] = 17, + ["max"] = 25, }, - ["Helmet"] = { - ["min"] = 1, - ["max"] = 1, + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 25, + }, + ["Belt"] = { + ["min"] = 17, + ["max"] = 25, }, - ["sign"] = "+", }, - ["889_AdditionalSpellBlock"] = { - ["specialCaseData"] = { + ["4480_ColdExposureOnHit"] = { + ["1HMace"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["Staff"] = { + ["min"] = 10, + ["max"] = 18, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_19803471", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "scourge.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 4, - ["max"] = 9, + ["specialCaseData"] = { + }, + ["2HWeapon"] = { + ["min"] = 10, + ["max"] = 18, + }, + ["1HWeapon"] = { + ["min"] = 7, + ["max"] = 12, + }, + ["Wand"] = { + ["min"] = 7, + ["max"] = 12, }, }, - ["1184_CriticalStrikeChance"] = { + ["1414_LightningDamageLifeLeechPermyriad"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "scourge.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", }, ["Amulet"] = { - ["min"] = 17, - ["max"] = 25, + ["min"] = 0.2, + ["max"] = 0.5, }, ["sign"] = "", }, - ["8759_ElementalEquilibrium"] = { - ["specialCaseData"] = { - }, + ["1311_LifeRegeneration"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1263158408", - ["text"] = "Elemental Equilibrium", + ["id"] = "scourge.stat_3325883026", + ["text"] = "Regenerate # Life per second", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["AbyssJewel"] = { + ["min"] = 10.8, + ["max"] = 26.7, }, - }, - ["2156_AdditionalBlock"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1702195217", - ["text"] = "#% Chance to Block Attack Damage", + ["sign"] = "", + ["BaseJewel"] = { + ["min"] = 10.8, + ["max"] = 26.7, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 2, - ["max"] = 9, + ["AnyJewel"] = { + ["min"] = 10.8, + ["max"] = 26.7, }, }, - ["1464_ManaGainPerTarget"] = { + ["2620_MinionLifeRegeneration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "scourge.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", }, - ["Gloves"] = { + ["Helmet"] = { ["min"] = 2, - ["max"] = 5, + ["max"] = 3.5, }, ["sign"] = "", }, - ["8783_SacredBastion"] = { + ["8776_ManaShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3868073741", - ["text"] = "Imbalanced Guard", + ["id"] = "scourge.stat_373964381", + ["text"] = "Mind Over Matter", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["3240_BasePenetrateElementalResistances"] = { + ["8337_SpellsHinderOnHitChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_697807915", - ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["id"] = "scourge.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", }, - ["Amulet"] = { - ["min"] = 3, - ["max"] = 5, + ["Chest"] = { + ["min"] = 7, + ["max"] = 12, }, ["sign"] = "", }, - ["1565_AvoidIgnite"] = { + ["892_ChanceToSuppressSpells"] = { + ["Gloves"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_3680664274", + ["text"] = "#% chance to Suppress Spell Damage", + }, + ["Helmet"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["specialCaseData"] = { + }, + ["sign"] = "+", + ["Chest"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, + }, + ["3262_AuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", + ["id"] = "scourge.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", }, - ["Ring"] = { - ["min"] = 26, - ["max"] = 40, + ["Chest"] = { + ["min"] = 7, + ["max"] = 12, }, ["sign"] = "", }, - ["1084_FireDamagePercentage"] = { + ["1493_GainManaOnBlock"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "scourge.stat_2122183138", + ["text"] = "# Mana gained when you Block", }, - ["specialCaseData"] = { + ["sign"] = "", + ["Shield"] = { + ["min"] = 31, + ["max"] = 60, }, - ["2HWeapon"] = { - ["min"] = 34, - ["max"] = 75, + }, + ["1255_StunThresholdReduction"] = { + ["1HSword"] = { + ["min"] = 5, + ["max"] = 10, }, - ["1HWeapon"] = { - ["min"] = 23, - ["max"] = 50, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, ["sign"] = "", - }, - ["975_PhysicalDamageOverTimeMultiplier"] = { + ["2HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["Belt"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["2HSword"] = { + ["min"] = 5, + ["max"] = 10, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1314617696", - ["text"] = "#% to Physical Damage over Time Multiplier", + ["id"] = "scourge.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", }, ["specialCaseData"] = { }, + ["Staff"] = { + ["min"] = 5, + ["max"] = 10, + }, + ["1HAxe"] = { + ["min"] = 5, + ["max"] = 10, + }, ["2HWeapon"] = { - ["min"] = 16, - ["max"] = 24, + ["min"] = 5, + ["max"] = 10, }, ["1HWeapon"] = { - ["min"] = 11, - ["max"] = 16, + ["min"] = 5, + ["max"] = 10, + }, + ["2HMace"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "+", }, - ["8775_TheAgnostic"] = { - ["specialCaseData"] = { + ["1104_LocalFireDamage"] = { + ["2HMace"] = { + ["min"] = 30, + ["max"] = 81.5, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_462691314", - ["text"] = "The Agnostic", + ["Staff"] = { + ["min"] = 30, + ["max"] = 81.5, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["1HSword"] = { + ["min"] = 17, + ["max"] = 53.5, }, - }, - ["1360_MaximumChaosResistance"] = { - ["specialCaseData"] = { + ["2HAxe"] = { + ["min"] = 30, + ["max"] = 81.5, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1301765461", - ["text"] = "#% to maximum Chaos Resistance", + ["1HMace"] = { + ["min"] = 17, + ["max"] = 53.5, }, - ["sign"] = "+", - ["Shield"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17, + ["max"] = 53.5, }, - }, - ["1189_CriticalStrikeChanceWithBows"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["min"] = 26.5, + ["max"] = 81.5, + }, + ["2HSword"] = { + ["min"] = 30, + ["max"] = 81.5, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["id"] = "scourge.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", }, - ["sign"] = "", - ["Quiver"] = { + ["Claw"] = { ["min"] = 17, - ["max"] = 25, + ["max"] = 53.5, + }, + ["Wand"] = { + ["min"] = 17, + ["max"] = 53.5, + }, + ["1HAxe"] = { + ["min"] = 17, + ["max"] = 53.5, + }, + ["2HWeapon"] = { + ["min"] = 26.5, + ["max"] = 81.5, + }, + ["1HWeapon"] = { + ["min"] = 17, + ["max"] = 53.5, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, }, - ["2198_LightRadius"] = { + ["1689_ConvertPhysicalToCold"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "scourge.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", }, - ["Helmet"] = { - ["min"] = 16, - ["max"] = 35, + ["Gloves"] = { + ["min"] = 25, + ["max"] = 25, }, ["sign"] = "", }, - ["1478_GainManaOnBlock"] = { + ["5467_ElusiveEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "scourge.stat_240857668", + ["text"] = "#% increased Elusive Effect", }, ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["Boots"] = { + ["min"] = 12, + ["max"] = 20, }, }, - ["8791_VaalPact"] = { + ["3920_FlaskChanceToNotConsumeCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2257118425", - ["text"] = "Vaal Pact", + ["id"] = "scourge.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Belt"] = { + ["min"] = 5, + ["max"] = 8, }, }, - ["88_LocalIncreaseSocketedGemLevel"] = { + ["1724_GlobalKnockbackChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2843100721", - ["text"] = "# to Level of Socketed Gems", + ["id"] = "scourge.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Gloves"] = { + ["min"] = 16, + ["max"] = 30, }, - ["sign"] = "+", + ["sign"] = "", }, - ["100_IncreasedSocketedAoEGemLevel"] = { - ["specialCaseData"] = { - }, + ["2698_ChanceToGainOnslaughtOnKill"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2551600084", - ["text"] = "# to Level of Socketed AoE Gems", + ["id"] = "scourge.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Quiver"] = { + ["min"] = 5, + ["max"] = 10, }, - ["sign"] = "+", - }, - ["96_LocalIncreaseSocketedChaosGemLevel"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2675603254", - ["text"] = "# to Level of Socketed Chaos Gems", + ["sign"] = "", + ["Boots"] = { + ["min"] = 5, + ["max"] = 10, + }, + }, + ["1146_SpellAddedColdDamage"] = { + ["Wand"] = { + ["min"] = 17, + ["max"] = 30.5, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17, + ["max"] = 30.5, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 25, + ["max"] = 45.5, }, - ["sign"] = "+", - }, - ["1129_SpellAddedPhysicalDamage"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "scourge.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", }, ["specialCaseData"] = { }, @@ -50394,144 +70301,170 @@ return { ["min"] = 17, ["max"] = 30.5, }, - ["sign"] = "", + ["1HMace"] = { + ["min"] = 17, + ["max"] = 30.5, + }, }, - ["1301_IncreasedMana"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1050105434", - ["text"] = "# to maximum Mana", + ["1113_LocalColdDamage"] = { + ["2HMace"] = { + ["min"] = 27, + ["max"] = 74, }, - ["Ring"] = { - ["min"] = 23, - ["max"] = 40, + ["Staff"] = { + ["min"] = 27, + ["max"] = 74, }, - ["specialCaseData"] = { + ["1HSword"] = { + ["min"] = 14, + ["max"] = 50, }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 23, - ["max"] = 40, + ["2HAxe"] = { + ["min"] = 27, + ["max"] = 74, }, - ["Belt"] = { + ["1HMace"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["sign"] = "", + ["Dagger"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["Bow"] = { ["min"] = 23, - ["max"] = 40, + ["max"] = 74, }, - }, - ["101_LocalIncreaseSocketedProjectileGemLevel"] = { - ["specialCaseData"] = { + ["2HSword"] = { + ["min"] = 27, + ["max"] = 74, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2176571093", - ["text"] = "# to Level of Socketed Projectile Gems", + ["id"] = "scourge.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Claw"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["Wand"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["1HAxe"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["2HWeapon"] = { + ["min"] = 23, + ["max"] = 74, + }, + ["1HWeapon"] = { + ["min"] = 14, + ["max"] = 50, + }, + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", }, - ["sign"] = "+", }, - ["8792_VersatileCombatant"] = { + ["8789_Solipsism"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_593845252", - ["text"] = "Versatile Combatant", + ["id"] = "scourge.stat_112130960", + ["text"] = "Solipsism", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["877_ChanceToSuppressSpells"] = { - ["Gloves"] = { - ["min"] = 5, - ["max"] = 10, + ["2558_FishingRarity"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3680664274", - ["text"] = "#% chance to Suppress Spell Damage", + ["id"] = "scourge.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", }, - ["Chest"] = { - ["min"] = 5, - ["max"] = 10, + ["FishingRod"] = { + ["min"] = 20, + ["max"] = 25, }, + ["sign"] = "", + }, + ["1479_ManaGainPerTarget"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Helmet"] = { - ["min"] = 5, - ["max"] = 10, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", }, - ["Boots"] = { - ["min"] = 5, - ["max"] = 10, + ["Gloves"] = { + ["min"] = 2, + ["max"] = 5, }, + ["sign"] = "", }, - ["1469_MaximumLifeOnKillPercent"] = { + ["1199_CriticalStrikeChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", + ["id"] = "scourge.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", }, - ["Chest"] = { - ["min"] = 3, - ["max"] = 4, + ["Amulet"] = { + ["min"] = 17, + ["max"] = 25, }, ["sign"] = "", }, - ["6720_NearbyEnemyPhysicalDamageTaken"] = { + ["3480_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_415837237", - ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["id"] = "scourge.stat_3643913768", + ["text"] = "Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit", }, - ["Helmet"] = { - ["min"] = 3, - ["max"] = 4, + ["Chest"] = { + ["min"] = 8, + ["max"] = 19, }, ["sign"] = "", }, - ["2439_LocalMeleeWeaponRange"] = { + ["1302_EnergyShieldRegeneration"] = { + ["Gloves"] = { + ["min"] = 11, + ["max"] = 25, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_350598685", - ["text"] = "# to Weapon Range", - }, - ["specialCaseData"] = { - }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 4, + ["id"] = "scourge.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", }, - ["2HWeapon"] = { - ["min"] = 1, - ["max"] = 4, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 25, }, - }, - ["2187_ChanceToBleed"] = { ["specialCaseData"] = { }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["sign"] = "", + ["Chest"] = { + ["min"] = 11, + ["max"] = 25, }, - ["Gloves"] = { - ["min"] = 12, - ["max"] = 20, + ["Boots"] = { + ["min"] = 11, + ["max"] = 25, }, - ["sign"] = "", }, - ["1895_BeltIncreasedFlaskChargesGained"] = { + ["1910_BeltIncreasedFlaskChargesGained"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -50545,262 +70478,342 @@ return { ["max"] = 25, }, }, - ["1159_IncreasedAccuracyPercent"] = { + ["1585_AvoidStun"] = { ["Gloves"] = { - ["min"] = 11, - ["max"] = 20, + ["min"] = 17, + ["max"] = 25, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - }, - ["Quiver"] = { - ["min"] = 11, - ["max"] = 20, + ["id"] = "scourge.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", }, ["specialCaseData"] = { }, ["sign"] = "", + ["Helmet"] = { + ["min"] = 17, + ["max"] = 25, + }, }, - ["3147_ChancetoGainPhasingOnKill"] = { + ["1367_ColdResistance"] = { + ["2HMace"] = { + ["min"] = 18, + ["max"] = 35, + }, ["specialCaseData"] = { }, + ["sign"] = "+", + ["Dagger"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Bow"] = { + ["min"] = 18, + ["max"] = 35, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2918708827", - ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["id"] = "scourge.stat_4220027924", + ["text"] = "#% to Cold Resistance", + }, + ["1HAxe"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Amulet"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["1HSword"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", ["Quiver"] = { - ["min"] = 11, - ["max"] = 25, + ["min"] = 18, + ["max"] = 35, }, - }, - ["4444_BaseChanceToDealTripleDamage"] = { - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_2445189705", - ["text"] = "#% chance to deal Triple Damage", + ["Wand"] = { + ["min"] = 18, + ["max"] = 35, }, - ["specialCaseData"] = { + ["Staff"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["2HSword"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["2HAxe"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Claw"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["Ring"] = { + ["min"] = 18, + ["max"] = 35, + }, + ["1HMace"] = { + ["min"] = 18, + ["max"] = 35, }, ["2HWeapon"] = { - ["min"] = 5, - ["max"] = 7, + ["min"] = 18, + ["max"] = 35, }, ["1HWeapon"] = { - ["min"] = 3, - ["max"] = 5, + ["min"] = 18, + ["max"] = 35, + }, + ["Belt"] = { + ["min"] = 18, + ["max"] = 35, }, - ["sign"] = "", }, - ["1690_MinionDamage"] = { + ["1578_ChanceToAvoidFreezeAndChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "scourge.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", }, - ["Gloves"] = { - ["min"] = 8, - ["max"] = 15, + ["Ring"] = { + ["min"] = 26, + ["max"] = 40, + }, + ["sign"] = "", + }, + ["1508_IncreasedTotemLife"] = { + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_686254215", + ["text"] = "#% increased Totem Life", + }, + ["specialCaseData"] = { }, ["sign"] = "", + ["Amulet"] = { + ["min"] = 7, + ["max"] = 15, + }, + ["Boots"] = { + ["min"] = 7, + ["max"] = 15, + }, }, - ["1479_GainEnergyShieldOnBlock"] = { + ["1186_IncreasedCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_450695450", - ["text"] = "Gain # Energy Shield when you Block", + ["id"] = "scourge.stat_2891184298", + ["text"] = "#% increased Cast Speed", }, - ["sign"] = "", - ["Shield"] = { - ["min"] = 31, - ["max"] = 60, + ["Amulet"] = { + ["min"] = 5, + ["max"] = 8, }, + ["sign"] = "", }, - ["2607_MinionChaosResistance"] = { + ["5866_GuardSkillCooldownRecovery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "scourge.stat_3150300096", + ["text"] = "Guard Skills have #% increased Cooldown Recovery Rate", }, - ["Gloves"] = { + ["sign"] = "", + ["Belt"] = { ["min"] = 14, - ["max"] = 25, + ["max"] = 19, }, - ["sign"] = "+", }, - ["125_IncreaseSocketedSupportGemQuality"] = { + ["2338_FrenzyChargeOnKillChance"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1328548975", - ["text"] = "#% to Quality of Socketed Support Gems", + ["id"] = "scourge.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", }, - ["2HWeapon"] = { - ["min"] = 9, + ["Ring"] = { + ["min"] = 5, ["max"] = 12, }, + ["sign"] = "", + }, + ["2613_MinionSpellBlockChance"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["1HWeapon"] = { - ["min"] = 9, - ["max"] = 12, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_2762046953", + ["text"] = "Minions have #% Chance to Block Spell Damage", }, - ["Shield"] = { - ["min"] = 9, - ["max"] = 12, + ["Helmet"] = { + ["min"] = 11, + ["max"] = 19, }, + ["sign"] = "+", }, - ["1515_ProjectileSpeed"] = { + ["1903_GainManaAsExtraEnergyShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "scourge.stat_2663376056", + ["text"] = "Gain #% of Maximum Mana as Extra Maximum Energy Shield", }, ["sign"] = "", - ["Quiver"] = { - ["min"] = 14, - ["max"] = 25, + ["Shield"] = { + ["min"] = 5, + ["max"] = 6, }, }, - ["1582_StunDurationIncreasePercent"] = { + ["1756_ChanceToFreeze"] = { + ["2HWeapon"] = { + ["min"] = 7, + ["max"] = 15, + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", + ["id"] = "scourge.stat_2309614417", + ["text"] = "#% chance to Freeze", }, - ["2HWeapon"] = { - ["min"] = 17, - ["max"] = 25, + ["1HMace"] = { + ["min"] = 5, + ["max"] = 10, }, - ["Quiver"] = { - ["min"] = 17, - ["max"] = 25, + ["Wand"] = { + ["min"] = 5, + ["max"] = 10, }, ["specialCaseData"] = { }, ["sign"] = "", ["1HWeapon"] = { - ["min"] = 17, - ["max"] = 25, + ["min"] = 5, + ["max"] = 10, }, - ["Belt"] = { - ["min"] = 17, - ["max"] = 25, + ["Staff"] = { + ["min"] = 7, + ["max"] = 15, }, }, - ["94_LocalIncreaseSocketedColdGemLevel"] = { - ["specialCaseData"] = { + ["1119_LightningDamagePercentage"] = { + ["1HMace"] = { + ["min"] = 23, + ["max"] = 50, }, - ["tradeMod"] = { - ["type"] = "scourge", - ["id"] = "scourge.stat_1645459191", - ["text"] = "# to Level of Socketed Cold Gems", + ["sign"] = "", + ["Dagger"] = { + ["min"] = 23, + ["max"] = 50, }, - ["Chest"] = { - ["min"] = 1, - ["max"] = 1, + ["Staff"] = { + ["min"] = 34, + ["max"] = 75, }, - ["sign"] = "+", - }, - ["1745_ChanceToShock"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1538773178", - ["text"] = "#% chance to Shock", + ["id"] = "scourge.stat_2231156303", + ["text"] = "#% increased Lightning Damage", }, ["specialCaseData"] = { }, - ["sign"] = "", + ["2HWeapon"] = { + ["min"] = 34, + ["max"] = 75, + }, ["1HWeapon"] = { - ["min"] = 5, - ["max"] = 10, + ["min"] = 23, + ["max"] = 50, }, - ["2HWeapon"] = { - ["min"] = 7, - ["max"] = 15, + ["Wand"] = { + ["min"] = 23, + ["max"] = 50, }, }, - ["108_IncreaseSocketedCurseGemLevel"] = { + ["8772_Impaler"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_3691695237", - ["text"] = "# to Level of Socketed Curse Gems", + ["id"] = "scourge.stat_1441799693", + ["text"] = "The Impaler", }, ["Chest"] = { ["min"] = 1, ["max"] = 1, }, - ["sign"] = "+", }, - ["909_IntelligenceImplicit"] = { - ["Gloves"] = { - ["min"] = 20, - ["max"] = 35, + ["1145_SpellAddedFireDamage"] = { + ["1HMace"] = { + ["min"] = 17, + ["max"] = 30.5, }, - ["specialCaseData"] = { + ["sign"] = "", + ["Dagger"] = { + ["min"] = 17, + ["max"] = 30.5, }, - ["sign"] = "+", - ["Boots"] = { - ["min"] = 20, - ["max"] = 35, + ["Staff"] = { + ["min"] = 25, + ["max"] = 45.5, }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_328541901", - ["text"] = "# to Intelligence", - }, - ["Amulet"] = { - ["min"] = 20, - ["max"] = 35, - }, - ["Ring"] = { - ["min"] = 20, - ["max"] = 35, + ["id"] = "scourge.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", }, - ["Helmet"] = { - ["min"] = 20, - ["max"] = 35, + ["specialCaseData"] = { }, ["2HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 25, + ["max"] = 45.5, }, ["1HWeapon"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 17, + ["max"] = 30.5, + }, + ["Wand"] = { + ["min"] = 17, + ["max"] = 30.5, + }, + }, + ["8758_CrimsonDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_300702212", + ["text"] = "Crimson Dance", }, ["Chest"] = { - ["min"] = 20, - ["max"] = 35, + ["min"] = 1, + ["max"] = 1, }, }, - ["2518_ReturningAttackProjectiles"] = { + ["8775_Magebane"] = { ["specialCaseData"] = { }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1578737937", - ["text"] = "Attack Projectiles Return to you from final Target", + ["id"] = "scourge.stat_4180925106", + ["text"] = "Magebane", }, - ["Quiver"] = { + ["Chest"] = { ["min"] = 1, ["max"] = 1, }, }, - ["111_IncreasedSocketedTrapOrMineGemLevel"] = { + ["126_IncreasedSocketedTrapOrMineGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -50814,45 +70827,47 @@ return { }, ["sign"] = "+", }, - ["1340_AllResistances"] = { + ["1691_ConvertPhysicalToLightning"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "scourge.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", }, - ["Ring"] = { - ["min"] = 6, - ["max"] = 12, + ["Gloves"] = { + ["min"] = 25, + ["max"] = 25, }, + ["sign"] = "", + }, + ["6720_NearbyEnemyFireDamageResistance"] = { ["specialCaseData"] = { }, - ["sign"] = "+", - ["Amulet"] = { - ["min"] = 6, - ["max"] = 12, - }, - ["Shield"] = { - ["min"] = 6, - ["max"] = 12, - }, - }, - ["1334_GlobalIncreaseLightningSpellSkillGemLevel"] = { ["tradeMod"] = { ["type"] = "scourge", - ["id"] = "scourge.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skill Gems", + ["id"] = "scourge.stat_3914021960", + ["text"] = "Nearby Enemies have #% to Fire Resistance", + }, + ["Helmet"] = { + ["min"] = 3, + ["max"] = 4, }, + ["sign"] = "-", + }, + ["1917_BeltFlaskManaRecoveryRate"] = { ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["min"] = 2, - ["max"] = 2, + ["tradeMod"] = { + ["type"] = "scourge", + ["id"] = "scourge.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", }, - ["1HWeapon"] = { - ["min"] = 1, - ["max"] = 1, + ["sign"] = "", + ["Belt"] = { + ["min"] = 12, + ["max"] = 20, }, - ["sign"] = "+", }, }, } \ No newline at end of file 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 = { }